replaced classic icon set by ESH version of it (#50)

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer 2016-06-20 10:20:08 +02:00 committed by GitHub
parent 6a773ba0de
commit ae2d55f9d4
769 changed files with 2 additions and 8610 deletions

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>

View File

@ -1,7 +0,0 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.7

View File

@ -1,4 +0,0 @@
eclipse.preferences.version=1
pluginProject.equinox=false
pluginProject.extensions=false
resolve.requirebundle=false

View File

@ -1,11 +0,0 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: openHAB Classic Iconset
Bundle-SymbolicName: org.openhab.ui.iconset.classic
Bundle-Version: 2.0.0.qualifier
Bundle-Vendor: openHAB.org
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Service-Component: OSGI-INF/*.xml
Import-Package: org.eclipse.smarthome.ui.icon,
org.osgi.framework,
org.slf4j

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2015-2016 by the respective copyright holders.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
-->
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.openhab.ui.iconset.classic">
<implementation class="org.openhab.ui.iconset.classic.internal.ClassicIconProvider"/>
<service>
<provide interface="org.eclipse.smarthome.ui.icon.IconProvider"/>
</service>
</scr:component>

View File

@ -1,6 +0,0 @@
source.. = src/main/java/
output.. = target/classes/
bin.includes = META-INF/,\
.,\
OSGI-INF/,\
icons/

View File

@ -1,39 +0,0 @@
#!/bin/sh
for file in $1*.svg; do
if [[ $file != 'none'* ]]; then
png=`echo $file | sed s/.svg/.png/`
# 1. Clean up SVG file.
if type xmllint &>/dev/null; then
# Should be pre-installed on OS X.
xmllint $file -o $file --pretty 1
fi
# 2. Convert SVG files to PNG.
if [ ! -f "$png" ]; then
if type rsvg-convert &>/dev/null; then
# Can be installed with Homebrew. (Installation is slow, but conversion is fast.)
# brew install librsvg
echo "rsvg-convert: converting $file"
rsvg-convert $file -o $png
elif type svgexport &>/dev/null; then
# Can be installed with NPM. (Installation is fast, but conversion is slow.)
# npm install -g svgexport
echo "svgexport: converting $file"
svgexport $file $png
fi
fi
fi
done

View File

@ -1,155 +0,0 @@
#!/bin/sh
#
# Create needed icon copies.
#
# Aliases
cp -f house.png group.png
cp -f house.svg group.svg
# Alternative Types
cp -f dimmablelight-0.png light-off.png
cp -f dimmablelight-0.svg light-off.svg
cp -f dimmablelight-100.png light-on.png
cp -f dimmablelight-100.svg light-on.svg
cp -f garagedoor-70.png garagedoor-ajar.png
cp -f garagedoor-70.svg garagedoor-ajar.svg
cp -f garagedoor-100.png garagedoor-closed.png
cp -f garagedoor-100.svg garagedoor-closed.svg
cp -f garagedoor-0.png garagedoor-open.png
cp -f garagedoor-0.svg garagedoor-open.svg
cp -f garagedoor-ajar.png garagedoor.png
cp -f garagedoor-ajar.svg garagedoor.svg
cp -f heating-0.png heating-off.png
cp -f heating-0.svg heating-off.svg
cp -f heating-100.png heating-on.png
cp -f heating-100.svg heating-on.svg
# Uninitialized State
cp -f dimmablelight-100.png dimmablelight.png
cp -f dimmablelight-100.svg dimmablelight.svg
cp -f fire-on.png fire.png
cp -f fire-on.svg fire.svg
cp -f heating-on.png heating.png
cp -f heating-on.svg heating.svg
cp -f light-on.png light.png
cp -f light-on.svg light.svg
cp -f lock-closed.png lock.png
cp -f lock-closed.svg lock.svg
cp -f receiver-on.png receiver.png
cp -f receiver-on.svg receiver.svg
cp -f signal-4.png signal.png
cp -f signal-4.svg signal.svg
cp -f siren-on.png siren.png
cp -f siren-on.svg siren.svg
cp -f soundvolume-100.png soundvolume.png
cp -f soundvolume-100.svg soundvolume.svg
# ESH Channel Categories
cp -f siren.png alarm.png
cp -f siren.svg alarm.svg
cp -f battery-0.png battery.png
cp -f battery-0.svg battery.svg
cp -f rollershutter-0.png blinds-0.png
cp -f rollershutter-0.svg blinds-0.svg
cp -f rollershutter-10.png blinds-10.png
cp -f rollershutter-10.svg blinds-10.svg
cp -f rollershutter-20.png blinds-20.png
cp -f rollershutter-20.svg blinds-20.svg
cp -f rollershutter-30.png blinds-30.png
cp -f rollershutter-30.svg blinds-30.svg
cp -f rollershutter-40.png blinds-40.png
cp -f rollershutter-40.svg blinds-40.svg
cp -f rollershutter-50.png blinds-50.png
cp -f rollershutter-50.svg blinds-50.svg
cp -f rollershutter-60.png blinds-60.png
cp -f rollershutter-60.svg blinds-60.svg
cp -f rollershutter-70.png blinds-70.png
cp -f rollershutter-70.svg blinds-70.svg
cp -f rollershutter-80.png blinds-80.png
cp -f rollershutter-80.svg blinds-80.svg
cp -f rollershutter-90.png blinds-90.png
cp -f rollershutter-90.svg blinds-90.svg
cp -f rollershutter-100.png blinds-100.png
cp -f rollershutter-100.svg blinds-100.svg
cp -f rollershutter.png blinds.png
cp -f rollershutter.svg blinds.svg
cp -f colorwheel.png colorlight.png
cp -f colorwheel.svg colorlight.svg
cp -f window-ajar.png contact-ajar.png
cp -f window-ajar.svg contact-ajar.svg
cp -f window-closed.png contact-closed.png
cp -f window-closed.svg contact-closed.svg
cp -f window-open.png contact-open.png
cp -f window-open.svg contact-open.svg
cp -f window.png contact.png
cp -f window.svg contact.svg
cp -f dimmablelight-0.png slider-0.png
cp -f dimmablelight-0.svg slider-0.svg
cp -f dimmablelight-10.png slider-10.png
cp -f dimmablelight-10.svg slider-10.svg
cp -f dimmablelight-20.png slider-20.png
cp -f dimmablelight-20.svg slider-20.svg
cp -f dimmablelight-30.png slider-30.png
cp -f dimmablelight-30.svg slider-30.svg
cp -f dimmablelight-40.png slider-40.png
cp -f dimmablelight-40.svg slider-40.svg
cp -f dimmablelight-50.png slider-50.png
cp -f dimmablelight-50.svg slider-50.svg
cp -f dimmablelight-60.png slider-60.png
cp -f dimmablelight-60.svg slider-60.svg
cp -f dimmablelight-70.png slider-70.png
cp -f dimmablelight-70.svg slider-70.svg
cp -f dimmablelight-80.png slider-80.png
cp -f dimmablelight-80.svg slider-80.svg
cp -f dimmablelight-90.png slider-90.png
cp -f dimmablelight-90.svg slider-90.svg
cp -f dimmablelight-100.png slider-100.png
cp -f dimmablelight-100.svg slider-100.svg
cp -f dimmablelight.png slider.png
cp -f dimmablelight.svg slider.svg
cp -f fan_box.png fan.png
cp -f fan_box.svg fan.svg
cp -f receiver.png player.png
cp -f receiver.svg player.svg
cp -f signal-0.png qualityofservice-0.png
cp -f signal-0.svg qualityofservice-0.svg
cp -f signal-1.png qualityofservice-1.png
cp -f signal-1.svg qualityofservice-1.svg
cp -f signal-2.png qualityofservice-2.png
cp -f signal-2.svg qualityofservice-2.svg
cp -f signal-3.png qualityofservice-3.png
cp -f signal-3.svg qualityofservice-3.svg
cp -f signal-4.png qualityofservice-4.png
cp -f signal-4.svg qualityofservice-4.svg
cp -f signal.png qualityofservice.png
cp -f signal.svg qualityofservice.svg
cp -f microphone.png recorder.png
cp -f microphone.svg recorder.svg

View File

@ -1,24 +0,0 @@
#!/bin/sh
#
# Minify .png files using imageoptim.
#
# Can be installed with NPM.
# npm install -g imageoptim-cli
#
# Note: The GUI application also has to be installed.
# brew cask install imageoptim
#
if type imageoptim &>/dev/null; then
if [ "$1" != '' ] ; then
for file in $1*.png; do
echo $file | imageoptim
done
else
imageoptim -d "$(dirname $0)"
fi
fi

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,8 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m6 58.5c-.83 0-1.5-.67-1.5-1.5v-4.15c0-.83.67-1.5 1.5-1.5h52c.83 0 1.5.67 1.5 1.5v4.15c0 .83-.67 1.5-1.5 1.5h-52" style="fill:#afafaf"/>
<path d="m58 51.86c.55 0 1 .45 1 1v4.14c0 .55-.45 1-1 1h-52c-.55 0-1-.45-1-1v-4.15c0-.55.45-1 1-1h52m0-.99h-52c-1.1 0-2 .9-2 2v4.14c0 1.1.9 2 2 2h52c1.1 0 2-.9 2-2v-4.15c0-1.1-.9-1.99-2-1.99z" style="fill:#787878"/>
<path d="m8.42 50.5l.06-.55c.41-3.83.75-7.97 1.08-11.99 1.25-15.24 2.43-29.63 7.3-31.43 5.26-1.95 14.12-2.03 15.11-2.03 1.04 0 9.91.08 15.18 2.03 4.87 1.81 6.05 16.2 7.3 31.43.33 4.01.67 8.16 1.08 11.99l.06.55h-47.17" style="fill:#ef4d4d"/>
<path d="m32.02 5c.51 0 9.68.04 14.95 2 5.83 2.17 6.17 25.33 8.05 43h-8.78-14.22-.05-14.21-8.78c1.88-17.67 2.22-40.84 8.05-43 5.27-1.96 14.45-2 14.95-2 0 0 .02 0 .02 0s.02 0 .02 0m0-1v1l-.02-1c-1.03 0-9.97.07-15.32 2.06-5.17 1.92-6.3 15.8-7.62 31.86-.33 4.01-.67 8.15-1.07 11.97l-.13 1.11h1.11 8.78 14.22 14.27 8.78 1.11l-.12-1.11c-.41-3.82-.75-7.96-1.07-11.97-1.32-16.07-2.45-29.94-7.62-31.86-5.36-1.99-14.29-2.06-15.3-2.06z" style="fill:#cc2929"/>
<path d="m32.01 6.99c0 0-10.38-.94-14.01 2.01-4.92 4-6.08 22.75-7 39h21.01v-41.01" style="fill:#ffce00"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 537 B

View File

@ -1,44 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<defs>
<linearGradient id="0" gradientUnits="userSpaceOnUse" x1="3" x2="61">
<stop style="stop-color:#fff;stop-opacity:0"/>
<stop offset=".2"/>
<stop offset=".8"/>
<stop offset="1" style="stop-color:#fff;stop-opacity:0"/>
</linearGradient>
</defs>
<path d="m3 46h58v1h-58z" style="fill:url(#0)"/>
<path d="m12.5 59.5v-45.19l19.5-9.75 19.5 9.75v45.19z" style="fill:#f0f0f0"/>
<path d="M32,5.12l19,9.5V59H13V14.62L32,5.12 M32,4L12,14v46h40V14L32,4L32,4z" style="fill:#c8c8c8"/>
<path d="m12.5 33.5h39v13h-39z" style="fill:#f0f0f0"/>
<path d="m51 34v12h-38v-12h38m1-1h-40v14h40v-14z" style="fill:#c8c8c8"/>
<path d="m12.5 20.5h39v13h-39z" style="fill:#f0f0f0"/>
<path d="m51 21v12h-38v-12h38m1-1h-40v14h40v-14z" style="fill:#c8c8c8"/>
<path d="m17.43 23.43h5.13v6.13h-5.13z" style="fill:#f0f0f0"/>
<path d="m22.13 23.87v5.27h-4.27v-5.27h4.27m.87-.87h-6v7h6v-7z" style="fill:#c8c8c8"/>
<path d="m22.43 23.43h5.13v6.13h-5.13z" style="fill:#f0f0f0"/>
<path d="m27.13 23.87v5.27h-4.27v-5.27h4.27m.87-.87h-6v7h6v-7z" style="fill:#c8c8c8"/>
<path d="m40.5 36.5h6v10h-6z" style="fill:#f0f0f0"/>
<path d="m46 37v9h-5v-9h5m1-1h-7v11h7v-11z" style="fill:#c8c8c8"/>
<path d="m31.43 23.43h5.13v6.13h-5.13z" style="fill:#f0f0f0"/>
<path d="m36.13 23.87v5.27h-4.27v-5.27h4.27m.87-.87h-6v7h6v-7z" style="fill:#c8c8c8"/>
<path d="m17.43 36.43h5.13v6.13h-5.13z" style="fill:#f0f0f0"/>
<path d="m22.13 36.87v5.27h-4.27v-5.27h4.27m.87-.87h-6v7h6v-7z" style="fill:#c8c8c8"/>
<path d="m22.43 36.43h5.13v6.13h-5.13z" style="fill:#f0f0f0"/>
<path d="m27.13 36.87v5.27h-4.27v-5.27h4.27m.87-.87h-6v7h6v-7z" style="fill:#c8c8c8"/>
<path d="m31.43 36.43h5.13v6.13h-5.13z" style="fill:#f0f0f0"/>
<path d="m36.13 36.87v5.27h-4.27v-5.27h4.27m.87-.87h-6v7h6v-7z" style="fill:#c8c8c8"/>
<path d="m40.47 23.47h6.06v6.06h-6.06z" style="fill:#f0f0f0"/>
<g style="fill:#c8c8c8">
<path d="m46.06 23.94v5.13h-5.13v-5.13h5.13m.94-.94h-7v7h7v-7z"/>
<path d="m44 41h1v1h-1z"/>
</g>
<path d="m12.5 20.5v-6.19l19.5-9.75 19.5 9.75v6.19z" style="fill:#ffccd3"/>
<path d="M32,5.12l19,9.5V20H13v-5.38L32,5.12 M32,4L12,14v7h40v-7L32,4L32,4z" style="fill:#f66"/>
<path d="m58 17.5l-26-13-26 13" style="fill:none;stroke-miterlimit:10;stroke:#2e7de5;stroke-width:1.5"/>
<path d="m25.5 12.5h5v5h-5z" style="fill:#ffccd3"/>
<path d="m30 13v4h-4v-4h4m1-1h-6v6h6v-6z" style="fill:#f66"/>
<path d="m33.5 12.5h5v5h-5z" style="fill:#ffccd3"/>
<path d="m38 13v4h-4v-4h4m1-1h-6v6h6v-6z" style="fill:#f66"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m32 17.5c-4.7 0-8.5-3.8-8.5-8.5s3.8-8.5 8.5-8.5 8.5 3.8 8.5 8.5-3.8 8.5-8.5 8.5" style="fill:#f4d0b1"/>
<path d="m32 1c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-1c-5 0-9 4-9 9 0 5 4 9 9 9s9-4 9-9c0-5-4-9-9-9z" style="fill:#e5b795"/>
<path d="m27.6 63.5c-.7 0-1.3-.3-1.8-.7l-8.5-8.5c-2.1-2.1-2.1-5.6 0-7.8l5.3-5.3 5.7 5.7-5.3 5.3 6.7 6.7c.5.5.7 1.1.7 1.8 0 .7-.3 1.3-.7 1.8l-.4.4c-.4.3-1 .6-1.7.6" style="fill:#f4d0b1"/>
<path d="m22.7 41.9l4.9 4.9-4.6 4.7-.7.7.7.7 6.4 6.4c.8.8.8 2 0 2.8l-.4.3c-.4.4-.9.6-1.4.6-.5 0-1-.2-1.4-.6l-6.4-6.4-2.1-2.1c-1.9-1.9-1.9-5.1 0-7.1l5-4.9m0-1.4l-5.7 5.7c-2.3 2.3-2.3 6.1 0 8.5l2.1 2.1 6.4 6.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l.4-.4c1.2-1.2 1.2-3.1 0-4.2l-6.4-6.4 5.3-5.3-6.3-6.4z" style="fill:#e5b795"/>
<path d="m36.4 63.5c-.7 0-1.3-.3-1.8-.7l-.4-.4c-.5-.5-.7-1.1-.7-1.8 0-.7.3-1.3.7-1.8l6.7-6.7-5.3-5.3 5.7-5.7 5.3 5.3c2.1 2.1 2.1 5.6 0 7.8l-8.5 8.5c-.4.5-1.1.8-1.7.8" style="fill:#f4d0b1"/>
<path d="m41.3 41.9l4.9 4.9c1.9 1.9 1.9 5.1 0 7.1l-2.1 2.1-6.4 6.4c-.4.4-.9.6-1.4.6-.5 0-1-.2-1.4-.6l-.4-.4c-.8-.8-.8-2 0-2.8l6.4-6.4.7-.7-.6-.6-4.6-4.6 4.9-5m0-1.4l-6.3 6.4 5.3 5.3-6.4 6.4c-1.2 1.2-1.2 3.1 0 4.2l.4.4c.6.6 1.4.9 2.1.9.8 0 1.5-.3 2.1-.9l6.4-6.4 2.1-2.1c2.3-2.3 2.3-6.1 0-8.5l-5.7-5.7z" style="fill:#e5b795"/>
<path d="m51.2 38c-.7 0-1.3-.3-1.8-.7l-9-9v8h-17v-8l-9 9c-.5.5-1.1.7-1.8.7-.7 0-1.3-.3-1.8-.7-1-1-1-2.6 0-3.5l12.9-12.8c.5-.5 1.1-.7 1.8-.7h.1.1 12.6c0 0 .1 0 .1 0 .7 0 1.4.3 1.8.7l12.8 12.7c1 1 1 2.6 0 3.5-.5.5-1.1.8-1.8.8" style="fill:#f4d0b1"/>
<path d="m38.3 20.8h.1.1c.5 0 1 .2 1.4.6l12.7 12.7c.8.8.8 2 0 2.8-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-8.1-8.1-1.7-1.7v2.4 6.3h-16v-6.3-2.4l-1.7 1.7-8.1 8.1c-.4.4-.9.6-1.4.6-.5 0-1-.2-1.4-.6-.8-.8-.8-2 0-2.8l12.7-12.7c.4-.4.9-.6 1.4-.6h.1c0 0 .1 0 .1 0h12.6m0-1h-12.6c0 0-.1 0-.1 0 0 0-.1 0-.1 0-.8 0-1.5.3-2.1.9l-12.8 12.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9.8 0 1.5-.3 2.1-.9l8.1-8.1v7.3h18v-7.3l8.1 8.1c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9c1.2-1.2 1.2-3.1 0-4.2l-12.6-12.8c-.6-.6-1.4-.9-2.1-.9 0 .1-.1.1-.2.1z" style="fill:#e5b795"/>
<path d="m23 36.8l-.3 3.7 6.3 6.4h6l6.3-6.4-.3-3.7z" style="fill:#fff;stroke-miterlimit:10;stroke:#e8e8e8;stroke-linecap:round;stroke-linejoin:round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m32 17.5c-4.7 0-8.5-3.8-8.5-8.5s3.8-8.5 8.5-8.5 8.5 3.8 8.5 8.5-3.8 8.5-8.5 8.5" style="fill:#e7b48f"/>
<path d="m32 1c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-1c-5 0-9 4-9 9 0 5 4 9 9 9s9-4 9-9c0-5-4-9-9-9z" style="fill:#d89f79"/>
<path d="m27.6 63.5c-.7 0-1.3-.3-1.8-.7l-8.5-8.5c-2.1-2.1-2.1-5.6 0-7.8l5.3-5.3 5.7 5.7-5.3 5.3 6.7 6.7c.5.5.7 1.1.7 1.8 0 .7-.3 1.3-.7 1.8l-.4.4c-.4.3-1 .6-1.7.6" style="fill:#e7b48f"/>
<path d="m22.7 41.9l4.9 4.9-4.6 4.7-.7.7.7.7 6.4 6.4c.8.8.8 2 0 2.8l-.4.3c-.4.4-.9.6-1.4.6-.5 0-1-.2-1.4-.6l-6.4-6.4-2.1-2.1c-1.9-1.9-1.9-5.1 0-7.1l5-4.9m0-1.4l-5.7 5.7c-2.3 2.3-2.3 6.1 0 8.5l2.1 2.1 6.4 6.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l.4-.4c1.2-1.2 1.2-3.1 0-4.2l-6.4-6.4 5.3-5.3-6.3-6.4z" style="fill:#d89f79"/>
<path d="m36.4 63.5c-.7 0-1.3-.3-1.8-.7l-.4-.4c-.5-.5-.7-1.1-.7-1.8 0-.7.3-1.3.7-1.8l6.7-6.7-5.3-5.3 5.7-5.7 5.3 5.3c2.1 2.1 2.1 5.6 0 7.8l-8.5 8.5c-.4.5-1.1.8-1.7.8" style="fill:#e7b48f"/>
<path d="m41.3 41.9l4.9 4.9c1.9 1.9 1.9 5.1 0 7.1l-2.1 2.1-6.4 6.4c-.4.4-.9.6-1.4.6-.5 0-1-.2-1.4-.6l-.4-.4c-.8-.8-.8-2 0-2.8l6.4-6.4.7-.7-.6-.6-4.6-4.6 4.9-5m0-1.4l-6.3 6.4 5.3 5.3-6.4 6.4c-1.2 1.2-1.2 3.1 0 4.2l.4.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l6.4-6.4 2.1-2.1c2.3-2.3 2.3-6.1 0-8.5l-5.7-5.7z" style="fill:#d89f79"/>
<path d="m51.2 38c-.7 0-1.3-.3-1.8-.7l-9-9v8h-17v-8l-9 9c-.5.5-1.1.7-1.8.7-.7 0-1.3-.3-1.8-.7-1-1-1-2.6 0-3.5l12.9-12.8c.5-.5 1.1-.7 1.8-.7h.1.1 12.6c0 0 .1 0 .1 0 .7 0 1.4.3 1.8.7l12.8 12.7c1 1 1 2.6 0 3.5-.5.5-1.1.8-1.8.8" style="fill:#e7b48f"/>
<path d="m38.3 20.8h.1.1c.5 0 1 .2 1.4.6l12.7 12.7c.8.8.8 2 0 2.8-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-8.1-8.1-1.7-1.7v2.4 6.3h-16v-6.3-2.4l-1.7 1.7-8.1 8.1c-.4.4-.9.6-1.4.6s-1-.2-1.4-.6c-.8-.8-.8-2 0-2.8l12.7-12.7c.4-.4.9-.6 1.4-.6h.1c0 0 .1 0 .1 0h12.6m0-1h-12.6c0 0-.1 0-.1 0 0 0-.1 0-.1 0-.8 0-1.5.3-2.1.9l-12.8 12.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l8.1-8.1v7.3h18v-7.3l8.1 8.1c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9c1.2-1.2 1.2-3.1 0-4.2l-12.6-12.8c-.6-.6-1.4-.9-2.1-.9 0 .1-.1.1-.2.1z" style="fill:#d89f79"/>
<path d="m23 36.8l-.3 3.7 6.3 6.4h6l6.3-6.4-.3-3.7z" style="fill:#fff;stroke-miterlimit:10;stroke:#e8e8e8;stroke-linecap:round;stroke-linejoin:round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m32 17.5c-4.7 0-8.5-3.8-8.5-8.5s3.8-8.5 8.5-8.5 8.5 3.8 8.5 8.5-3.8 8.5-8.5 8.5" style="fill:#d29e7c"/>
<path d="m32 1c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-1c-5 0-9 4-9 9 0 5 4 9 9 9s9-4 9-9c0-5-4-9-9-9z" style="fill:#c18a6b"/>
<path d="m27.6 63.5c-.7 0-1.3-.3-1.8-.7l-8.5-8.5c-2.1-2.1-2.1-5.6 0-7.8l5.3-5.3 5.7 5.7-5.3 5.3 6.7 6.7c.5.5.7 1.1.7 1.8 0 .7-.3 1.3-.7 1.8l-.4.4c-.4.3-1 .6-1.7.6" style="fill:#d29e7c"/>
<path d="m22.7 41.9l4.9 4.9-4.6 4.7-.7.7.7.7 6.4 6.4c.8.8.8 2 0 2.8l-.4.3c-.4.4-.9.6-1.4.6-.5 0-1-.2-1.4-.6l-6.4-6.4-2.1-2.1c-1.9-1.9-1.9-5.1 0-7.1l5-4.9m0-1.4l-5.7 5.7c-2.3 2.3-2.3 6.1 0 8.5l2.1 2.1 6.4 6.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l.4-.4c1.2-1.2 1.2-3.1 0-4.2l-6.4-6.4 5.3-5.3-6.3-6.4z" style="fill:#c18a6b"/>
<path d="m36.4 63.5c-.7 0-1.3-.3-1.8-.7l-.4-.4c-.5-.5-.7-1.1-.7-1.8 0-.7.3-1.3.7-1.8l6.7-6.7-5.3-5.3 5.7-5.7 5.3 5.3c2.1 2.1 2.1 5.6 0 7.8l-8.5 8.5c-.4.5-1.1.8-1.7.8" style="fill:#d29e7c"/>
<path d="m41.3 41.9l4.9 4.9c1.9 1.9 1.9 5.1 0 7.1l-2.1 2.1-6.4 6.4c-.4.4-.9.6-1.4.6-.5 0-1-.2-1.4-.6l-.4-.4c-.8-.8-.8-2 0-2.8l6.4-6.4.7-.7-.6-.6-4.6-4.6 4.9-5m0-1.4l-6.3 6.4 5.3 5.3-6.4 6.4c-1.2 1.2-1.2 3.1 0 4.2l.4.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l6.4-6.4 2.1-2.1c2.3-2.3 2.3-6.1 0-8.5l-5.7-5.7z" style="fill:#c18a6b"/>
<path d="m51.2 38c-.7 0-1.3-.3-1.8-.7l-9-9v8h-17v-8l-9 9c-.5.5-1.1.7-1.8.7-.7 0-1.3-.3-1.8-.7-1-1-1-2.6 0-3.5l12.9-12.8c.5-.5 1.1-.7 1.8-.7h.1.1 12.6c0 0 .1 0 .1 0 .7 0 1.4.3 1.8.7l12.8 12.7c1 1 1 2.6 0 3.5-.5.5-1.1.8-1.8.8" style="fill:#d29e7c"/>
<path d="m38.3 20.8h.1.1c.5 0 1 .2 1.4.6l12.7 12.7c.8.8.8 2 0 2.8-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-8.1-8.1-1.7-1.7v2.4 6.3h-16v-6.3-2.4l-1.7 1.7-8.1 8.1c-.4.4-.9.6-1.4.6s-1-.2-1.4-.6c-.8-.8-.8-2 0-2.8l12.7-12.7c.4-.4.9-.6 1.4-.6h.1c0 0 .1 0 .1 0h12.6m0-1h-12.6c0 0-.1 0-.1 0 0 0-.1 0-.1 0-.8 0-1.5.3-2.1.9l-12.8 12.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l8.1-8.1v7.3h18v-7.3l8.1 8.1c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9c1.2-1.2 1.2-3.1 0-4.2l-12.6-12.8c-.6-.6-1.4-.9-2.1-.9 0 .1-.1.1-.2.1z" style="fill:#c18a6b"/>
<path d="m23 36.8l-.3 3.7 6.3 6.4h6l6.3-6.4-.3-3.7z" style="fill:#fff;stroke-miterlimit:10;stroke:#e8e8e8;stroke-linecap:round;stroke-linejoin:round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m32 17.5c-4.7 0-8.5-3.8-8.5-8.5s3.8-8.5 8.5-8.5 8.5 3.8 8.5 8.5-3.8 8.5-8.5 8.5" style="fill:#ba7750"/>
<path d="m32 1c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-1c-5 0-9 4-9 9 0 5 4 9 9 9s9-4 9-9c0-5-4-9-9-9z" style="fill:#a35c3d"/>
<path d="m27.6 63.5c-.7 0-1.3-.3-1.8-.7l-8.5-8.5c-2.1-2.1-2.1-5.6 0-7.8l5.3-5.3 5.7 5.7-5.3 5.3 6.7 6.7c.5.5.7 1.1.7 1.8 0 .7-.3 1.3-.7 1.8l-.4.4c-.4.3-1 .6-1.7.6" style="fill:#ba7750"/>
<path d="m22.7 41.9l4.9 4.9-4.6 4.7-.7.7.7.7 6.4 6.4c.8.8.8 2 0 2.8l-.4.3c-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-6.4-6.4-2.1-2.1c-1.9-1.9-1.9-5.1 0-7.1l5-4.9m0-1.4l-5.7 5.7c-2.3 2.3-2.3 6.1 0 8.5l2.1 2.1 6.4 6.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l.4-.4c1.2-1.2 1.2-3.1 0-4.2l-6.4-6.4 5.3-5.3-6.3-6.4z" style="fill:#a35c3d"/>
<path d="m36.4 63.5c-.7 0-1.3-.3-1.8-.7l-.4-.4c-.5-.5-.7-1.1-.7-1.8 0-.7.3-1.3.7-1.8l6.7-6.7-5.3-5.3 5.7-5.7 5.3 5.3c2.1 2.1 2.1 5.6 0 7.8l-8.5 8.5c-.4.5-1.1.8-1.7.8" style="fill:#ba7750"/>
<path d="m41.3 41.9l4.9 4.9c1.9 1.9 1.9 5.1 0 7.1l-2.1 2.1-6.4 6.4c-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-.4-.4c-.8-.8-.8-2 0-2.8l6.4-6.4.7-.7-.6-.6-4.6-4.6 4.9-5m0-1.4l-6.3 6.4 5.3 5.3-6.4 6.4c-1.2 1.2-1.2 3.1 0 4.2l.4.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l6.4-6.4 2.1-2.1c2.3-2.3 2.3-6.1 0-8.5l-5.7-5.7z" style="fill:#a35c3d"/>
<path d="m51.2 38c-.7 0-1.3-.3-1.8-.7l-9-9v8h-17v-8l-9 9c-.5.5-1.1.7-1.8.7-.7 0-1.3-.3-1.8-.7-1-1-1-2.6 0-3.5l12.9-12.8c.5-.5 1.1-.7 1.8-.7h.1.1 12.6c0 0 .1 0 .1 0 .7 0 1.4.3 1.8.7l12.8 12.7c1 1 1 2.6 0 3.5-.5.5-1.1.8-1.8.8" style="fill:#ba7750"/>
<path d="m38.3 20.8h.1.1c.5 0 1 .2 1.4.6l12.7 12.7c.8.8.8 2 0 2.8-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-8.1-8.1-1.7-1.7v2.4 6.3h-16v-6.3-2.4l-1.7 1.7-8.1 8.1c-.4.4-.9.6-1.4.6s-1-.2-1.4-.6c-.8-.8-.8-2 0-2.8l12.7-12.7c.4-.4.9-.6 1.4-.6h.1c0 0 .1 0 .1 0h12.6m0-1h-12.6c0 0-.1 0-.1 0 0 0-.1 0-.1 0-.8 0-1.5.3-2.1.9l-12.8 12.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l8.1-8.1v7.3h18v-7.3l8.1 8.1c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9c1.2-1.2 1.2-3.1 0-4.2l-12.6-12.8c-.6-.6-1.4-.9-2.1-.9 0 .1-.1.1-.2.1z" style="fill:#a35c3d"/>
<path d="m23 36.8l-.3 3.7 6.3 6.4h6l6.3-6.4-.3-3.7z" style="fill:#fff;stroke-miterlimit:10;stroke:#e8e8e8;stroke-linecap:round;stroke-linejoin:round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m32 17.5c-4.7 0-8.5-3.8-8.5-8.5s3.8-8.5 8.5-8.5 8.5 3.8 8.5 8.5-3.8 8.5-8.5 8.5" style="fill:#a55d2b"/>
<path d="m32 1c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-1c-5 0-9 4-9 9 0 5 4 9 9 9s9-4 9-9c0-5-4-9-9-9z" style="fill:#89471b"/>
<path d="m27.6 63.5c-.7 0-1.3-.3-1.8-.7l-8.5-8.5c-2.1-2.1-2.1-5.6 0-7.8l5.3-5.3 5.7 5.7-5.3 5.3 6.7 6.7c.5.5.7 1.1.7 1.8 0 .7-.3 1.3-.7 1.8l-.4.4c-.4.3-1 .6-1.7.6" style="fill:#a55d2b"/>
<path d="m22.7 41.9l4.9 4.9-4.6 4.7-.7.7.7.7 6.4 6.4c.8.8.8 2 0 2.8l-.4.3c-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-6.4-6.4-2.1-2.1c-1.9-1.9-1.9-5.1 0-7.1l5-4.9m0-1.4l-5.7 5.7c-2.3 2.3-2.3 6.1 0 8.5l2.1 2.1 6.4 6.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l.4-.4c1.2-1.2 1.2-3.1 0-4.2l-6.4-6.4 5.3-5.3-6.3-6.4z" style="fill:#89471b"/>
<path d="m36.4 63.5c-.7 0-1.3-.3-1.8-.7l-.4-.4c-.5-.5-.7-1.1-.7-1.8 0-.7.3-1.3.7-1.8l6.7-6.7-5.3-5.3 5.7-5.7 5.3 5.3c2.1 2.1 2.1 5.6 0 7.8l-8.5 8.5c-.4.5-1.1.8-1.7.8" style="fill:#a55d2b"/>
<path d="m41.3 41.9l4.9 4.9c1.9 1.9 1.9 5.1 0 7.1l-2.1 2.1-6.4 6.4c-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-.4-.4c-.8-.8-.8-2 0-2.8l6.4-6.4.7-.7-.6-.6-4.6-4.6 4.9-5m0-1.4l-6.3 6.4 5.3 5.3-6.4 6.4c-1.2 1.2-1.2 3.1 0 4.2l.4.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l6.4-6.4 2.1-2.1c2.3-2.3 2.3-6.1 0-8.5l-5.7-5.7z" style="fill:#89471b"/>
<path d="m51.2 38c-.7 0-1.3-.3-1.8-.7l-9-9v8h-17v-8l-9 9c-.5.5-1.1.7-1.8.7-.7 0-1.3-.3-1.8-.7-1-1-1-2.6 0-3.5l12.9-12.8c.5-.5 1.1-.7 1.8-.7h.1.1 12.6c0 0 .1 0 .1 0 .7 0 1.4.3 1.8.7l12.8 12.7c1 1 1 2.6 0 3.5-.5.5-1.1.8-1.8.8" style="fill:#a55d2b"/>
<path d="m38.3 20.8h.1.1c.5 0 1 .2 1.4.6l12.7 12.7c.8.8.8 2 0 2.8-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-8.1-8.1-1.7-1.7v2.4 6.3h-16v-6.3-2.4l-1.7 1.7-8.1 8.1c-.4.4-.9.6-1.4.6-.5 0-1-.2-1.4-.6-.8-.8-.8-2 0-2.8l12.7-12.7c.4-.4.9-.6 1.4-.6h.1c0 0 .1 0 .1 0h12.6m0-1h-12.6c0 0-.1 0-.1 0 0 0-.1 0-.1 0-.8 0-1.5.3-2.1.9l-12.8 12.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9.8 0 1.5-.3 2.1-.9l8.1-8.1v7.3h18v-7.3l8.1 8.1c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9c1.2-1.2 1.2-3.1 0-4.2l-12.6-12.8c-.6-.6-1.4-.9-2.1-.9 0 .1-.1.1-.2.1z" style="fill:#89471b"/>
<path d="m23 36.8l-.3 3.7 6.3 6.4h6l6.3-6.4-.3-3.7z" style="fill:#fff;stroke-miterlimit:10;stroke:#e8e8e8;stroke-linecap:round;stroke-linejoin:round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m32 17.5c-4.7 0-8.5-3.8-8.5-8.5s3.8-8.5 8.5-8.5 8.5 3.8 8.5 8.5-3.8 8.5-8.5 8.5" style="fill:#3c201d"/>
<path d="m32 1c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-1c-5 0-9 4-9 9 0 5 4 9 9 9s9-4 9-9c0-5-4-9-9-9z" style="fill:#1e0e0e"/>
<path d="m27.6 63.5c-.7 0-1.3-.3-1.8-.7l-8.5-8.5c-2.1-2.1-2.1-5.6 0-7.8l5.3-5.3 5.7 5.7-5.3 5.3 6.7 6.7c1 1 1 2.6 0 3.5l-.4.4c-.4.4-1 .7-1.7.7" style="fill:#3c201d"/>
<path d="m22.7 41.9l4.9 4.9-4.6 4.7-.7.7.7.7 6.4 6.4c.8.8.8 2 0 2.8l-.4.3c-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-6.4-6.4-2.1-2.1c-1.9-1.9-1.9-5.1 0-7.1l5-4.9m0-1.4l-5.7 5.7c-2.3 2.3-2.3 6.1 0 8.5l2.1 2.1 6.4 6.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l.4-.4c1.2-1.2 1.2-3.1 0-4.2l-6.4-6.4 5.3-5.3-6.3-6.4z" style="fill:#1e0e0e"/>
<path d="m36.4 63.5c-.7 0-1.3-.3-1.8-.7l-.4-.4c-1-1-1-2.6 0-3.5l6.7-6.7-5.3-5.3 5.7-5.7 5.3 5.3c2.1 2.1 2.1 5.6 0 7.8l-8.5 8.5c-.4.4-1.1.7-1.7.7" style="fill:#3c201d"/>
<path d="m41.3 41.9l4.9 4.9c1.9 1.9 1.9 5.1 0 7.1l-2.1 2.1-6.4 6.4c-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-.4-.4c-.8-.8-.8-2 0-2.8l6.4-6.4.7-.7-.6-.6-4.6-4.6 4.9-5m0-1.4l-6.3 6.4 5.3 5.3-6.4 6.4c-1.2 1.2-1.2 3.1 0 4.2l.4.4c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9l6.4-6.4 2.1-2.1c2.3-2.3 2.3-6.1 0-8.5l-5.7-5.7z" style="fill:#1e0e0e"/>
<path d="m51.2 38c-.7 0-1.3-.3-1.8-.7l-9-9v8h-17v-8l-9 9c-.5.5-1.1.7-1.8.7-.7 0-1.3-.3-1.8-.7-1-1-1-2.6 0-3.5l12.9-12.8c.5-.5 1.1-.7 1.8-.7h.1.1 12.6c0 0 .1 0 .1 0 .7 0 1.4.3 1.8.7l12.8 12.7c1 1 1 2.6 0 3.5-.5.5-1.1.8-1.8.8" style="fill:#3c201d"/>
<path d="m38.3 20.8h.1.1c.5 0 1 .2 1.4.6l12.7 12.7c.8.8.8 2 0 2.8-.4.4-.9.6-1.4.6s-1-.2-1.4-.6l-8.1-8.1-1.7-1.7v2.4 6.3h-16v-6.3-2.4l-1.7 1.7-8.1 8.1c-.4.4-.9.6-1.4.6-.5 0-1-.2-1.4-.6-.8-.8-.8-2 0-2.8l12.7-12.7c.4-.4.9-.6 1.4-.6h.1c0 0 .1 0 .1 0h12.6m0-1h-12.6c0 0-.1 0-.1 0 0 0-.1 0-.1 0-.8 0-1.5.3-2.1.9l-12.8 12.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9.8 0 1.5-.3 2.1-.9l8.1-8.1v7.3h18v-7.3l8.1 8.1c.6.6 1.4.9 2.1.9s1.5-.3 2.1-.9c1.2-1.2 1.2-3.1 0-4.2l-12.6-12.8c-.6-.6-1.4-.9-2.1-.9 0 .1-.1.1-.2.1z" style="fill:#1e0e0e"/>
<path d="m23 36.8l-.3 3.7 6.3 6.4h6l6.3-6.4-.3-3.7z" style="fill:#fff;stroke-miterlimit:10;stroke:#e8e8e8;stroke-linecap:round;stroke-linejoin:round"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 979 B

View File

@ -1,15 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<defs>
<linearGradient id="0" gradientUnits="userSpaceOnUse" y1="26.1191" x2="0" y2="46.5">
<stop style="stop-color:#fafafa"/>
<stop offset="1" style="stop-color:#dcdcdc"/>
</linearGradient>
</defs>
<path d="m3.12 24.88v-1.88c0-2.14 1.74-3.88 3.88-3.88h6c1.03 0 1.88.84 1.88 1.88v.88h-1.75v-.38c0-.34-.28-.62-.62-.62h-5.51c-1.17 0-2.12.95-2.12 2.12v1.88h-1.76" style="fill:#c5c6c8"/>
<path d="m13 19.25c.96 0 1.75.79 1.75 1.75v.75h-1.5v-.25c0-.41-.34-.75-.75-.75h-5.5c-1.24 0-2.25 1.01-2.25 2.25v1.75h-1.5v-1.75c0-2.07 1.68-3.75 3.75-3.75h6m0-.25h-6c-2.2 0-4 1.8-4 4v2h2v-2c0-1.1.9-2 2-2h5.5c.28 0 .5.22.5.5v.5h2v-1c0-1.1-.9-2-2-2z" style="fill:#8c8c8c"/>
<path d="m13.7 46.5c-9.6 0-11.72-16.74-12.04-19.96l60.67-.42c-.17 1.57-.96 6.5-4.36 12.71-3.97 7.25-9 7.65-9.21 7.67h-35.06" style="fill:url(#0)"/>
<path d="m61.77 26.62c-.28 1.95-1.21 6.44-4.23 11.97-3.88 7.08-8.6 7.4-8.76 7.41h-35.08c-8.72 0-11.01-14.82-11.48-18.96l59.55-.42m1.11-1.01l-61.76.44c0 0 1.43 20.95 12.58 20.95s35.07 0 35.07 0 5.39-.18 9.63-7.93c4.25-7.74 4.48-13.46 4.48-13.46z" style="fill:#b4b4b4"/>
<path d="m1 26.58c-.28 0-.5-.22-.5-.5v-1.58h63v1.58c0 .28-.22.5-.5.5h-62" style="fill:#f0f0f0"/>
<path d="m63 25v1.08h-62v-1.08h62m1-1h-64v2.08c0 .55.45 1 1 1h62c.55 0 1-.45 1-1v-2.08z" style="fill:#b4b4b4"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 B

View File

@ -1,7 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
</svg>

Before

Width:  |  Height:  |  Size: 761 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 314 B

View File

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m9 46h-6c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h6v28" style="fill:#f00014"/>
<path d="m8 18h1v28h-1z" style="fill:#d6001a"/>
</svg>

Before

Width:  |  Height:  |  Size: 894 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 B

View File

@ -1,8 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m54 46h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2" style="fill:#00c83c"/>
</svg>

Before

Width:  |  Height:  |  Size: 877 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 316 B

View File

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m15 46h-12c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h12v28" style="fill:#ff6400"/>
<path d="m14 18h1v28h-1z" style="fill:#e55200"/>
</svg>

Before

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 316 B

View File

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m20 46h-17c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h17v28" style="fill:#ffd200"/>
<path d="m19 18h1v28h-1z" style="fill:#e5b900"/>
</svg>

Before

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

View File

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m25 46h-22c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h22v28" style="fill:#ffd200"/>
<path d="m24 18h1v28h-1z" style="fill:#e5b900"/>
</svg>

Before

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

View File

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m30 46h-27c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h27v28" style="fill:#ffd200"/>
<path d="m29 18h1v28h-1z" style="fill:#e5b900"/>
</svg>

Before

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 316 B

View File

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m35 46h-32c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h32v28" style="fill:#00c83c"/>
<path d="m34 18h1v28h-1z" style="fill:#00b22a"/>
</svg>

Before

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

View File

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m40 46h-37c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h37v28" style="fill:#00c83c"/>
<path d="m39 18h1v28h-1z" style="fill:#00b22a"/>
</svg>

Before

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

View File

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m45 46h-42c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h42v28" style="fill:#00c83c"/>
<path d="m44 18h1v28h-1z" style="fill:#00b22a"/>
</svg>

Before

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 314 B

View File

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
<path d="m50 46h-47c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h47v28" style="fill:#00c83c"/>
<path d="m49 18h1v28h-1z" style="fill:#00b22a"/>
</svg>

Before

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 B

View File

@ -1,7 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m57 39.5c-.3 0-.5-.2-.5-.5v-14c0-.3.2-.5.5-.5h5c.8 0 1.5.7 1.5 1.5v12c0 .8-.7 1.5-1.5 1.5h-5" style="fill:#bebec8"/>
<path d="m62 25c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1h-5v-14h5m0-1h-5c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h5c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" style="fill:#34383f"/>
<path d="m3 46.5c-1.4 0-2.5-1.1-2.5-2.5v-24c0-1.4 1.1-2.5 2.5-2.5h51c1.4 0 2.5 1.1 2.5 2.5v24c0 1.4-1.1 2.5-2.5 2.5h-51" style="fill:#f0f0f0"/>
<path d="m54 18c1.1 0 2 .9 2 2v24c0 1.1-.9 2-2 2h-51c-1.1 0-2-.9-2-2v-24c0-1.1.9-2 2-2h51m0-1h-51c-1.7 0-3 1.3-3 3v24c0 1.7 1.3 3 3 3h51c1.7 0 3-1.3 3-3v-24c0-1.7-1.3-3-3-3z" style="fill:#34383f"/>
</svg>

Before

Width:  |  Height:  |  Size: 761 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,30 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<defs>
<linearGradient id="3" gradientUnits="userSpaceOnUse" x1="-47.0055" x2="-39.6209" gradientTransform="matrix(1.2374.212-.1689.9856 78.2996 32.5442)">
<stop style="stop-color:#b4b4b4"/>
<stop offset=".4354" style="stop-color:#a9a9a9"/>
<stop offset="1" style="stop-color:#a0a0a0"/>
</linearGradient>
<linearGradient id="2" gradientUnits="userSpaceOnUse" y1="24.75" x2="0" y2="46">
<stop style="stop-color:#fff"/>
<stop offset="1" style="stop-color:#b4b4b4"/>
</linearGradient>
<linearGradient id="0" gradientUnits="userSpaceOnUse" x1="18" x2="58" xlink:href="#3"/>
<linearGradient id="1" gradientUnits="userSpaceOnUse" x1="19.71" y1="25.8551" x2="11.1441" y2="34.421">
<stop style="stop-color:#fff"/>
<stop offset="1" style="stop-color:#c8c8c8"/>
</linearGradient>
</defs>
<path d="m58.5 25.5h5v24h-5z" style="fill:#845340"/>
<path d="m63 26v23h-4v-23h4m1-1h-6v25h6v-25z" style="fill:#663629"/>
<path d="m20.75 36.92c-.5 0-.98-.11-1.43-.33l-11.38-5.62c-.78-.38-1.36-1.05-1.64-1.87-.28-.82-.22-1.71.16-2.48l.71-1.45c.54-1.1 1.69-1.81 2.92-1.81.5 0 .98.11 1.43.33l11.38 5.61c1.61.79 2.27 2.74 1.48 4.35l-.71 1.45c-.53 1.1-1.68 1.82-2.92 1.82" style="fill:url(#1)"/>
<path d="m10.1 23.61c.46 0 .9.1 1.32.31l11.39 5.61c.72.35 1.25.97 1.51 1.73s.21 1.57-.15 2.29l-.71 1.45c-.5 1.02-1.56 1.67-2.7 1.67-.46 0-.9-.1-1.32-.31l-11.39-5.61c-1.48-.73-2.1-2.53-1.37-4.02l.71-1.45c.51-1.01 1.57-1.67 2.71-1.67m0-.5c-1.29 0-2.54.72-3.15 1.95l-.71 1.45c-.85 1.73-.13 3.84 1.59 4.69l11.39 5.61c.49.24 1.02.36 1.54.36 1.29 0 2.54-.72 3.15-1.95l.71-1.45c.85-1.73.13-3.84-1.59-4.69l-11.39-5.61c-.5-.24-1.02-.36-1.54-.36z" style="fill:#bebebe"/>
<path d="m5.5 32.5h53v10h-53z" style="fill:#845340"/>
<path d="m58 33v9h-52v-9h52m1-1h-54v11h54v-11z" style="fill:#663629"/>
<path d="M54.25,31H40.5c0,0-7.6-0.1-12.5-2.5 c-4.9-2.4-10-3.75-10-3.75V31v11.25c0,2.07,1.68,3.75,3.75,3.75H53c2.76,0,5-2.24,5-5v-6.25C58,32.68,56.32,31,54.25,31z" style="fill:url(#2);stroke-miterlimit:10;stroke:#bebebe;stroke-width:.5"/>
<path d="m19 26.08c1.79.55 5.24 1.69 8.56 3.32 5.04 2.46 12.61 2.6 12.94 2.6h13.75c1.52 0 2.75 1.23 2.75 2.75v6.25c0 2.21-1.79 4-4 4h-31.25c-1.52 0-2.75-1.23-2.75-2.75v-11.25-4.92m-1-1.33v6.25 11.25c0 2.07 1.68 3.75 3.75 3.75h31.25c2.76 0 5-2.24 5-5v-6.25c0-2.07-1.68-3.75-3.75-3.75h-13.75c0 0-7.6-.1-12.5-2.5-4.9-2.4-10-3.75-10-3.75z" style="fill:url(#0)"/>
<path d="m27.79 32.78l-9.14-1.57.21-1.21 9.14 1.57z" style="fill:url(#3)"/>
<path d="m.5 14.5h5v35h-5z" style="fill:#845340"/>
<path d="m5 15v34h-4v-34h4m1-1h-6v36h6v-36z" style="fill:#663629"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,34 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<defs>
<linearGradient id="3" gradientUnits="userSpaceOnUse" x1="19.7097" y1="25.8555" x2="11.1442" y2="34.421">
<stop style="stop-color:#fff"/>
<stop offset="1" style="stop-color:#c8c8c8"/>
</linearGradient>
<linearGradient id="2" gradientUnits="userSpaceOnUse" x1="2.4692" x2="9.8538" gradientTransform="matrix(1.2374.212-.1689.9856 18.7773 12.1372)">
<stop style="stop-color:#00255f"/>
<stop offset=".0124" style="stop-color:#00255e"/>
<stop offset=".6276" style="stop-color:#001945"/>
<stop offset="1" style="stop-color:#00143c"/>
</linearGradient>
<linearGradient id="0" gradientUnits="userSpaceOnUse" x1="18" x2="58" xlink:href="#2"/>
<linearGradient id="1" gradientUnits="userSpaceOnUse" y1="24.75" x2="0" y2="46">
<stop style="stop-color:#0062ca"/>
<stop offset=".28" style="stop-color:#004ca0"/>
<stop offset=".5974" style="stop-color:#003678"/>
<stop offset=".8485" style="stop-color:#00295e"/>
<stop offset="1" style="stop-color:#002455"/>
</linearGradient>
</defs>
<path d="m58.5 25.5h5v24h-5z" style="fill:#845340"/>
<path d="m63 26v23h-4v-23h4m1-1h-6v25h6v-25z" style="fill:#663629"/>
<path d="m20.75 36.92c-.5 0-.98-.11-1.43-.33l-11.38-5.62c-.78-.38-1.36-1.05-1.64-1.87-.28-.82-.22-1.71.16-2.48l.71-1.45c.54-1.1 1.69-1.81 2.93-1.81.5 0 .98.11 1.43.33l11.38 5.61c.78.38 1.36 1.05 1.64 1.87.28.83.22 1.71-.16 2.48l-.71 1.45c-.54 1.1-1.69 1.82-2.93 1.82" style="fill:url(#3)"/>
<path d="m10.1 23.11v.5c.46 0 .9.1 1.32.31l11.39 5.61c.72.35 1.25.97 1.51 1.73s.21 1.57-.15 2.29l-.71 1.45c-.5 1.02-1.56 1.67-2.7 1.67-.46 0-.9-.1-1.32-.31l-11.39-5.61c-1.48-.73-2.1-2.53-1.37-4.02l.71-1.45c.5-1.02 1.56-1.67 2.7-1.67v-.5m.01 0c-1.29 0-2.54.72-3.15 1.95l-.71 1.45c-.85 1.73-.13 3.84 1.59 4.69l11.39 5.61c.49.24 1.02.36 1.54.36 1.29 0 2.54-.72 3.15-1.95l.71-1.45c.85-1.73.13-3.84-1.59-4.69l-11.39-5.61c-.5-.24-1.02-.36-1.54-.36" style="fill:#bebebe"/>
<path d="m5.5 32.5h53v10h-53z" style="fill:#845340"/>
<path d="m58 33v9h-52v-9h52m1-1h-54v11h54v-11z" style="fill:#663629"/>
<path d="m54.25 31h-13.75c0 0-7.6-.1-12.5-2.5-4.9-2.4-10-3.75-10-3.75v6.25 11.25c0 2.07 1.68 3.75 3.75 3.75h31.25c2.76 0 5-2.24 5-5v-6.25c0-2.07-1.68-3.75-3.75-3.75" style="fill:url(#1)"/>
<path d="m19 26.08c1.8.55 5.25 1.69 8.56 3.32 5.04 2.46 12.61 2.6 12.94 2.6h13.75c1.52 0 2.75 1.23 2.75 2.75v6.25c0 2.21-1.79 4-4 4h-31.25c-1.52 0-2.75-1.23-2.75-2.75v-11.25-4.92m-1-1.33v6.25 11.25c0 2.07 1.68 3.75 3.75 3.75h31.25c2.76 0 5-2.24 5-5v-6.25c0-2.07-1.68-3.75-3.75-3.75h-13.75c0 0-7.6-.1-12.5-2.5-4.9-2.4-10-3.75-10-3.75z" style="fill:url(#0)"/>
<path d="m27.79 32.78l-9.14-1.57.21-1.21 9.14 1.57z" style="fill:url(#2);opacity:.6"/>
<path d="m.5 14.5h5v35h-5z" style="fill:#845340"/>
<path d="m5 15v34h-4v-34h4m1-1h-6v36h6v-36z" style="fill:#663629"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,32 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<defs>
<linearGradient id="3" gradientUnits="userSpaceOnUse" x1="19.7097" y1="25.8555" x2="11.1442" y2="34.421">
<stop style="stop-color:#fff"/>
<stop offset="1" style="stop-color:#c8c8c8"/>
</linearGradient>
<linearGradient id="2" gradientUnits="userSpaceOnUse" x1="19.6626" x2="27.0472" gradientTransform="matrix(1.2374.212-.1689.9856-.2171-4.8231)">
<stop style="stop-color:#cc9200"/>
<stop offset=".5481" style="stop-color:#de820f"/>
<stop offset="1" style="stop-color:#e77a17"/>
</linearGradient>
<linearGradient id="0" gradientUnits="userSpaceOnUse" x1="18" x2="58" xlink:href="#2"/>
<linearGradient id="1" gradientUnits="userSpaceOnUse" y1="24.75" x2="0" y2="46">
<stop style="stop-color:#f6b501"/>
<stop offset=".3311" style="stop-color:#f09c0a"/>
<stop offset=".7476" style="stop-color:#e98314"/>
<stop offset="1" style="stop-color:#e77a17"/>
</linearGradient>
</defs>
<path d="m58.5 25.5h5v24h-5z" style="fill:#845340"/>
<path d="m63 26v23h-4v-23h4m1-1h-6v25h6v-25z" style="fill:#663629"/>
<path d="m20.75 36.92c-.5 0-.98-.11-1.43-.33l-11.38-5.62c-.78-.38-1.36-1.05-1.64-1.87-.28-.82-.22-1.71.16-2.48l.71-1.45c.54-1.1 1.69-1.81 2.93-1.81.5 0 .98.11 1.43.33l11.38 5.61c.78.38 1.36 1.05 1.64 1.87.28.83.22 1.71-.16 2.48l-.71 1.45c-.54 1.1-1.69 1.82-2.93 1.82" style="fill:url(#3)"/>
<path d="m10.1 23.11v.5c.46 0 .9.1 1.32.31l11.39 5.61c.72.35 1.25.97 1.51 1.73s.21 1.57-.15 2.29l-.71 1.45c-.5 1.02-1.56 1.67-2.7 1.67-.46 0-.9-.1-1.32-.31l-11.39-5.61c-1.48-.73-2.1-2.53-1.37-4.02l.71-1.45c.5-1.02 1.56-1.67 2.7-1.67v-.5m.01 0c-1.29 0-2.54.72-3.15 1.95l-.71 1.45c-.85 1.73-.13 3.84 1.59 4.69l11.39 5.61c.49.24 1.02.36 1.54.36 1.29 0 2.54-.72 3.15-1.95l.71-1.45c.85-1.73.13-3.84-1.59-4.69l-11.39-5.61c-.5-.24-1.02-.36-1.54-.36" style="fill:#bebebe"/>
<path d="m5.5 32.5h53v10h-53z" style="fill:#845340"/>
<path d="m58 33v9h-52v-9h52m1-1h-54v11h54v-11z" style="fill:#663629"/>
<path d="m54.25 31h-13.75c0 0-7.6-.1-12.5-2.5-4.9-2.4-10-3.75-10-3.75v6.25 11.25c0 2.07 1.68 3.75 3.75 3.75h31.25c2.76 0 5-2.24 5-5v-6.25c0-2.07-1.68-3.75-3.75-3.75" style="fill:url(#1)"/>
<path d="m19 26.08c1.8.55 5.25 1.69 8.56 3.32 5.04 2.46 12.61 2.6 12.94 2.6h13.75c1.52 0 2.75 1.23 2.75 2.75v6.25c0 2.21-1.79 4-4 4h-31.25c-1.52 0-2.75-1.23-2.75-2.75v-11.25-4.92m-1-1.33v6.25 11.25c0 2.07 1.68 3.75 3.75 3.75h31.25c2.76 0 5-2.24 5-5v-6.25c0-2.07-1.68-3.75-3.75-3.75h-13.75c0 0-7.6-.1-12.5-2.5-4.9-2.4-10-3.75-10-3.75z" style="fill:url(#0)"/>
<path d="m27.79 32.78l-9.14-1.57.21-1.21 9.14 1.57z" style="fill:url(#2);opacity:.6"/>
<path d="m.5 14.5h5v35h-5z" style="fill:#845340"/>
<path d="m5 15v34h-4v-34h4m1-1h-6v36h6v-36z" style="fill:#663629"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,37 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<defs>
<linearGradient id="3" gradientUnits="userSpaceOnUse" x1="19.7097" y1="25.8555" x2="11.1442" y2="34.421">
<stop style="stop-color:#fff"/>
<stop offset="1" style="stop-color:#c8c8c8"/>
</linearGradient>
<linearGradient id="2" gradientUnits="userSpaceOnUse" x1="-14.7243" x2="-7.3397" gradientTransform="matrix(1.2374.212-.1689.9856 37.7717 29.0976)">
<stop style="stop-color:#a10012"/>
<stop offset="1" style="stop-color:#7c0009"/>
</linearGradient>
<linearGradient id="0" gradientUnits="userSpaceOnUse" x1="18" x2="58">
<stop style="stop-color:#880012"/>
<stop offset=".1945" style="stop-color:#7c000d"/>
<stop offset=".6962" style="stop-color:#630004"/>
<stop offset="1" style="stop-color:#5a0000"/>
</linearGradient>
<linearGradient id="1" gradientUnits="userSpaceOnUse" y1="24.75" x2="0" y2="46">
<stop style="stop-color:#e9002d"/>
<stop offset=".3361" style="stop-color:#b2001e"/>
<stop offset=".6299" style="stop-color:#890012"/>
<stop offset=".8607" style="stop-color:#6f000c"/>
<stop offset="1" style="stop-color:#660009"/>
</linearGradient>
</defs>
<path d="m58.5 25.5h5v24h-5z" style="fill:#845340"/>
<path d="m63 26v23h-4v-23h4m1-1h-6v25h6v-25z" style="fill:#663629"/>
<path d="m20.75 36.92c-.5 0-.98-.11-1.43-.33l-11.38-5.62c-.78-.38-1.36-1.05-1.64-1.87-.28-.82-.22-1.71.16-2.48l.71-1.45c.54-1.1 1.69-1.81 2.93-1.81.5 0 .98.11 1.43.33l11.38 5.61c.78.38 1.36 1.05 1.64 1.87.28.83.22 1.71-.16 2.48l-.71 1.45c-.54 1.1-1.69 1.82-2.93 1.82" style="fill:url(#3)"/>
<path d="m10.1 23.11v.5c.46 0 .9.1 1.32.31l11.39 5.61c.72.35 1.25.97 1.51 1.73s.21 1.57-.15 2.29l-.71 1.45c-.5 1.02-1.56 1.67-2.7 1.67-.46 0-.9-.1-1.32-.31l-11.39-5.61c-1.48-.73-2.1-2.53-1.37-4.02l.71-1.45c.5-1.02 1.56-1.67 2.7-1.67v-.5m.01 0c-1.29 0-2.54.72-3.15 1.95l-.71 1.45c-.85 1.73-.13 3.84 1.59 4.69l11.39 5.61c.49.24 1.02.36 1.54.36 1.29 0 2.54-.72 3.15-1.95l.71-1.45c.85-1.73.13-3.84-1.59-4.69l-11.39-5.61c-.5-.24-1.02-.36-1.54-.36" style="fill:#bebebe"/>
<path d="m5.5 32.5h53v10h-53z" style="fill:#845340"/>
<path d="m58 33v9h-52v-9h52m1-1h-54v11h54v-11z" style="fill:#663629"/>
<path d="m54.25 31h-13.75c0 0-7.6-.1-12.5-2.5-4.9-2.4-10-3.75-10-3.75v6.25 11.25c0 2.07 1.68 3.75 3.75 3.75h31.25c2.76 0 5-2.24 5-5v-6.25c0-2.07-1.68-3.75-3.75-3.75" style="fill:url(#1)"/>
<path d="m19 26.08c1.79.55 5.24 1.69 8.56 3.32 5.04 2.46 12.61 2.6 12.94 2.6h13.75c1.52 0 2.75 1.23 2.75 2.75v6.25c0 2.21-1.79 4-4 4h-31.25c-1.52 0-2.75-1.23-2.75-2.75v-11.25-4.92m-1-1.33v6.25 11.25c0 2.07 1.68 3.75 3.75 3.75h31.25c2.76 0 5-2.24 5-5v-6.25c0-2.07-1.68-3.75-3.75-3.75h-13.75c0 0-7.6-.1-12.5-2.5-4.9-2.4-10-3.75-10-3.75z" style="fill:url(#0)"/>
<path d="m27.79 32.78l-9.14-1.57.21-1.21 9.14 1.57z" style="fill:url(#2);opacity:.6"/>
<path d="m.5 14.5h5v35h-5z" style="fill:#845340"/>
<path d="m5 15v34h-4v-34h4m1-1h-6v36h6v-36z" style="fill:#663629"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 B

View File

@ -1,10 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 659 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 194 B

View File

@ -1,13 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 14.5h35v5h-35z" style="fill:#c8c8c8"/>
<path d="m49 15v4h-34v-4h34m1-1h-36v6h36v-6z" style="fill:#646464"/>
<path d="m15 15h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 837 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 169 B

View File

@ -1,19 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 17.5h35v32h-35z" style="fill:#c8c8c8"/>
<path d="m49 18v31h-34v-31h34m1-1h-36v33h36v-33z" style="fill:#646464"/>
<path d="m15 21h34v1h-34z" style="opacity:.25"/>
<path d="m15 25h34v1h-34z" style="opacity:.25"/>
<path d="m15 29h34v1h-34z" style="opacity:.25"/>
<path d="m15 33h34v1h-34z" style="opacity:.25"/>
<path d="m15 37h34v1h-34z" style="opacity:.25"/>
<path d="m15 41h34v1h-34z" style="opacity:.25"/>
<path d="m15 45h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 199 B

View File

@ -1,13 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 14.5h35v8h-35z" style="fill:#c8c8c8"/>
<path d="m49 15v7h-34v-7h34m1-1h-36v9h36v-9z" style="fill:#646464"/>
<path d="m15 18h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 837 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 B

View File

@ -1,14 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 15.5h35v10h-35z" style="fill:#c8c8c8"/>
<path d="m49 16v9h-34v-9h34m1-1h-36v11h36v-11z" style="fill:#646464"/>
<path d="m15 17h34v1h-34z" style="opacity:.25"/>
<path d="m15 21h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 891 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B

View File

@ -1,15 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 14.5h35v14h-35z" style="fill:#c8c8c8"/>
<path d="m49 15v13h-34v-13h34m1-1h-36v15h36v-15z" style="fill:#646464"/>
<path d="m15 16h34v1h-34z" style="opacity:.25"/>
<path d="m15 20h34v1h-34z" style="opacity:.25"/>
<path d="m15 24h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 944 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 208 B

View File

@ -1,16 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 14.5h35v17h-35z" style="fill:#c8c8c8"/>
<path d="m49 15v16h-34v-16h34m1-1h-36v18h36v-18z" style="fill:#646464"/>
<path d="m15 15h34v1h-34z" style="opacity:.25"/>
<path d="m15 19h34v1h-34z" style="opacity:.25"/>
<path d="m15 23h34v1h-34z" style="opacity:.25"/>
<path d="m15 27h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 995 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

View File

@ -1,16 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 14.5h35v21h-35z" style="fill:#c8c8c8"/>
<path d="m49 15v20h-34v-20h34m1-1h-36v22h36v-22z" style="fill:#646464"/>
<path d="m15 19h34v1h-34z" style="opacity:.25"/>
<path d="m15 23h34v1h-34z" style="opacity:.25"/>
<path d="m15 27h34v1h-34z" style="opacity:.25"/>
<path d="m15 31h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 995 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

View File

@ -1,17 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 14.5h35v25h-35z" style="fill:#c8c8c8"/>
<path d="m49 15v24h-34v-24h34m1-1h-36v26h36v-26z" style="fill:#646464"/>
<path d="m15 19h34v1h-34z" style="opacity:.25"/>
<path d="m15 23h34v1h-34z" style="opacity:.25"/>
<path d="m15 27h34v1h-34z" style="opacity:.25"/>
<path d="m15 31h34v1h-34z" style="opacity:.25"/>
<path d="m15 35h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 B

View File

@ -1,19 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 14.5h35v29h-35z" style="fill:#c8c8c8"/>
<path d="m49 15v28h-34v-28h34m1-1h-36v30h36v-30z" style="fill:#646464"/>
<path d="m15 15h34v1h-34z" style="opacity:.25"/>
<path d="m15 19h34v1h-34z" style="opacity:.25"/>
<path d="m15 23h34v1h-34z" style="opacity:.25"/>
<path d="m15 27h34v1h-34z" style="opacity:.25"/>
<path d="m15 31h34v1h-34z" style="opacity:.25"/>
<path d="m15 35h34v1h-34z" style="opacity:.25"/>
<path d="m15 39h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 188 B

View File

@ -1,19 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 14.5h35v32h-35z" style="fill:#c8c8c8"/>
<path d="m49 15v31h-34v-31h34m1-1h-36v33h36v-33z" style="fill:#646464"/>
<path d="m15 18h34v1h-34z" style="opacity:.25"/>
<path d="m15 22h34v1h-34z" style="opacity:.25"/>
<path d="m15 26h34v1h-34z" style="opacity:.25"/>
<path d="m15 30h34v1h-34z" style="opacity:.25"/>
<path d="m15 34h34v1h-34z" style="opacity:.25"/>
<path d="m15 38h34v1h-34z" style="opacity:.25"/>
<path d="m15 42h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

View File

@ -1,17 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m15.5 15.5h33v33h-33z" style="fill:#f0f0f0"/>
<path d="m48 16v32h-32v-32h32m1-1h-34v34h34v-34z" style="fill:#646464"/>
<path d="m19.5 19.5h25v25h-25z" style="fill:#d9f1ff"/>
<path d="m44 20v24h-24v-24h24m1-1h-26v26h26v-26z" style="fill:#7aadcc"/>
<path d="m10.5 53.5v-43h43v43h-43m4-4h35v-35h-35v35" style="fill:#ececed"/>
<path d="m53 11v42h-42v-42h42m-39 39h1 34 1v-1-34-1h-1-34-1v1 34 1m40-40h-44v44h44v-44zm-39 39v-34h34v34h-34" style="fill:#9b9c9e"/>
<path d="m14.5 14.5h35v25h-35z" style="fill:#c8c8c8"/>
<path d="m49 15v24h-34v-24h34m1-1h-36v26h36v-26z" style="fill:#646464"/>
<path d="m15 19h34v1h-34z" style="opacity:.25"/>
<path d="m15 23h34v1h-34z" style="opacity:.25"/>
<path d="m15 27h34v1h-34z" style="opacity:.25"/>
<path d="m15 31h34v1h-34z" style="opacity:.25"/>
<path d="m15 35h34v1h-34z" style="opacity:.25"/>
<path d="m14 14h36v4h-36z" style="fill:#282828"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 968 B

View File

@ -1,6 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<ellipse cx="32" cy="32" rx="21.5" ry="30" style="fill:#fff"/>
<path d="m32 64c14.21 0 24-6.64 24-32 0-25.36-9.79-32-24-32-14.2 0-24 6.64-24 32 0 25.36 9.79 32 24 32" style="fill:#0064c8"/>
<path d="m46.6 42.94l-10.94-10.94 10.94-10.94-16.57-16.58v21.85l-9.11-9.12-3.32 3.31 11.44 11.48-11.44 11.47 3.32 3.32 9.11-9.12v21.85l16.57-16.58m-6.62-21.85l-5.29 5.29v-10.58l5.29 5.29m-5.29 16.53l5.29 5.29-5.29 5.29v-10.58" style="fill:#fff"/>
</svg>

Before

Width:  |  Height:  |  Size: 573 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,65 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<defs>
<linearGradient id="0" gradientUnits="userSpaceOnUse" x1="10.5" x2="53.5">
<stop style="stop-color:#c9d0e4"/>
<stop offset=".0139" style="stop-color:#c4cadd"/>
<stop offset=".0797" style="stop-color:#b0b4c3"/>
<stop offset=".1524" style="stop-color:#a0a2af"/>
<stop offset=".2346" style="stop-color:#9596a1"/>
<stop offset=".3343" style="stop-color:#8e8e99"/>
<stop offset=".5" style="stop-color:#8c8c96"/>
<stop offset=".6327" style="stop-color:#8e8f99"/>
<stop offset=".7393" style="stop-color:#9698a3"/>
<stop offset=".8368" style="stop-color:#a4a6b4"/>
<stop offset=".9283" style="stop-color:#b6bbcc"/>
<stop offset="1" style="stop-color:#c9d0e4"/>
</linearGradient>
<linearGradient id="1" gradientUnits="userSpaceOnUse" x1="15.8943" y1="30.223" x2="49.8127" y2="10.6401">
<stop style="stop-color:#ccd3e7"/>
<stop offset=".1314" style="stop-color:#bfc5d7"/>
<stop offset=".5145" style="stop-color:#9ea1af"/>
<stop offset=".8172" style="stop-color:#8a8a95"/>
<stop offset="1" style="stop-color:#82828c"/>
</linearGradient>
</defs>
<path d="m4.5 6.5h55v57h-55z" style="fill:#8b96ac"/>
<path d="m59 7v56h-54v-56h54m1-1h-1-54-1v1 56 1h1 54 1v-1-56-1z" style="fill:#676b72"/>
<path d="m10.5 59.5v-42.54c6.55-.3 14.14-.46 21.99-.46 7.43 0 14.68.14 21.01.41v42.59h-43" style="fill:url(#0)"/>
<path d="m32.49 17c7.25 0 14.31.14 20.51.39v41.61h-42v-41.57c6.42-.28 13.83-.43 21.49-.43m0-1c-8.33 0-16.07.18-22.49.48v43.52h44v-43.57c-6.22-.27-13.6-.43-21.51-.43z" style="fill:#666e7f"/>
<path d="m14.5 1.5h35v11h-35z" style="fill:#e8422e"/>
<path d="m49 2v10h-34v-10h34m1-1h-1-34-1v1 10 1h1 34 1v-1-10-1z" style="fill:#cc2215"/>
<path d="m17.5 41.5h14v14h-14z" style="fill:#737a8e"/>
<path d="m31 42v13h-13v-13h13m1-1h-15v15h15v-15z" style="fill:#3f434c"/>
<path d="m18 48h11v1h-11z" style="fill:#4b5059"/>
<circle cx="26" cy="48.5" r="2"/>
<path d="m32 32.78c-11.85 0-21.5-6.6-21.5-14.7 0-.36.03-.74.1-1.19 6.57-.26 14.14-.39 21.91-.39 7.36 0 14.58.12 20.9.35.07.47.1.86.1 1.23-.01 8.11-9.65 14.7-21.51 14.7" style="fill:url(#1)"/>
<path d="m32.5 17c7.2 0 14.25.12 20.45.34.03.27.04.51.04.74 0 7.83-9.42 14.2-21 14.2s-21-6.37-21-14.2c0-.22.01-.45.04-.71 6.47-.24 13.87-.37 21.47-.37m0-1c-8.23 0-15.9.15-22.34.41-.09.55-.17 1.1-.17 1.67 0 8.4 9.85 15.2 22 15.2s22-6.81 22-15.2c0-.58-.07-1.15-.17-1.71-6.22-.24-13.51-.37-21.32-.37z" style="fill:#666e7f"/>
<g style="fill:#cc2215">
<path d="m15 6h34v1h-34z"/>
<path d="m44 2h1v4h-1z"/>
<path d="m19 2h1v4h-1z"/>
</g>
<g transform="translate(106.80193-432.76044)">
<path d="m-79.16 442.8v-1.34h-.5v1.34h.5" id="2" style="fill:#fff"/>
<use xlink:href="#2"/>
<g style="fill:#fff">
<path d="m-73.43 441.46h-.67l-.21.55c-.02.05-.02.13-.02.13s-.01-.09-.02-.13l-.21-.55h-.67v1.34h.43v-.8c0 0 0 .05.02.09l.3.71h.29l.3-.72c.02-.04.02-.09.02-.09v.81h.43v-1.34"/>
<path d="m-73.43 441.46h-.67l-.21.55c-.02.05-.02.13-.02.13s-.01-.09-.02-.13l-.21-.55h-.67v1.34h.43v-.8c0 0 0 .05.02.09l.3.71h.29l.3-.72c.02-.04.02-.09.02-.09v.81h.43v-1.34z"/>
</g>
<path d="m-69.71 441.46h-.47v.74c0 0 0-.05-.03-.08l-.56-.65h-.5v1.34h.5v-.74c0 0 0 .05.03.08l.54.65h.49v-1.34" id="3" style="fill:#fff"/>
<use xlink:href="#3"/>
<path d="m-71.42 442.8l-.68-1.34h-.53l-.68 1.34h.45.07l.13-.25h.58l.13.25h.02.46.05m-1.11-.59c0 0 .12-.24.14-.28.02-.04.02-.09.02-.09s0 .05.02.09l.14.28h-.32" id="4" style="fill:#fff"/>
<use xlink:href="#4"/>
<path d="m-78.24 442.44v-.19h.75v-.3h-.75v-.17h.91v-.33h-1.38v1.34h1.42v-.36l-.95.01" id="5" style="fill:#fff"/>
<use xlink:href="#5"/>
<path d="m-81.88 441.46l.72 1.34h.58l.71-1.34h-.56l-.4.82c-.02.04-.02.09-.02.09s0-.05-.02-.09l-.4-.81-.61-.01" id="6" style="fill:#fff"/>
<use xlink:href="#6"/>
<path d="m-75.57 440.76h-1.1c0 0-.43.01-.43.44 0 .44.43.43.43.43h.65c0 0 .09 0 .09.09 0 .08-.09.08-.09.08h-1.05v.37h1.09c0 0 .46.02.46-.46 0-.41-.46-.42-.46-.42h-.62c0 0-.1 0-.1-.08 0-.08.1-.08.1-.08h1.03v-.37" id="7" style="fill:#fff"/>
<use xlink:href="#7"/>
<path d="m-67.73 441.46h-.47v.74c0 0 0-.05-.03-.08l-.56-.65h-.5v1.34h.5v-.74c0 0 0 .05.03.08l.54.65h.49v-1.34" id="8" style="fill:#fff"/>
<use xlink:href="#8"/>
<path d="m-75.57 442.36h-1.1c0 0-.43.01-.43.44 0 .44.43.43.43.43h.65c0 0 .09 0 .09.09 0 .08-.09.08-.09.08h-1.05v.37h1.09c0 0 .46.02.46-.46 0-.41-.46-.42-.46-.42h-.62c0 0-.1 0-.1-.08 0-.08.1-.08.1-.08h1.03v-.37" id="9" style="fill:#fff"/>
<use xlink:href="#9"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,20 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m43 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.7 1.5-1.5 1.5" style="fill:#f4d0b1"/>
<path d="m44 36v3c0 .6-.4 1-1 1s-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#e5b795"/>
<path d="m27.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m36.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m21 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.6 1.5-1.5 1.5" style="fill:#f4d0b1"/>
<path d="m22 36v3c0 .6-.4 1-1 1-.6 0-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2 1.1 0 2-.9 2-2v-4z" style="fill:#e5b795"/>
<path d="m35.8 17h-7.5c-5.1 0-9.2 4.1-9.2 9.2v.6c0 .1-.1.3-.1.4v9.8h4v-5.4-3.8c0-1.2.4-2.2 1-3.1v12.3h16v-12.4c.5.7.9 1.6 1 2.5 0 .1 0 .1 0 .1v9.8h4v-9.2-.6-1.1c0-5-4.1-9.1-9.2-9.1" style="fill:#000c51"/>
<ellipse cx="32" cy="17" rx="3.5" ry="2" style="fill:#fff"/>
<path d="m32 16.5c-4.1 0-7.5-3.4-7.5-7.5s3.4-7.5 7.5-7.5 7.5 3.4 7.5 7.5-3.3 7.5-7.5 7.5" style="fill:#f4d0b1"/>
<path d="m32 2c3.9 0 7 3.1 7 7s-3.1 7-7 7-7-3.1-7-7 3.2-7 7-7m0-1c-4.4 0-8 3.6-8 8 0 4.4 3.6 8 8 8s8-3.6 8-8c0-4.4-3.6-8-8-8z" style="fill:#e5b795"/>
<path d="m25.9 11.3c-.3-.3-.5-.8-.5-1.4l.1-2.7-1 2.4c0-.2 0-.4 0-.6 0-4.1 3.4-7.5 7.5-7.5 3.4 0 6.2 2.2 7.2 5.3-.5-1.2-1.4-2.6-1.7-2.9-.9-.8-1.6-1.2-2.2-1.3l-1.1-.1.6.9c.1.2-.1 1-1.8 2.3-.7.5-1.5 1-2.3 1.5-2.1 1.4-4.1 2.7-4.8 4.1" style="fill:#e67831"/>
<path d="m32 2c.5 0 .9 0 1.4.1l.9 1.4c0 .2-.2.8-1.6 1.8-.7.5-1.4 1-2.3 1.5-1.8 1.2-3.5 2.3-4.4 3.5 0-.1 0-.2 0-.3l.2-4.8c1.2-1.9 3.4-3.2 5.8-3.2m0-1c-4.4 0-8 3.6-8 8 0 1 .2 1.9.5 2.8.1-1.1.4-1.9.4-1.9-.1 1.6 1.3 2.3 1.3 2.3 0-2 4.4-4.2 7-6.1s1.9-3 1.9-3c.7.1 1.7.9 1.9 1.1s1.4 1.9 1.8 3.1c.2.7.6 3 .5 4.7.4-.9.6-2 .6-3.1.1-4.3-3.5-7.9-7.9-7.9z" style="fill:#dd6022"/>
<g style="fill:#fff;stroke-width:.99995145">
<path d="m28.63028 16.18004h3.06972v1.5h-4z"/>
<path d="m32.35823 18.69811h4.04177v1.5h-4z"/>
</g>
<path d="m24 37v22h7v-15c0-.6.5-1 1-1s1 .4 1 1v15h7v-22h-16" style="fill:#527ecc"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1021 B

View File

@ -1,20 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m24 37v22h7v-15c0-.6.5-1 1-1s1 .4 1 1v15h7v-22h-16" style="fill:#527ecc"/>
<path d="m43 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.7 1.5-1.5 1.5" style="fill:#e7b48f"/>
<path d="m44 36v3c0 .6-.4 1-1 1s-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#d89f79"/>
<path d="m27.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m36.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m21 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.6 1.5-1.5 1.5" style="fill:#e7b48f"/>
<path d="m22 36v3c0 .6-.4 1-1 1-.6 0-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2 1.1 0 2-.9 2-2v-4z" style="fill:#d89f79"/>
<path d="m35.8 17h-7.5c-5.1 0-9.2 4.1-9.2 9.2v.6c0 .1-.1.3-.1.4v9.8h4v-5.4-3.8c0-1.2.4-2.2 1-3.1v12.3h16v-12.4c.5.7.9 1.6 1 2.5 0 .1 0 .1 0 .1v9.8h4v-9.2-.6-1.1c0-5-4.1-9.1-9.2-9.1" style="fill:#000c51"/>
<ellipse cx="32" cy="17" rx="3.5" ry="2" style="fill:#fff"/>
<path d="m32 16.5c-4.1 0-7.5-3.4-7.5-7.5s3.4-7.5 7.5-7.5 7.5 3.4 7.5 7.5-3.3 7.5-7.5 7.5" style="fill:#e7b48f"/>
<path d="m32 2c3.9 0 7 3.1 7 7s-3.1 7-7 7-7-3.1-7-7 3.2-7 7-7m0-1c-4.4 0-8 3.6-8 8 0 4.4 3.6 8 8 8s8-3.6 8-8c0-4.4-3.6-8-8-8z" style="fill:#d89f79"/>
<path d="m25.9 11.3c-.3-.3-.5-.8-.5-1.4l.1-2.7-1 2.4c0-.2 0-.4 0-.6 0-4.1 3.4-7.5 7.5-7.5 3.4 0 6.2 2.2 7.2 5.3-.5-1.2-1.4-2.6-1.7-2.9-.9-.8-1.6-1.2-2.2-1.3l-1.1-.1.6.9c.1.2-.1 1-1.8 2.3-.7.5-1.5 1-2.3 1.5-2.1 1.4-4.1 2.7-4.8 4.1" style="fill:#edda7b"/>
<path d="m32 2c.5 0 .9 0 1.4.1l.9 1.4c0 .2-.2.8-1.6 1.8-.7.5-1.4 1-2.3 1.5-1.8 1.2-3.5 2.3-4.4 3.5 0-.1 0-.2 0-.3l.2-4.8c1.2-1.9 3.4-3.2 5.8-3.2m0-1c-4.4 0-8 3.6-8 8 0 1 .2 1.9.5 2.8.1-1.1.4-1.9.4-1.9-.1 1.6 1.3 2.3 1.3 2.3 0-2 4.4-4.2 7-6.1s1.9-3 1.9-3c.7.1 1.7.9 1.9 1.1s1.4 1.9 1.8 3.1c.2.7.6 3 .5 4.7.4-.9.6-2 .6-3.1.1-4.3-3.5-7.9-7.9-7.9z" style="fill:#ccb966"/>
<g style="fill:#fff;stroke-width:.99995145">
<path d="m28.63028 16.18004h3.06972v1.5h-4z"/>
<path d="m32.35823 18.69811h4.04177v1.5h-4z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,20 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m24 37v22h7v-15c0-.6.5-1 1-1s1 .4 1 1v15h7v-22h-16" style="fill:#527ecc"/>
<path d="m43 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.7 1.5-1.5 1.5" style="fill:#d29e7c"/>
<path d="m44 36v3c0 .6-.4 1-1 1s-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#c18a6b"/>
<path d="m27.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m36.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m21 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.6 1.5-1.5 1.5" style="fill:#d29e7c"/>
<path d="m22 36v3c0 .6-.4 1-1 1-.6 0-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#c18a6b"/>
<path d="m35.8 17h-7.5c-5.1 0-9.2 4.1-9.2 9.2v.6c0 .1-.1.3-.1.4v9.8h4v-5.4-3.8c0-1.2.4-2.2 1-3.1v12.3h16v-12.4c.5.7.9 1.6 1 2.5 0 .1 0 .1 0 .1v9.8h4v-9.2-.6-1.1c0-5-4.1-9.1-9.2-9.1" style="fill:#000c51"/>
<ellipse cx="32" cy="17" rx="3.5" ry="2" style="fill:#fff"/>
<path d="m32 16.5c-4.1 0-7.5-3.4-7.5-7.5s3.4-7.5 7.5-7.5 7.5 3.4 7.5 7.5-3.3 7.5-7.5 7.5" style="fill:#d29e7c"/>
<path d="m32 2c3.9 0 7 3.1 7 7s-3.1 7-7 7-7-3.1-7-7 3.2-7 7-7m0-1c-4.4 0-8 3.6-8 8 0 4.4 3.6 8 8 8s8-3.6 8-8c0-4.4-3.6-8-8-8z" style="fill:#c18a6b"/>
<path d="m25.9 11.3c-.3-.3-.5-.8-.5-1.4l.1-2.7-1 2.4c0-.2 0-.4 0-.6 0-4.1 3.4-7.5 7.5-7.5 3.4 0 6.2 2.2 7.2 5.3-.5-1.2-1.4-2.6-1.7-2.9-.9-.8-1.6-1.2-2.2-1.3l-1.1-.1.6.9c.1.2-.1 1-1.8 2.3-.7.5-1.5 1-2.3 1.5-2.1 1.4-4.1 2.7-4.8 4.1" style="fill:#61452d"/>
<path d="m32 2c.5 0 .9 0 1.4.1l.9 1.4c0 .2-.2.8-1.6 1.8-.7.5-1.4 1-2.3 1.5-1.8 1.2-3.5 2.3-4.4 3.5 0-.1 0-.2 0-.3l.2-4.8c1.2-1.9 3.4-3.2 5.8-3.2m0-1c-4.4 0-8 3.6-8 8 0 1 .2 1.9.5 2.8.1-1.1.4-1.9.4-1.9-.1 1.6 1.3 2.3 1.3 2.3 0-2 4.4-4.2 7-6.1s1.9-3 1.9-3c.7.1 1.7.9 1.9 1.1s1.4 1.9 1.8 3.1c.2.7.6 3 .5 4.7.4-.9.6-2 .6-3.1.1-4.3-3.5-7.9-7.9-7.9z" style="fill:#513624"/>
<g style="fill:#fff;stroke-width:.99995145">
<path d="m28.63028 16.18004h3.06972v1.5h-4z"/>
<path d="m32.35823 18.69811h4.04177v1.5h-4z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 995 B

View File

@ -1,20 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m24 37v22h7v-15c0-.6.5-1 1-1s1 .4 1 1v15h7v-22h-16" style="fill:#527ecc"/>
<path d="m43 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.7 1.5-1.5 1.5" style="fill:#ba7750"/>
<path d="m44 36v3c0 .6-.4 1-1 1s-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#a35c3d"/>
<path d="m27.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m36.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m21 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.6 1.5-1.5 1.5" style="fill:#ba7750"/>
<path d="m22 36v3c0 .6-.4 1-1 1-.6 0-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#a35c3d"/>
<path d="m35.8 17h-7.5c-5.1 0-9.2 4.1-9.2 9.2v.6c0 .1-.1.3-.1.4v9.8h4v-5.4-3.8c0-1.2.4-2.2 1-3.1v12.3h16v-12.4c.5.7.9 1.6 1 2.5 0 .1 0 .1 0 .1v9.8h4v-9.2-.6-1.1c0-5-4.1-9.1-9.2-9.1" style="fill:#000c51"/>
<ellipse cx="32" cy="17" rx="3.5" ry="2" style="fill:#fff"/>
<path d="m32 16.5c-4.1 0-7.5-3.4-7.5-7.5s3.4-7.5 7.5-7.5 7.5 3.4 7.5 7.5-3.3 7.5-7.5 7.5" style="fill:#ba7750"/>
<path d="m32 2c3.9 0 7 3.1 7 7s-3.1 7-7 7-7-3.1-7-7 3.2-7 7-7m0-1c-4.4 0-8 3.6-8 8 0 4.4 3.6 8 8 8s8-3.6 8-8c0-4.4-3.6-8-8-8z" style="fill:#a35c3d"/>
<path d="m25.9 11.3c-.3-.3-.5-.8-.5-1.4l.1-2.7-1 2.4c0-.2 0-.4 0-.6 0-4.1 3.4-7.5 7.5-7.5 3.4 0 6.2 2.2 7.2 5.3-.5-1.2-1.4-2.6-1.7-2.9-.9-.8-1.6-1.2-2.2-1.3l-1.1-.1.6.9c.1.2-.1 1-1.8 2.3-.7.5-1.5 1-2.3 1.5-2.1 1.4-4.1 2.7-4.8 4.1" style="fill:#472e18"/>
<path d="m32 2c.5 0 .9 0 1.4.1l.9 1.4c0 .2-.2.8-1.6 1.8-.7.5-1.4 1-2.3 1.5-1.8 1.2-3.5 2.3-4.4 3.5 0-.1 0-.2 0-.3l.2-4.8c1.2-1.9 3.4-3.2 5.8-3.2m0-1c-4.4 0-8 3.6-8 8 0 1 .2 1.9.5 2.8.1-1.1.4-1.9.4-1.9-.1 1.6 1.3 2.3 1.3 2.3 0-2 4.4-4.2 7-6.1s1.9-3 1.9-3c.7.1 1.7.9 1.9 1.1s1.4 1.9 1.8 3.1c.2.7.6 3 .5 4.7.4-.9.6-2 .6-3.1.1-4.3-3.5-7.9-7.9-7.9z" style="fill:#382211"/>
<g style="fill:#fff;stroke-width:.99995145">
<path d="m28.63028 16.18004h3.06972v1.5h-4z"/>
<path d="m32.35823 18.69811h4.04177v1.5h-4z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 998 B

View File

@ -1,20 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m24 37v22h7v-15c0-.6.5-1 1-1s1 .4 1 1v15h7v-22h-16" style="fill:#527ecc"/>
<path d="m43 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.7 1.5-1.5 1.5" style="fill:#a55d2b"/>
<path d="m44 36v3c0 .6-.4 1-1 1s-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#89471b"/>
<path d="m27.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m36.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m21 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.6 1.5-1.5 1.5" style="fill:#a55d2b"/>
<path d="m22 36v3c0 .6-.4 1-1 1-.6 0-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#89471b"/>
<path d="m35.8 17h-7.5c-5.1 0-9.2 4.1-9.2 9.2v.6c0 .1-.1.3-.1.4v9.8h4v-5.4-3.8c0-1.2.4-2.2 1-3.1v12.3h16v-12.4c.5.7.9 1.6 1 2.5 0 .1 0 .1 0 .1v9.8h4v-9.2-.6-1.1c0-5-4.1-9.1-9.2-9.1" style="fill:#000c51"/>
<ellipse cx="32" cy="17" rx="3.5" ry="2" style="fill:#fff"/>
<path d="m32 16.5c-4.1 0-7.5-3.4-7.5-7.5s3.4-7.5 7.5-7.5 7.5 3.4 7.5 7.5-3.3 7.5-7.5 7.5" style="fill:#a55d2b"/>
<path d="m32 2c3.9 0 7 3.1 7 7s-3.1 7-7 7-7-3.1-7-7 3.2-7 7-7m0-1c-4.4 0-8 3.6-8 8 0 4.4 3.6 8 8 8s8-3.6 8-8c0-4.4-3.6-8-8-8z" style="fill:#89471b"/>
<path d="m25.9 11.3c-.3-.3-.5-.8-.5-1.4l.1-2.7-1 2.4c0-.2 0-.4 0-.6 0-4.1 3.4-7.5 7.5-7.5 3.4 0 6.2 2.2 7.2 5.3-.5-1.2-1.4-2.6-1.7-2.9-.9-.8-1.6-1.2-2.2-1.3l-1.1-.1.6.9c.1.2-.1 1-1.8 2.3-.7.5-1.5 1-2.3 1.5-2.1 1.4-4.1 2.7-4.8 4.1" style="fill:#1c1914"/>
<path d="m32 2c.5 0 .9 0 1.4.1l.9 1.4c0 .2-.2.8-1.6 1.8-.7.5-1.4 1-2.3 1.5-1.8 1.2-3.5 2.3-4.4 3.5 0-.1 0-.2 0-.3l.2-4.8c1.2-1.9 3.4-3.2 5.8-3.2m0-1c-4.4 0-8 3.6-8 8 0 1 .2 1.9.5 2.8.1-1.1.4-1.9.4-1.9-.1 1.6 1.3 2.3 1.3 2.3 0-2 4.4-4.2 7-6.1s1.9-3 1.9-3c.7.1 1.7.9 1.9 1.1s1.4 1.9 1.8 3.1c.2.7.6 3 .5 4.7.4-.9.6-2 .6-3.1.1-4.3-3.5-7.9-7.9-7.9z" style="fill:#0a0907"/>
<g style="fill:#fff;stroke-width:.99995145">
<path d="m28.63028 16.18004h3.06972v1.5h-4z"/>
<path d="m32.35823 18.69811h4.04177v1.5h-4z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

View File

@ -1,19 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64">
<path d="m24 37v22h7v-15c0-.6.5-1 1-1s1 .4 1 1v15h7v-22h-16" style="fill:#527ecc"/>
<path d="m43 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.7 1.5-1.5 1.5" style="fill:#3c201d"/>
<path d="m44 36v3c0 .6-.4 1-1 1s-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#1e0e0e"/>
<path d="m27.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m36.5 64c-1.9 0-3.5-1.6-3.5-3.5v-1.5h7v1.5c0 1.9-1.5 3.5-3.5 3.5"/>
<path d="m21 40.5c-.8 0-1.5-.7-1.5-1.5v-3.5h3v3.5c0 .8-.6 1.5-1.5 1.5" style="fill:#3c201d"/>
<path d="m22 36v3c0 .6-.4 1-1 1-.6 0-1-.4-1-1v-3h2m1-1h-4v4c0 1.1.9 2 2 2s2-.9 2-2v-4z" style="fill:#1e0e0e"/>
<path d="m35.8 17h-7.5c-5.1 0-9.2 4.1-9.2 9.2v.6c0 .1-.1.3-.1.4v9.8h4v-5.4-3.8c0-1.2.4-2.2 1-3.1v12.3h16v-12.4c.5.7.9 1.6 1 2.5 0 .1 0 .1 0 .1v9.8h4v-9.2-.6-1.1c0-5-4.1-9.1-9.2-9.1" style="fill:#000c51"/>
<ellipse cx="32" cy="17" rx="3.5" ry="2" style="fill:#fff"/>
<path d="m32 16.5c-4.1 0-7.5-3.4-7.5-7.5s3.4-7.5 7.5-7.5 7.5 3.4 7.5 7.5-3.3 7.5-7.5 7.5" style="fill:#3c201d"/>
<path d="m32 2c3.9 0 7 3.1 7 7s-3.1 7-7 7-7-3.1-7-7 3.2-7 7-7m0-1c-4.4 0-8 3.6-8 8 0 4.4 3.6 8 8 8s8-3.6 8-8c0-4.4-3.6-8-8-8z" style="fill:#1e0e0e"/>
<path d="m40 9c0-4.4-3.6-8-8-8s-8 3.6-8 8c0 1 .2 1.9.5 2.8.1-1.1.4-1.9.4-1.9-.1 1.6 1.3 2.3 1.3 2.3 0-2 4.4-4.2 7-6.1s1.9-3 1.9-3c.7.1 1.7.9 1.9 1.1s1.4 1.9 1.8 3.1c.2.7.6 3 .5 4.7.5-.9.7-1.9.7-3"/>
<g style="fill:#fff;stroke-width:.99995145">
<path d="m28.63028 16.18004h3.06972v1.5h-4z"/>
<path d="m32.35823 18.69811h4.04177v1.5h-4z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

Some files were not shown because too many files have changed in this diff Show More