updated submodules and added io extensions
Signed-off-by: Kai Kreuzer <kai@openhab.org>pull/4/head
|
@ -24,6 +24,12 @@
|
|||
<li><a href="{{docu}}/features/iconsets/classic/readme.html">Classic Iconset</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="{{docu}}/features/io.html">System Integrations</a>
|
||||
<ul>
|
||||
<li><a href="{{docu}}/features/io/homekit/readme.html">HomeKit</a></li>
|
||||
<li><a href="{{docu}}/features/io/hueemulation/readme.html">Amazon Echo</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="{{docu}}/development/ide.html">Development</a>
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit fb6dd8b1647eb7bdcabc0532f92fa9160613114a
|
||||
Subproject commit 6ad07d3e889671f4c0eb096b7e4f3101fb319901
|
|
@ -1 +1 @@
|
|||
Subproject commit 4e1eb3f60b88ed1f596d1b7711e953f8aea9f66b
|
||||
Subproject commit c138f6648265dcc75f0bc16e40c810eab49aa9fd
|
|
@ -13,6 +13,7 @@ _Note_: If you are successfully using a 1.x add-on with the 2.0 runtime, which i
|
|||
|-------------|----------------------|
|
||||
|[Bindings](bindings.html)| Bindings integrate physical hardware, external systems and web services in openHAB |
|
||||
|[User Interfaces](uis.html)| User interfaces are either native smartphone apps or web applications that access the openHAB server through the REST API |
|
||||
|[System Integration](io.html)| System integrations expose openHAB to an external system |
|
||||
|
||||
...
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ The digitalSTROM-Server thing has the following configuration parameter groups *
|
|||
|
||||
At the thing file, a manual configuration looks e.g. like
|
||||
```
|
||||
Bridge digitalstrom:dssBridge:dssBridge1 [ ipAddress="dss.local.", userName=”dssadmin”, password=“dssadmin”, sensorDataUpdateIntervall=”180”]
|
||||
Bridge digitalstrom:dssBridge:dssBridge1 [ ipAddress="dss.local.", userName="dssadmin", password=“dssadmin", sensorDataUpdateIntervall="180"]
|
||||
```
|
||||
|
||||
### digitalSTROM-Devices:
|
||||
|
@ -154,7 +154,7 @@ Usually the discovery works reliable, so that a manual configuration is not need
|
|||
However, at the thing file, a manual configuration looks e.g. like
|
||||
|
||||
```
|
||||
Thing digitalstrom:GE:GE-KM200 [ dSID="´3504175fe0000000000043d4", activePowerRefreshPriority=”low”, electricMeterRefreshPriority=“medium”, outputCurrentRefreshPriority=”high”]
|
||||
Thing digitalstrom:GE:GE-KM200 [ dSID="´3504175fe0000000000043d4", activePowerRefreshPriority="low", electricMeterRefreshPriority=“medium", outputCurrentRefreshPriority="high"]
|
||||
|
||||
Thing digitalstrom:GR:GR-KM200 [ dSID="3504175fe0000000000043d5"]
|
||||
```
|
||||
|
|
|
@ -19,7 +19,7 @@ Network devices can be manually discovered by sending a PING to every IP on the
|
|||
## Thing Configuration
|
||||
|
||||
```
|
||||
network:device:1 [ hostname="192.168.0.64", port="0", retry="1", timeout="5000", refresh_interval="60000", use_system_ping="false" ]
|
||||
network:device:1 [ hostname="192.168.0.64", port="0", retry="1", timeout="5000", refresh_interval="60000", use_system_ping="false", dhcplisten="true" ]
|
||||
```
|
||||
|
||||
- hostname: IP address or hostname of the device
|
||||
|
@ -28,15 +28,29 @@ network:device:1 [ hostname="192.168.0.64", port="0", retry="1", timeout="5000",
|
|||
- timeout: How long shall the PING wait for an answer
|
||||
- refresh_interval: How often shall the device be checked
|
||||
- use\_system\_ping: Uses the ping of the operating system, instead of the Java ping. Useful if the devices cannot be reached by the Java ping.
|
||||
- dhcplisten: Listen for DHCP Request messages. If devices leave and reenter a network, they usually request their last IP address by a udp
|
||||
broadcast message (DHCP, Message type Request). If we listen for those messages, we can make the status update more "real-time" and do not
|
||||
have to wait for the next refresh cycle.
|
||||
|
||||
## Limitations
|
||||
This binding uses ping packets, if port is set to 0, to detect the status of a device.
|
||||
If you want to detect IoT devices, usually you have to configure them to support ping.
|
||||
|
||||
If you want to use "dhcplisten": Please make sure that the process which hosts this binding has elevated privileges for listening to sockets below port 1024.
|
||||
For example by setting the **cap_net_bind_service** capability:
|
||||
* __setcap 'cap_net_bind_service=+ep' /usr/bin/java__
|
||||
* Check with: __getcap /usr/bin/java__
|
||||
|
||||
/usr/bin/java = cap_net_bind_service+ep
|
||||
|
||||
## Channels
|
||||
|
||||
All devices support some of the following channels:
|
||||
|
||||
| Channel Type ID | Item Type | Description |
|
||||
|-----------------|------------------------|--------------|----------------- |------------- |
|
||||
| online | Switch | This channel indicates whether a device is online or not |
|
||||
| time | Number | This channel indicates the Ping time in milliseconds |
|
||||
|-----------------|--------------|----------------------------------------------- |
|
||||
| online | Switch | This channel indicates whether a device is online or not |
|
||||
| time | Number | This channel indicates the Ping time in milliseconds. Maybe 0 if no time is available. |
|
||||
|
||||
|
||||
## Full Example
|
||||
|
@ -44,7 +58,7 @@ All devices support some of the following channels:
|
|||
demo.Things:
|
||||
|
||||
```
|
||||
network:device:1 [ hostname="192.168.0.64", port="0", retry="1", timeout="5000", refresh_interval="60000", use_system_ping="false" ]
|
||||
network:device:1 [ hostname="192.168.0.64", port="0", retry="1", timeout="5000", refresh_interval="60000", use_system_ping="false", dhcplisten="true" ]
|
||||
```
|
||||
|
||||
demo.items:
|
||||
|
|
|
@ -10,7 +10,9 @@ This binding integrates the [Sonos Multi-Room Audio system](http://www.sonos.com
|
|||
|
||||
## Supported Things
|
||||
|
||||
All available Sonos (playback) devices are supported by this binding. This includes the Play:1, Play:3, Play:5, Connect, Connect:Amp, Playbar, and Sub. The Bridge and Boost are not supported, but these devices do only have an auxiliary role in the Sonos network and do not have any playback capability
|
||||
All available Sonos (playback) devices are supported by this binding. This includes the Play:1, Play:3, Play:5, Connect, Connect:Amp, Playbar, and Sub. The Bridge and Boost are not supported, but these devices do only have an auxiliary role in the Sonos network and do not have any playback capability.
|
||||
|
||||
When being defined in a *.things file, the specific thing types PLAY1, PLAY3, PLAY5, PLAYBAR, CONNECT and CONNECTAMP should be used.
|
||||
|
||||
## Discovery
|
||||
|
||||
|
@ -25,7 +27,7 @@ The binding does not require any special configuration
|
|||
The Sonos Thing requires the UPnP UDN (Unique Device Name) as a configuration value in order for the binding to know how to access it. All the Sonos UDN have the "RINCON_000E58D8403A0XXXX" format. Additionally, a refresh interval, used to poll the Sonos device, can be specified (in seconds)
|
||||
In the thing file, this looks e.g. like
|
||||
```
|
||||
Thing sonos:zoneplayer:1 [ udn="RINCON_000E58D8403A0XXXX", refresh=60]
|
||||
Thing sonos:PLAY1:1 [ udn="RINCON_000E58D8403A0XXXX", refresh=60]
|
||||
```
|
||||
|
||||
## Channels
|
||||
|
@ -42,18 +44,21 @@ All devices support the following channels (non-exhaustive):
|
|||
## Full Example
|
||||
|
||||
demo.things:
|
||||
|
||||
```
|
||||
Thing sonos:zoneplayer:1 [ udn="RINCON_000E58D8403A0XXXX", refresh=60]
|
||||
Thing sonos:PLAY3:1 [ udn="RINCON_000E58D8403A0XXXX", refresh=60]
|
||||
```
|
||||
|
||||
demo.items:
|
||||
|
||||
```
|
||||
Dimmer Volume {channel="sonos:zoneplayer:1:volume"}
|
||||
String LineInUDN {channel="sonos:zoneplayer:1:playlinein"}
|
||||
Player Controller (controllerGroup) {channel="sonos:zoneplayer:1:control"}
|
||||
Dimmer Volume {channel="sonos:PLAY3:1:volume"}
|
||||
String LineInUDN {channel="sonos:PLAY3:1:playlinein"}
|
||||
Player Controller (controllerGroup) {channel="sonos:PLAY3:1:control"}
|
||||
```
|
||||
|
||||
demo.sitemap:
|
||||
|
||||
```
|
||||
sitemap demo label="Main Menu"
|
||||
{
|
||||
|
|
|
@ -26,7 +26,7 @@ The binding does not need any special configuration
|
|||
For manual Thing configuration, one needs to know the UUID of a certain WeMo device.
|
||||
In the thing file, this looks e.g. like
|
||||
```
|
||||
[wemo:Socket-1-0-xxxxxx:Socket]
|
||||
wemo:socket:Switch1 [udn="Socket-1_0-221242K11xxxxx"]
|
||||
```
|
||||
|
||||
## Channels
|
||||
|
@ -53,18 +53,18 @@ Devices support some of the following channels:
|
|||
|
||||
demo.things:
|
||||
```
|
||||
wemo:socket:11111111111
|
||||
wemo:socket:Switch1 [udn="Socket-1_0-221242K11xxxxx"]
|
||||
```
|
||||
|
||||
demo.items:
|
||||
```
|
||||
Switch DemoSwitch { channel="wemo:socket:1234567:state" }
|
||||
Switch LightSwitch { channel="wemo:lightswitch:1234567:state" }
|
||||
Switch MotionSensor { channel="wemo:Motion:1234567:state" }
|
||||
Number InsightPower { channel="wemo:insight:1234567:currentpower" }
|
||||
Number InsightLastOn { channel="wemo:insight:1234567:lastOnFor" }
|
||||
Number InsightToday { channel="wemo:insight:1234567:onToday" }
|
||||
Number InsightTotal { channel="wemo:insight:1234567:onTotal" }
|
||||
Switch DemoSwitch { channel="wemo:socket:Switch1:state" }
|
||||
Switch LightSwitch { channel="wemo:lightswitch:Lightswitch1:state" }
|
||||
Switch MotionSensor { channel="wemo:Motion:Sensor1:state" }
|
||||
Number InsightPower { channel="wemo:insight:Insight1:currentPower" }
|
||||
Number InsightLastOn { channel="wemo:insight:Insight1:lastOnFor" }
|
||||
Number InsightToday { channel="wemo:insight:Insight1:onToday" }
|
||||
Number InsightTotal { channel="wemo:insight:Insight1:onTotal" }
|
||||
```
|
||||
|
||||
demo.sitemap:
|
||||
|
|
|
@ -1,380 +0,0 @@
|
|||
---
|
||||
layout: documentation
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# Classic Icon Set
|
||||
|
||||
This is a modernized version of the original icon set of openHAB 1.<br/><br/>
|
||||
|
||||
![alarm](icons/alarm.png)
|
||||
![attic](icons/attic.png)
|
||||
![baby_1](icons/baby_1.png)
|
||||
![baby_2](icons/baby_2.png)
|
||||
![baby_3](icons/baby_3.png)
|
||||
![baby_4](icons/baby_4.png)
|
||||
![baby_5](icons/baby_5.png)
|
||||
![baby_6](icons/baby_6.png)
|
||||
![bath](icons/bath.png)
|
||||
![battery-0](icons/battery-0.png)
|
||||
![battery-10](icons/battery-10.png)
|
||||
![battery-100](icons/battery-100.png)
|
||||
![battery-20](icons/battery-20.png)
|
||||
![battery-30](icons/battery-30.png)
|
||||
![battery-40](icons/battery-40.png)
|
||||
![battery-50](icons/battery-50.png)
|
||||
![battery-60](icons/battery-60.png)
|
||||
![battery-70](icons/battery-70.png)
|
||||
![battery-80](icons/battery-80.png)
|
||||
![battery-90](icons/battery-90.png)
|
||||
![battery](icons/battery.png)
|
||||
![bedroom](icons/bedroom.png)
|
||||
![bedroom_blue](icons/bedroom_blue.png)
|
||||
![bedroom_orange](icons/bedroom_orange.png)
|
||||
![bedroom_red](icons/bedroom_red.png)
|
||||
![blinds-0](icons/blinds-0.png)
|
||||
![blinds-10](icons/blinds-10.png)
|
||||
![blinds-100](icons/blinds-100.png)
|
||||
![blinds-20](icons/blinds-20.png)
|
||||
![blinds-30](icons/blinds-30.png)
|
||||
![blinds-40](icons/blinds-40.png)
|
||||
![blinds-50](icons/blinds-50.png)
|
||||
![blinds-60](icons/blinds-60.png)
|
||||
![blinds-70](icons/blinds-70.png)
|
||||
![blinds-80](icons/blinds-80.png)
|
||||
![blinds-90](icons/blinds-90.png)
|
||||
![blinds](icons/blinds.png)
|
||||
![bluetooth](icons/bluetooth.png)
|
||||
![boiler_viessmann](icons/boiler_viessmann.png)
|
||||
![boy_1](icons/boy_1.png)
|
||||
![boy_2](icons/boy_2.png)
|
||||
![boy_3](icons/boy_3.png)
|
||||
![boy_4](icons/boy_4.png)
|
||||
![boy_5](icons/boy_5.png)
|
||||
![boy_6](icons/boy_6.png)
|
||||
![calendar](icons/calendar.png)
|
||||
![camera](icons/camera.png)
|
||||
![carbondioxide](icons/carbondioxide.png)
|
||||
![cellar](icons/cellar.png)
|
||||
![chart](icons/chart.png)
|
||||
![cinema](icons/cinema.png)
|
||||
![cinemascreen-0](icons/cinemascreen-0.png)
|
||||
![cinemascreen-10](icons/cinemascreen-10.png)
|
||||
![cinemascreen-100](icons/cinemascreen-100.png)
|
||||
![cinemascreen-20](icons/cinemascreen-20.png)
|
||||
![cinemascreen-30](icons/cinemascreen-30.png)
|
||||
![cinemascreen-40](icons/cinemascreen-40.png)
|
||||
![cinemascreen-50](icons/cinemascreen-50.png)
|
||||
![cinemascreen-60](icons/cinemascreen-60.png)
|
||||
![cinemascreen-70](icons/cinemascreen-70.png)
|
||||
![cinemascreen-80](icons/cinemascreen-80.png)
|
||||
![cinemascreen-90](icons/cinemascreen-90.png)
|
||||
![cinemascreen](icons/cinemascreen.png)
|
||||
![cistern-0](icons/cistern-0.png)
|
||||
![cistern-10](icons/cistern-10.png)
|
||||
![cistern-100](icons/cistern-100.png)
|
||||
![cistern-20](icons/cistern-20.png)
|
||||
![cistern-30](icons/cistern-30.png)
|
||||
![cistern-40](icons/cistern-40.png)
|
||||
![cistern-50](icons/cistern-50.png)
|
||||
![cistern-60](icons/cistern-60.png)
|
||||
![cistern-70](icons/cistern-70.png)
|
||||
![cistern-80](icons/cistern-80.png)
|
||||
![cistern-90](icons/cistern-90.png)
|
||||
![cistern](icons/cistern.png)
|
||||
![climate-on](icons/climate-on.png)
|
||||
![climate](icons/climate.png)
|
||||
![clock-on](icons/clock-on.png)
|
||||
![clock](icons/clock.png)
|
||||
![colorlight](icons/colorlight.png)
|
||||
![colorwheel](icons/colorwheel.png)
|
||||
![contact-ajar](icons/contact-ajar.png)
|
||||
![contact-closed](icons/contact-closed.png)
|
||||
![contact-open](icons/contact-open.png)
|
||||
![contact](icons/contact.png)
|
||||
![corridor](icons/corridor.png)
|
||||
![dimmablelight-0](icons/dimmablelight-0.png)
|
||||
![dimmablelight-10](icons/dimmablelight-10.png)
|
||||
![dimmablelight-100](icons/dimmablelight-100.png)
|
||||
![dimmablelight-20](icons/dimmablelight-20.png)
|
||||
![dimmablelight-30](icons/dimmablelight-30.png)
|
||||
![dimmablelight-40](icons/dimmablelight-40.png)
|
||||
![dimmablelight-50](icons/dimmablelight-50.png)
|
||||
![dimmablelight-60](icons/dimmablelight-60.png)
|
||||
![dimmablelight-70](icons/dimmablelight-70.png)
|
||||
![dimmablelight-80](icons/dimmablelight-80.png)
|
||||
![dimmablelight-90](icons/dimmablelight-90.png)
|
||||
![dimmablelight](icons/dimmablelight.png)
|
||||
![door-closed](icons/door-closed.png)
|
||||
![door-open](icons/door-open.png)
|
||||
![door](icons/door.png)
|
||||
![dryer-0](icons/dryer-0.png)
|
||||
![dryer-1](icons/dryer-1.png)
|
||||
![dryer-2](icons/dryer-2.png)
|
||||
![dryer-3](icons/dryer-3.png)
|
||||
![dryer-4](icons/dryer-4.png)
|
||||
![dryer-5](icons/dryer-5.png)
|
||||
![dryer](icons/dryer.png)
|
||||
![energy](icons/energy.png)
|
||||
![error](icons/error.png)
|
||||
![fan](icons/fan.png)
|
||||
![fan_box](icons/fan_box.png)
|
||||
![fan_ceiling](icons/fan_ceiling.png)
|
||||
![faucet](icons/faucet.png)
|
||||
![fire-off](icons/fire-off.png)
|
||||
![fire-on](icons/fire-on.png)
|
||||
![fire](icons/fire.png)
|
||||
![firstfloor](icons/firstfloor.png)
|
||||
![flow](icons/flow.png)
|
||||
![flowpipe](icons/flowpipe.png)
|
||||
![frontdoor-closed](icons/frontdoor-closed.png)
|
||||
![frontdoor-open](icons/frontdoor-open.png)
|
||||
![frontdoor](icons/frontdoor.png)
|
||||
![garage](icons/garage.png)
|
||||
![garage_detached](icons/garage_detached.png)
|
||||
![garage_detached_selected](icons/garage_detached_selected.png)
|
||||
![garagedoor-0](icons/garagedoor-0.png)
|
||||
![garagedoor-10](icons/garagedoor-10.png)
|
||||
![garagedoor-100](icons/garagedoor-100.png)
|
||||
![garagedoor-20](icons/garagedoor-20.png)
|
||||
![garagedoor-30](icons/garagedoor-30.png)
|
||||
![garagedoor-40](icons/garagedoor-40.png)
|
||||
![garagedoor-50](icons/garagedoor-50.png)
|
||||
![garagedoor-60](icons/garagedoor-60.png)
|
||||
![garagedoor-70](icons/garagedoor-70.png)
|
||||
![garagedoor-80](icons/garagedoor-80.png)
|
||||
![garagedoor-90](icons/garagedoor-90.png)
|
||||
![garagedoor-ajar](icons/garagedoor-ajar.png)
|
||||
![garagedoor-closed](icons/garagedoor-closed.png)
|
||||
![garagedoor-open](icons/garagedoor-open.png)
|
||||
![garagedoor](icons/garagedoor.png)
|
||||
![garden](icons/garden.png)
|
||||
![gas](icons/gas.png)
|
||||
![girl_1](icons/girl_1.png)
|
||||
![girl_2](icons/girl_2.png)
|
||||
![girl_3](icons/girl_3.png)
|
||||
![girl_4](icons/girl_4.png)
|
||||
![girl_5](icons/girl_5.png)
|
||||
![girl_6](icons/girl_6.png)
|
||||
![grass](icons/grass.png)
|
||||
![greenhouse](icons/greenhouse.png)
|
||||
![groundfloor](icons/groundfloor.png)
|
||||
![group](icons/group.png)
|
||||
![heating-0](icons/heating-0.png)
|
||||
![heating-100](icons/heating-100.png)
|
||||
![heating-20](icons/heating-20.png)
|
||||
![heating-40](icons/heating-40.png)
|
||||
![heating-60](icons/heating-60.png)
|
||||
![heating-80](icons/heating-80.png)
|
||||
![heating-off](icons/heating-off.png)
|
||||
![heating-on](icons/heating-on.png)
|
||||
![heating](icons/heating.png)
|
||||
![house](icons/house.png)
|
||||
![humidity-0](icons/humidity-0.png)
|
||||
![humidity-10](icons/humidity-10.png)
|
||||
![humidity-100](icons/humidity-100.png)
|
||||
![humidity-20](icons/humidity-20.png)
|
||||
![humidity-30](icons/humidity-30.png)
|
||||
![humidity-40](icons/humidity-40.png)
|
||||
![humidity-50](icons/humidity-50.png)
|
||||
![humidity-60](icons/humidity-60.png)
|
||||
![humidity-70](icons/humidity-70.png)
|
||||
![humidity-80](icons/humidity-80.png)
|
||||
![humidity-90](icons/humidity-90.png)
|
||||
![humidity](icons/humidity.png)
|
||||
![incline](icons/incline.png)
|
||||
![keyring](icons/keyring.png)
|
||||
![kitchen](icons/kitchen.png)
|
||||
![light-off](icons/light-off.png)
|
||||
![light-on](icons/light-on.png)
|
||||
![light](icons/light.png)
|
||||
![line-decline](icons/line-decline.png)
|
||||
![line-incline](icons/line-incline.png)
|
||||
![line-stagnation](icons/line-stagnation.png)
|
||||
![line](icons/line.png)
|
||||
![lock-closed](icons/lock-closed.png)
|
||||
![lock-open](icons/lock-open.png)
|
||||
![lock](icons/lock.png)
|
||||
![man_1](icons/man_1.png)
|
||||
![man_2](icons/man_2.png)
|
||||
![man_3](icons/man_3.png)
|
||||
![man_4](icons/man_4.png)
|
||||
![man_5](icons/man_5.png)
|
||||
![man_6](icons/man_6.png)
|
||||
![microphone](icons/microphone.png)
|
||||
![moon](icons/moon.png)
|
||||
![motion](icons/motion.png)
|
||||
![movecontrol](icons/movecontrol.png)
|
||||
![network-off](icons/network-off.png)
|
||||
![network-on](icons/network-on.png)
|
||||
![network](icons/network.png)
|
||||
![niveau](icons/niveau.png)
|
||||
![office](icons/office.png)
|
||||
![oil](icons/oil.png)
|
||||
![outdoorlight](icons/outdoorlight.png)
|
||||
![pantry](icons/pantry.png)
|
||||
![parents-off](icons/parents-off.png)
|
||||
![parents_1_1](icons/parents_1_1.png)
|
||||
![parents_1_2](icons/parents_1_2.png)
|
||||
![parents_1_3](icons/parents_1_3.png)
|
||||
![parents_1_4](icons/parents_1_4.png)
|
||||
![parents_1_5](icons/parents_1_5.png)
|
||||
![parents_1_6](icons/parents_1_6.png)
|
||||
![parents_2_1](icons/parents_2_1.png)
|
||||
![parents_2_2](icons/parents_2_2.png)
|
||||
![parents_2_3](icons/parents_2_3.png)
|
||||
![parents_2_4](icons/parents_2_4.png)
|
||||
![parents_2_5](icons/parents_2_5.png)
|
||||
![parents_2_6](icons/parents_2_6.png)
|
||||
![parents_3_1](icons/parents_3_1.png)
|
||||
![parents_3_2](icons/parents_3_2.png)
|
||||
![parents_3_3](icons/parents_3_3.png)
|
||||
![parents_3_4](icons/parents_3_4.png)
|
||||
![parents_3_5](icons/parents_3_5.png)
|
||||
![parents_3_6](icons/parents_3_6.png)
|
||||
![parents_4_1](icons/parents_4_1.png)
|
||||
![parents_4_2](icons/parents_4_2.png)
|
||||
![parents_4_3](icons/parents_4_3.png)
|
||||
![parents_4_4](icons/parents_4_4.png)
|
||||
![parents_4_5](icons/parents_4_5.png)
|
||||
![parents_4_6](icons/parents_4_6.png)
|
||||
![parents_5_1](icons/parents_5_1.png)
|
||||
![parents_5_2](icons/parents_5_2.png)
|
||||
![parents_5_3](icons/parents_5_3.png)
|
||||
![parents_5_4](icons/parents_5_4.png)
|
||||
![parents_5_5](icons/parents_5_5.png)
|
||||
![parents_5_6](icons/parents_5_6.png)
|
||||
![parents_6_1](icons/parents_6_1.png)
|
||||
![parents_6_2](icons/parents_6_2.png)
|
||||
![parents_6_3](icons/parents_6_3.png)
|
||||
![parents_6_4](icons/parents_6_4.png)
|
||||
![parents_6_5](icons/parents_6_5.png)
|
||||
![parents_6_6](icons/parents_6_6.png)
|
||||
![party](icons/party.png)
|
||||
![pie](icons/pie.png)
|
||||
![piggybank](icons/piggybank.png)
|
||||
![player](icons/player.png)
|
||||
![poweroutlet-au](icons/poweroutlet-au.png)
|
||||
![poweroutlet-eu](icons/poweroutlet-eu.png)
|
||||
![poweroutlet-off](icons/poweroutlet-off.png)
|
||||
![poweroutlet-on](icons/poweroutlet-on.png)
|
||||
![poweroutlet-uk](icons/poweroutlet-uk.png)
|
||||
![poweroutlet-us](icons/poweroutlet-us.png)
|
||||
![poweroutlet](icons/poweroutlet.png)
|
||||
![present-off](icons/present-off.png)
|
||||
![present](icons/present.png)
|
||||
![pressure](icons/pressure.png)
|
||||
![projector_benq](icons/projector_benq.png)
|
||||
![pump](icons/pump.png)
|
||||
![qualityofservice-0](icons/qualityofservice-0.png)
|
||||
![qualityofservice-1](icons/qualityofservice-1.png)
|
||||
![qualityofservice-2](icons/qualityofservice-2.png)
|
||||
![qualityofservice-3](icons/qualityofservice-3.png)
|
||||
![qualityofservice-4](icons/qualityofservice-4.png)
|
||||
![radiator](icons/radiator.png)
|
||||
![rain](icons/rain.png)
|
||||
![receiver-off](icons/receiver-off.png)
|
||||
![receiver-on](icons/receiver-on.png)
|
||||
![receiver](icons/receiver.png)
|
||||
![recorder](icons/recorder.png)
|
||||
![returnpipe](icons/returnpipe.png)
|
||||
![rgb](icons/rgb.png)
|
||||
![rollershutter-0](icons/rollershutter-0.png)
|
||||
![rollershutter-10](icons/rollershutter-10.png)
|
||||
![rollershutter-100](icons/rollershutter-100.png)
|
||||
![rollershutter-20](icons/rollershutter-20.png)
|
||||
![rollershutter-30](icons/rollershutter-30.png)
|
||||
![rollershutter-40](icons/rollershutter-40.png)
|
||||
![rollershutter-50](icons/rollershutter-50.png)
|
||||
![rollershutter-60](icons/rollershutter-60.png)
|
||||
![rollershutter-70](icons/rollershutter-70.png)
|
||||
![rollershutter-80](icons/rollershutter-80.png)
|
||||
![rollershutter-90](icons/rollershutter-90.png)
|
||||
![rollershutter](icons/rollershutter.png)
|
||||
![settings](icons/settings.png)
|
||||
![sewerage-0](icons/sewerage-0.png)
|
||||
![sewerage-10](icons/sewerage-10.png)
|
||||
![sewerage-100](icons/sewerage-100.png)
|
||||
![sewerage-20](icons/sewerage-20.png)
|
||||
![sewerage-30](icons/sewerage-30.png)
|
||||
![sewerage-40](icons/sewerage-40.png)
|
||||
![sewerage-50](icons/sewerage-50.png)
|
||||
![sewerage-60](icons/sewerage-60.png)
|
||||
![sewerage-70](icons/sewerage-70.png)
|
||||
![sewerage-80](icons/sewerage-80.png)
|
||||
![sewerage-90](icons/sewerage-90.png)
|
||||
![sewerage](icons/sewerage.png)
|
||||
![shield-0](icons/shield-0.png)
|
||||
![shield-1](icons/shield-1.png)
|
||||
![shield](icons/shield.png)
|
||||
![signal-0](icons/signal-0.png)
|
||||
![signal-1](icons/signal-1.png)
|
||||
![signal-2](icons/signal-2.png)
|
||||
![signal-3](icons/signal-3.png)
|
||||
![signal-4](icons/signal-4.png)
|
||||
![siren-off](icons/siren-off.png)
|
||||
![siren-on](icons/siren-on.png)
|
||||
![siren](icons/siren.png)
|
||||
![slider-0](icons/slider-0.png)
|
||||
![slider-10](icons/slider-10.png)
|
||||
![slider-100](icons/slider-100.png)
|
||||
![slider-20](icons/slider-20.png)
|
||||
![slider-30](icons/slider-30.png)
|
||||
![slider-40](icons/slider-40.png)
|
||||
![slider-50](icons/slider-50.png)
|
||||
![slider-60](icons/slider-60.png)
|
||||
![slider-70](icons/slider-70.png)
|
||||
![slider-80](icons/slider-80.png)
|
||||
![slider-90](icons/slider-90.png)
|
||||
![slider](icons/slider.png)
|
||||
![smiley](icons/smiley.png)
|
||||
![smoke](icons/smoke.png)
|
||||
![sofa](icons/sofa.png)
|
||||
![softener](icons/softener.png)
|
||||
![solarplant](icons/solarplant.png)
|
||||
![soundvolume-0](icons/soundvolume-0.png)
|
||||
![soundvolume-100](icons/soundvolume-100.png)
|
||||
![soundvolume-33](icons/soundvolume-33.png)
|
||||
![soundvolume-66](icons/soundvolume-66.png)
|
||||
![soundvolume](icons/soundvolume.png)
|
||||
![soundvolume_mute](icons/soundvolume_mute.png)
|
||||
![status](icons/status.png)
|
||||
![suitcase](icons/suitcase.png)
|
||||
![sun](icons/sun.png)
|
||||
![sun_clouds](icons/sun_clouds.png)
|
||||
![sunrise](icons/sunrise.png)
|
||||
![sunset](icons/sunset.png)
|
||||
![switch-off](icons/switch-off.png)
|
||||
![switch-on](icons/switch-on.png)
|
||||
![switch](icons/switch.png)
|
||||
![television-on](icons/television-on.png)
|
||||
![televison-off](icons/televison-off.png)
|
||||
![temperature](icons/temperature.png)
|
||||
![temperature_cold](icons/temperature_cold.png)
|
||||
![temperature_hot](icons/temperature_hot.png)
|
||||
![terrace](icons/terrace.png)
|
||||
![text](icons/text.png)
|
||||
![toilet](icons/toilet.png)
|
||||
![vacation](icons/vacation.png)
|
||||
![video](icons/video.png)
|
||||
![wardrobe](icons/wardrobe.png)
|
||||
![washingmachine](icons/washingmachine.png)
|
||||
![washingmachine_2-0](icons/washingmachine_2-0.png)
|
||||
![washingmachine_2-1](icons/washingmachine_2-1.png)
|
||||
![washingmachine_2-2](icons/washingmachine_2-2.png)
|
||||
![washingmachine_2-3](icons/washingmachine_2-3.png)
|
||||
![washingmachine_2](icons/washingmachine_2.png)
|
||||
![water](icons/water.png)
|
||||
![wind](icons/wind.png)
|
||||
![window-ajar](icons/window-ajar.png)
|
||||
![window-closed](icons/window-closed.png)
|
||||
![window-open](icons/window-open.png)
|
||||
![window](icons/window.png)
|
||||
![woman_1](icons/woman_1.png)
|
||||
![woman_2](icons/woman_2.png)
|
||||
![woman_3](icons/woman_3.png)
|
||||
![woman_4](icons/woman_4.png)
|
||||
![woman_5](icons/woman_5.png)
|
||||
![woman_6](icons/woman_6.png)
|
||||
![zoom](icons/zoom.png)
|
|
@ -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
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -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 |
Before Width: | Height: | Size: 537 B |
|
@ -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 |
Before Width: | Height: | Size: 1.5 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1.5 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1.5 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1.5 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1.5 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1.4 KiB |
|
@ -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 |
Before Width: | Height: | Size: 979 B |
|
@ -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 |
Before Width: | Height: | Size: 285 B |
|
@ -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 |
Before Width: | Height: | Size: 314 B |
|
@ -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 |
Before Width: | Height: | Size: 285 B |
|
@ -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 |
Before Width: | Height: | Size: 316 B |
|
@ -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 |
Before Width: | Height: | Size: 316 B |
|
@ -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 |
Before Width: | Height: | Size: 315 B |
|
@ -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 |
Before Width: | Height: | Size: 315 B |
|
@ -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 |
Before Width: | Height: | Size: 316 B |
|
@ -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 |
Before Width: | Height: | Size: 315 B |
|
@ -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 |
Before Width: | Height: | Size: 315 B |
|
@ -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 |
Before Width: | Height: | Size: 314 B |
|
@ -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 |
Before Width: | Height: | Size: 285 B |
|
@ -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 |
Before Width: | Height: | Size: 1.1 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1.1 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1.2 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1.2 KiB |
|
@ -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 |
Before Width: | Height: | Size: 184 B |
|
@ -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 |
Before Width: | Height: | Size: 194 B |
|
@ -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 |
Before Width: | Height: | Size: 169 B |
|
@ -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 |
Before Width: | Height: | Size: 199 B |
|
@ -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 |
Before Width: | Height: | Size: 203 B |
|
@ -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 |
Before Width: | Height: | Size: 205 B |
|
@ -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 |
Before Width: | Height: | Size: 208 B |
|
@ -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 |
Before Width: | Height: | Size: 207 B |
|
@ -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 |
Before Width: | Height: | Size: 207 B |
|
@ -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 |
Before Width: | Height: | Size: 201 B |
|
@ -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 |
Before Width: | Height: | Size: 188 B |
|
@ -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 |
Before Width: | Height: | Size: 207 B |
|
@ -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 |
Before Width: | Height: | Size: 968 B |
|
@ -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 |
Before Width: | Height: | Size: 2.2 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1.0 KiB |
|
@ -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 |
Before Width: | Height: | Size: 1021 B |
|
@ -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 |
Before Width: | Height: | Size: 1.0 KiB |
|
@ -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 |
Before Width: | Height: | Size: 995 B |
|
@ -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 |
Before Width: | Height: | Size: 998 B |
|
@ -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 |
Before Width: | Height: | Size: 873 B |
|
@ -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 |