Merge pull request #13 from sshipway/master

New templates: Janitor, Minecraft
This commit is contained in:
Bill Maxwell 2016-03-03 19:30:37 -07:00
commit d26b73eb69
10 changed files with 603 additions and 0 deletions

View File

@ -0,0 +1,15 @@
cleanup:
image: meltwater/docker-cleanup:1.4.0
environment:
CLEAN_PERIOD: ${FREQUENCY}
DELAY_TIME: "900"
KEEP_IMAGES: ${KEEP}
labels:
io.rancher.scheduler.global: "true"
io.rancher.scheduler.affinity:host_label_ne: ${EXCLUDE_LABEL}
privileged: true
tty: true
stdin_open: true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/docker:/var/lib/docker

View File

@ -0,0 +1,25 @@
.catalog:
name: "Janitor"
version: "v1.4.0"
description: "Docker cleanup"
uuid: janitor-0
questions:
- variable: "FREQUENCY"
label: "Frequency"
description: "Run the cleanup on a cycle of this many seconds"
default: 3600
required: true
type: "int"
- variable: "EXCLUDE_LABEL"
label: "Exclude label"
description: "Specify a Rancher host label here that will be used to determine on which hosts the container should not deploy."
default: janitor.exclude=true
required: true
type: "string"
- variable: "KEEP"
label: "Keep images"
description: "A comma separated list of images that should never be removed"
default: "rancher/agent:v0.8.2,rancher/agent-instance:v0.6.0"
required: false
type: "string"

View File

@ -0,0 +1,17 @@
# Janitor
### Topology
A Janitor instance will be started on every host that does not match the
scheduling rule (default is `janitor.exclude=true`).
### Operation
This will run a task daily (by default) that will delete any unused
image, and any orphaned volume. The rancher container images are excluded
from the list of images to clean up, and you can add your own containers to
the exclude list if you wish.
This will halp to prevent the /var/lib/docker filesystem from filling up
with old and unused container images.

View File

@ -0,0 +1,31 @@
<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600"><rect id="svgEditorBackground" x="0" y="0" width="600" height="600" style="fill: none; stroke: none;"/>
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
<g>
<title>Layer 1</title>
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#5b8805;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#5b8805;stop-opacity:0"/>
</linearGradient>
</defs>
<ellipse ry="300" rx="300" id="svg_1" cy="300" cx="300" stroke-width="0" stroke="#000000" fill="#79b506"/>
<path d="M191 479.5 L 300 479.5 L 300 600" style="fill:#5b8805; stroke:purple;stroke-width:0"/>
<path d="M426.5 145 L 600 300 L 420 300" style="fill:#5b8805; stroke:purple;stroke-width:0"/>
<path d="M300 600 A 300 300, 0, 0, 0, 600 300 L 300 300 Z" fill="#5b8805"/>
<path d="M 300 300 L 300 470 L 400 470 L 410 300" style="fill:#79b506; stroke:purple;stroke-width:0"/>
<line stroke-linecap="round" x1="180" y1="159.25" x2="420" y2="159.25" style="stroke:rgb(255,255,255);stroke-width:30"/>
<rect x="250" y="129.25" rx="20" ry="20" width="100" height="30" style="fill: transparent; stroke:#fff; stroke-width:10"/>
<line stroke-linecap="round" x1="189" y1="198.75" x2="200" y2="466.75" style="stroke:rgb(255,255,255);stroke-width:25"/>
<line id="bottom" stroke-linecap="round" x1="411" y1="198.75" x2="400" y2="466.75" style="stroke:rgb(255,255,255);stroke-width:25"/>
<line stroke-linecap="square" x1="189" y1="198.75" x2="411" y2="198.75" style="stroke:rgb(255,255,255);stroke-width:25"/>
<line stroke-linecap="round" x1="203" y1="470.75" x2="397" y2="470.75" style="stroke:rgb(255,255,255);stroke-width:30"/>
<line stroke-linecap="round" x1="260" y1="198.75" x2="265" y2="470.75" style="stroke:rgb(255,255,255);stroke-width:25"/>
<line stroke-linecap="round" x1="340" y1="198.75" x2="335" y2="470.75" style="stroke:rgb(255,255,255);stroke-width:25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,7 @@
name: Janitor
description: |
Automatic cleanup of unused images on hosts, in order to save disk space.
version: v1.4.0
category: monitoring
maintainer: Steve Shipway <s.shipway@auckland.ac.nz>

View File

@ -0,0 +1,24 @@
Minecraft:
environment:
EULA: ${EULA}
VERSION: ${VERSION}
DIFFICULTY: ${DIFFICULTY}
MODE: ${MODE}
PVP: ${PVP}
WHITELIST: ${WHITELIST}
OPS: ${OPS}
MOTD: ${MOTD}
SEED: ${SEED}
WORLD: ${WORLD}
tty: true
image: itzg/minecraft-server
stdin_open: true
MinecraftLB:
ports:
- ${PORT}:25565/tcp
tty: true
image: rancher/load-balancer-service
links:
- Minecraft:Minecraft
stdin_open: true

View File

@ -0,0 +1,92 @@
.catalog:
name: "Minecraft"
version: "v1.8"
description: "Minecraft server"
uuid: minecraft-0
questions:
- variable: "EULA"
label: "Accept EULA"
description: "Select TRUE to accept the Minecraft EULA"
required: true
type: "enum"
options:
- TRUE
- variable: "SCALE"
label: "Scale"
description: "How many servers to run"
default: 1
required: true
type: "int"
- variable: "PORT"
label: "Port number"
description: "On which port should the Load Balancer listen?"
default: 25565
required: true
type: "int"
- variable: "VERSION"
label: "Minecraft Version"
description: "Select the version of Minecraft server to run. Default is the latest available"
required: false
type: "enum"
default: LATEST
options:
- LATEST
- SNAPSHOT
- 1.8.9
- 1.7.10
- 1.6.4
- variable: "DIFFICULTY"
label: "Difficulty level"
description: "Select the Minecraft difficulty level. Default is normal"
default: normal
required: true
type: "enum"
options:
- peaceful
- easy
- normal
- hard
- variable: "MODE"
label: "Default game mode"
description: "Select the game mode to connect in. Default is survival"
default: survival
required: true
type: "enum"
options:
- survival
- creative
- adventure
- spectator
- variable: "PVP"
label: "PvP mode"
description: "Check here to enable PvP mode. Default is no PvP."
default: false
type: "boolean"
required: true
- variable: "MOTD"
label: "Description"
description: "Description string for Minecraft server"
default: "A Minecraft server powered by Docker"
type: "string"
required: true
- variable: "WHITELIST"
label: "Whitelist"
description: "Player names to whitelist, comma separated"
type: "string"
- variable: "OPS"
label: "Operators"
description: "Player names to give operator privileges, comma separated"
type: "string"
- variable: "SEED"
label: "Level seed"
description: "Optional level seed number for world generation"
type: "int"
- variable: "WORLD"
label: "World URL"
description: "URL to download zipped world directory"
type: "string"
Minecraft:
scale: ${SCALE}
MinecraftLB:
load_balancer_config: {}

View File

@ -0,0 +1,19 @@
# Minecraft
### Topology
This will start up several Minecraft servers of the specified type. If no
world seed is specified, then a random one will be used. A Load Balancer
will be created over the top so that they can be accessed.
The servers use ephemeral disk and so will not be persistent. You can also
specify a URL from which to download an ZIP archive of a world save, which
will be used in all containers.
### Options
You **must** accept the [EULA](https://account.mojang.com/documents/minecraft_eula) by selecting **TRUE** in the dropdown.
You should specify a unique port number for the load balancers to listen on.
The other options for the server may be left as their defaults.

View File

@ -0,0 +1,367 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="100%" height="100%" viewBox="0 -20 300 100" xml:space="preserve">
<path fill="#020303" d="M299.777,36.931l-0.921-3.17l-0.866-2.898c0,0-2.735-8.914-3.092-10.088
c-0.443-1.454-0.883-2.903-1.298-4.313l-0.069-0.243l6.06-7.282l-2.848-8.938l-30.533,0.03l-0.932,1.485l-0.365-1.483l-30.739,0.032
l-0.754,1.686l-0.297-1.689l-30.981,0.035l-0.545,2.024l-0.207-2.024l-31.296,0.03l-0.3,3.31l-0.097-3.31l-31.455,0.033
l-0.105,3.027l-0.326-3.03l-31.188,0.034l-0.209,1.951l-0.558-1.949L90.817,0.204l-1.2,8.389l-0.685-1.731l-0.331-0.03l-2.629-6.624
L71.124,0.223l-0.301,1.609l-0.782-1.608L55.339,0.238L55.005,1.74l-0.866-1.502L39.563,0.254l-1.696,6.532L33.918,6.79
l-0.757,2.855l-6.866-9.378L12.11,0.281L-0.013,37.937l12.888,11.915h14.042l2.23-8.393l1.089,1.211h3.757l6.255,7.179l14.429-0.004
l0.285-1.358l1.021,1.36l14.541-0.002l0.26-1.469l0.929,1.469l14.679-0.002l1.134-7.871l3.787,7.871l14.875-0.003l0.187-1.801
l0.648,1.801l30.942-0.003l0.111-2.862l0.341,2.863l31.191-0.005l0.3-3.128l0.105,3.128l15.302-0.003l0.478-2.198l0.144,2.198
l15.116-0.003l0.641-1.887l0.187,1.887h14.951l0.769-1.68l0.223,1.68h14.808l0.889-1.534l0.251,1.533l14.679-0.005l8.486-12.098
l-0.405-1.939l4.702-0.002l6.64-9.198l5.716,23.235l14.409-0.002l12.026-11.98L299.777,36.931z M154.018,27.736l0.155-5.141
l14.732-0.009l0.128-1.708l0.232,6.853L154.018,27.736z"/>
<polygon fill="#A9A09D" points="26.943,8.807 24.983,15.643 33.681,15.643 35.508,8.892 39.484,8.889 41.177,2.342 52.64,2.33
44.56,37.066 32.202,37.07 35.905,22.32 31.444,22.315 29.514,29.5 21.509,29.503 23.505,22.311 18.984,22.324 14.625,37.075
2.494,37.082 13.631,2.369 24.882,2.358 23.016,8.662 "/>
<polygon fill="#A9A09D" points="68.447,2.4 61.617,37.146 49.256,37.151 56.985,2.41 "/>
<polygon fill="#A9A09D" points="85.164,25.878 86.188,18.695 81.711,18.611 78.751,37.056 66.374,37.058 72.858,2.311 84.332,2.3
83.327,8.733 87.255,8.833 86.324,15.553 90.741,15.615 92.626,2.29 104.108,2.28 100.085,37.048 87.695,37.053 89.246,25.979 "/>
<polygon fill="#A9A09D" points="134.653,29.879 134.34,37.037 104.819,37.046 108.494,2.276 135.861,2.248 135.59,8.404
119.491,8.419 118.984,15.512 135.279,15.556 134.985,22.276 118.383,22.287 117.825,29.815 "/>
<path fill="#A9A09D" d="M295.203,2.092l1.965,6.172l-7.992,0.006l0.05,0.191c0.331,1.35,0.688,2.723,1.072,4.125
c0.387,1.407,0.795,2.837,1.218,4.286c0.427,1.454,0.863,2.929,1.315,4.405c0.452,1.484,0.911,2.978,1.368,4.471
c0.277,0.908,0.555,1.822,0.837,2.748c0.287,0.928,0.573,1.863,0.855,2.802c0.287,0.943,0.568,1.891,0.85,2.838
c0.278,0.949,0.557,1.898,0.824,2.847l-12.473,0.004L277.25,8.283l-7.998,0.007l-1.577-6.171L295.203,2.092z"/>
<polygon fill="#A9A09D" points="266.487,15.292 268.187,22.196 251.499,22.205 254.589,36.997 242.139,37 235.763,2.15
263.259,2.123 264.776,8.293 248.589,8.307 250.05,15.285 "/>
<path fill="#A9A09D" d="M218.643,25.764l1.537,11.245l-12.44,0.003l-3.85-34.83l27.464-0.027l6.024,34.85l-12.443,0.003
l-1.62-11.228L218.643,25.764z M226.707,12.085l-0.699-4.424l-5.437,0.006l0.5,4.054l-4.268-0.034l-0.55-4.017l-5.26,0.007
l0.553,4.42l4.829-0.002l0.222,1.626l-2.427,0.002l0.887,6.814l2.914-0.003l-0.219-2.317l4.32-0.017l0.361,2.331l2.954-0.002
l-1.036-6.783l-2.407-0.013l-0.209-1.646L226.707,12.085"/>
<path fill="#A9A09D" d="M197.071,18.978l4.104-0.003l1.818,18.037l-12.425,0.007l-1.109-14.684l-4.6-0.113l0.955,14.797
l-12.423,0.007l-1.335-34.813l27.432-0.026l1.3,12.917l-4.094-0.004L197.071,18.978z M188.966,15.522l-0.538-7.162l-4.465,0.001
l0.461,7.163L188.966,15.522"/>
<polygon fill="#A9A09D" points="151.919,8.39 167.833,8.377 167.657,2.217 140.254,2.246 139.083,37.034 168.646,37.026
168.442,29.873 151.538,29.879 "/>
<path fill="#282729" d="M4.115,37.08c-0.891,0-1.095,0.505-0.451,1.122l8.792,8.427c0.642,0.615,1.899,1.122,2.791,1.122h7.74
c0.892,0,1.122-0.534,0.515-1.187l-7.77-8.304c-0.607-0.65-1.836-1.184-2.728-1.184L4.115,37.08z"/>
<path fill="#282729" d="M33.824,37.071c-0.892,0-1.155,0.56-0.582,1.243l6.865,8.191c0.572,0.686,1.77,1.244,2.662,1.244h8.116
c0.892,0,1.186-0.585,0.654-1.301l-6.011-8.08c-0.533-0.716-1.698-1.302-2.59-1.301L33.824,37.071z"/>
<path fill="#282729" d="M23.129,29.502c-0.891,0-1.138,0.545-0.546,1.215l7.639,8.623c0.592,0.668,1.671,1.186,2.401,1.15
c0.727-0.034,0.904-0.66,0.391-1.39l-0.532-0.754c-0.514-0.729-0.74-2.029-0.501-2.89l0.148-0.538
c0.24-0.858-0.02-2.135-0.573-2.834l-1.038-1.31c-0.553-0.7-1.735-1.272-2.626-1.272H23.129z"/>
<path fill="#282729" d="M50.877,37.151c-0.893,0.001-1.188,0.59-0.66,1.308l5.872,7.984c0.526,0.719,1.689,1.307,2.581,1.307h7.994
c0.891,0,1.233-0.617,0.757-1.373l-4.943-7.857c-0.475-0.756-1.592-1.374-2.484-1.372L50.877,37.151z"/>
<path fill="#282729" d="M67.995,37.058c-0.891,0-1.241,0.623-0.775,1.384l4.764,7.799c0.466,0.76,1.573,1.383,2.466,1.383h7.866
c0.893,0,1.302-0.655,0.907-1.456l-3.755-7.658c-0.393-0.801-1.444-1.455-2.336-1.455L67.995,37.058z"/>
<path fill="#282729" d="M89.317,37.052c-0.891,0-1.314,0.662-0.939,1.471l3.586,7.755c0.376,0.81,1.411,1.471,2.303,1.471h8.12
c0.892,0,1.371-0.685,1.063-1.522l-2.807-7.659c-0.308-0.837-1.287-1.521-2.18-1.521L89.317,37.052z"/>
<path fill="#282729" d="M106.44,37.047c-0.891,0-1.375,0.688-1.075,1.525l2.645,7.397c0.299,0.842,1.276,1.528,2.167,1.528h24.02
c0.892,0,1.519-0.724,1.394-1.605l-1.026-7.251c-0.124-0.884-0.958-1.605-1.847-1.605L106.44,37.047z"/>
<path fill="#282729" d="M140.704,37.034c-0.891,0-1.543,0.725-1.447,1.613l0.808,7.491c0.096,0.888,0.903,1.612,1.795,1.612h23.896
c0.893,0,1.708-0.725,1.812-1.61l0.887-7.503c0.105-0.887-0.541-1.611-1.431-1.61L140.704,37.034z"/>
<path fill="#282729" d="M175.012,37.024c-0.892,0-1.713,0.725-1.826,1.61l-0.935,7.381c-0.113,0.886,0.524,1.609,1.417,1.609h7.997
c0.892,0,1.792-0.71,1.997-1.577l1.776-7.451c0.203-0.868-0.355-1.577-1.247-1.576L175.012,37.024z"/>
<path fill="#282729" d="M192.188,37.018c-0.892,0-1.79,0.711-1.997,1.579l-1.737,7.324c-0.206,0.868,0.355,1.578,1.248,1.578h7.996
c0.891,0,1.862-0.688,2.157-1.53l2.603-7.426c0.292-0.841-0.194-1.53-1.086-1.529L192.188,37.018z"/>
<path fill="#282729" d="M209.361,37.011c-0.894,0-1.867,0.688-2.163,1.529l-2.668,7.557c-0.297,0.84,0.188,1.528,1.079,1.528h7.989
c0.892,0,1.932-0.662,2.31-1.471l3.586-7.677c0.377-0.809-0.043-1.47-0.934-1.47L209.361,37.011z"/>
<path fill="#282729" d="M226.556,37.006c-0.892,0.001-1.941,0.656-2.331,1.458l-3.75,7.702c-0.39,0.803,0.021,1.458,0.911,1.458
h8.245c0.893,0,1.987-0.631,2.432-1.403l4.503-7.812c0.447-0.771,0.082-1.403-0.811-1.403L226.556,37.006z"/>
<path fill="#282729" d="M243.762,36.999c-0.891,0-2.002,0.624-2.465,1.386l-4.782,7.854c-0.464,0.761-0.114,1.385,0.776,1.385h8.117
c0.892,0,2.046-0.594,2.563-1.321l5.681-7.985c0.516-0.727,0.211-1.322-0.683-1.322L243.762,36.999z"/>
<path fill="#282729" d="M286.714,36.986c-0.892,0-2.104,0.546-2.694,1.215l-7.135,8.081c-0.591,0.669-0.344,1.215,0.548,1.215h7.737
c0.894,0,2.144-0.51,2.784-1.131l8.455-8.253c0.636-0.622,0.429-1.131-0.464-1.13L286.714,36.986z"/>
<path fill="#020303" d="M11.584,8.145c-0.083,0.225,0.578,0.413,1.469,0.415l8.501,0.035c0.892,0.004,1.63-0.189,1.644-0.426
c0.012-0.239-0.708-0.434-1.6-0.434h-8.242C12.463,7.734,11.666,7.919,11.584,8.145"/>
<path fill="#020303" d="M10.994,25.811c0.277-0.847-0.224-1.541-1.115-1.541H7.802c-0.891,0-1.62,0.171-1.62,0.378
c0,0.208,0.729,0.38,1.62,0.38H8.83c0.891,0,1.394,0.692,1.115,1.54l-1.89,5.753c-0.277,0.849,0.225,1.542,1.117,1.542h6.369
c0.893,0,1.622-0.171,1.622-0.379s-0.729-0.378-1.622-0.378h-5.322c-0.892,0-1.394-0.695-1.115-1.542l0.151-0.453
c0.278-0.848,1.236-1.541,2.127-1.541h4.916c0.893,0,1.623-0.17,1.623-0.377c0-0.21-0.73-0.379-1.623-0.379h-4.668
c-0.891,0-1.393-0.692-1.115-1.541L10.994,25.811z"/>
<path fill="#020303" d="M44.894,9.634c0.121-0.882-0.512-1.606-1.402-1.606l-2.464,0.003c-0.892,0.001-1.685,0.171-1.765,0.378
c-0.08,0.205,0.587,0.375,1.479,0.375h1.885c0.892,0,1.524,0.723,1.403,1.607l-0.346,2.552c-0.12,0.883-0.948,1.606-1.838,1.606
h-7.789c-0.892,0-1.621,0.171-1.621,0.378c0,0.208,0.729,0.379,1.621,0.379h7.686h1.837h1.838h3.95c0.891,0,1.621-0.171,1.621-0.379
c0-0.207-0.729-0.378-1.621-0.378h-3.519c-0.891,0-1.525-0.723-1.403-1.606L44.894,9.634z"/>
<path fill="#020303" d="M55.592,32.821c0.16-0.878,0.057-1.221-0.229-0.765c-0.287,0.454-0.655,1.544-0.82,2.423l-0.241,1.286
c-0.165,0.875,0.11,2.197,0.611,2.936l0.408,0.6c0.502,0.738,1.302,1.63,1.779,1.984c0.476,0.354,0.461,0.038-0.035-0.704
l-1.368-2.046c-0.496-0.742-0.771-2.065-0.61-2.943L55.592,32.821z"/>
<path fill="#020303" d="M67.779,9.375c0-0.208-0.728-0.365-1.619-0.347l-3.196,0.062c-0.891,0.019-1.252,0.174-0.801,0.347
c0.451,0.174,1.55,0.317,2.441,0.317h1.555C67.051,9.754,67.779,9.583,67.779,9.375"/>
<path fill="#020303" d="M72.477,34.659c0.195-0.871,0.097-1.198-0.214-0.728c-0.309,0.472-0.681,1.365-0.827,1.985
c-0.146,0.622-0.029,1.751,0.261,2.508c0.289,0.759,0.789,1.719,1.11,2.133c0.323,0.413,0.358,0.06,0.077-0.787l-0.412-1.237
c-0.281-0.847-0.354-2.253-0.162-3.123L72.477,34.659z"/>
<path fill="#020303" d="M69.421,25.868c-0.892-0.044-1.629,0.087-1.642,0.296c-0.009,0.208,0.712,0.414,1.602,0.46l9.064,0.459
c0.889,0.044,1.851,0.443,2.135,0.884c0.284,0.439,0.659,0.708,0.833,0.596c0.176-0.113,0.041-0.641-0.302-1.171
c-0.341-0.53-1.353-1.002-2.239-1.047L69.421,25.868z"/>
<path fill="#020303" d="M79.015,8.169c0.346,0.241,1.359,0.438,2.251,0.438h0.689c0.891,0,1.622-0.17,1.622-0.38
c0-0.206-0.731-0.395-1.622-0.415L80.004,7.77C79.113,7.748,78.668,7.929,79.015,8.169"/>
<path fill="#020303" d="M89.835,26.096c-0.89,0.038-1.614,0.24-1.605,0.447c0.008,0.208,0.745,0.347,1.634,0.309l5.265-0.223
c0.891-0.038,1.511,0.653,1.377,1.535l-1.1,7.28c-0.136,0.88-0.035,2.3,0.224,3.155l0.229,0.763
c0.259,0.853,0.772,1.982,1.146,2.507c0.374,0.526,0.468,0.257,0.213-0.597l-0.814-2.727c-0.254-0.855-0.355-2.276-0.222-3.156
l1.21-8.022c0.133-0.881-0.486-1.573-1.378-1.534L89.835,26.096z"/>
<path fill="#020303" d="M91.639,7.986c-0.036,0.205,0.654,0.495,1.535,0.643l8.973,1.054c0.884,0.11,1.608,0.028,1.608-0.18
c0-0.21-0.724-0.471-1.608-0.582l-8.845-1.038C92.421,7.734,91.672,7.782,91.639,7.986"/>
<path fill="#020303" d="M111.164,30.814c0.029-0.892-0.672-1.619-1.565-1.619h-3.209c-0.891,0-1.622,0.171-1.622,0.378
c0,0.208,0.731,0.379,1.622,0.379h2.424c0.891,0,1.595,0.729,1.565,1.62l-0.13,3.744c-0.031,0.891,0.125,2.326,0.346,3.189
l0.599,2.341c0.223,0.864,0.637,1.993,0.926,2.508c0.286,0.517,0.361,0.226,0.163-0.643l-0.97-4.277
c-0.196-0.869-0.333-2.31-0.303-3.201L111.164,30.814z"/>
<path fill="#020303" d="M106.662,12.406c0,0.208,0.73,0.379,1.622,0.379h3.066c0.891,0,1.99-0.2,2.441-0.441
c0.452-0.244,0.09-0.431-0.801-0.418l-4.707,0.076C107.392,12.016,106.662,12.198,106.662,12.406"/>
<path fill="#020303" d="M127.528,16.297c-0.021-0.892-0.21-1.622-0.422-1.622c-0.205,0-0.376,0.73-0.376,1.622v3.7
c0,0.892,0.197,1.194,0.441,0.675c0.242-0.522,0.422-1.676,0.401-2.569L127.528,16.297z"/>
<path fill="#020303" d="M131.219,30.097c-0.032,0.892-0.786,1.619-1.679,1.619h-2.453c-0.891,0-1.622,0.731-1.622,1.623v2.438
c0,0.892,0.169,1.621,0.38,1.621c0.209,0,0.379-0.729,0.379-1.621v-1.681c0-0.891,0.729-1.619,1.623-1.619h2.428
c0.891,0,1.645-0.729,1.675-1.622l0.026-0.785c0.031-0.892-0.115-1.626-0.323-1.635c-0.208-0.007-0.405,0.716-0.435,1.606V30.097z"
/>
<path fill="#020303" d="M162.266,31.785c-0.174,0.332-0.239,1.33-0.144,2.216l0.161,1.529c0.093,0.886,0.069,2.335-0.053,3.217
l-1.067,7.726c-0.121,0.882-0.012,1.594,0.242,1.583c0.256-0.012,0.555-0.746,0.665-1.631l0.949-7.663
c0.11-0.886,0.122-2.336,0.026-3.222l-0.291-2.746C162.658,31.908,162.44,31.453,162.266,31.785"/>
<path fill="#020303" d="M139.479,43.71c0,0.208,0.729,0.379,1.621,0.379h0.42c0.891,0,1.62-0.17,1.62-0.379
c0-0.207-0.729-0.378-1.62-0.378h-0.42C140.208,43.332,139.479,43.503,139.479,43.71"/>
<path fill="#020303" d="M142.384,13.414c0.417,0.208,1.468,0.54,2.338,0.737l6.247,1.115c0.82,0.353,1.557,0.487,1.639,0.295
c0.084-0.191-0.541-0.577-1.388-0.858l-8.002-1.364C142.343,13.171,141.967,13.206,142.384,13.414"/>
<path fill="#020303" d="M142.255,20.42c0.347-0.244-0.098-0.416-0.989-0.383l-0.292,0.01c-0.894,0.032-1.621,0.229-1.621,0.437
c0,0.208,0.511,0.378,1.134,0.378C141.113,20.862,141.907,20.663,142.255,20.42"/>
<path fill="#020303" d="M177.545,13.792c0.053,0.487,0.826,0.884,1.72,0.884h0.707c0.891,0,1.733,0.039,1.864,0.084
c0.137,0.047,0.638,0.404,0.816,0.297s0.048-0.404-0.288-0.66c-0.337-0.256-1.379-0.471-2.271-0.474h-0.15
c-0.893-0.001-1.703-0.729-1.803-1.613l-0.994-8.938c-0.1-0.888-0.351-1.593-0.557-1.569c-0.205,0.023-0.296,0.767-0.196,1.653
l0.788,7.086c0.101,0.886-0.553,1.611-1.442,1.611h-2.574c-0.892,0-1.62,0.17-1.62,0.376c0,0.208,0.729,0.378,1.62,0.378h2.658
C176.715,12.907,177.489,13.305,177.545,13.792"/>
<path fill="#020303" d="M176.46,31.578c0.06,0.889-0.253,2.249-0.698,3.023l-0.678,0.763c-0.207,0.868-0.211,1.612-0.008,1.656
c0.205,0.043,0.595-0.615,0.866-1.465c0,0,0.103-0.37,0.432-0.837c0.325-0.47,0.688-0.854,0.798-0.854
c0.112,0,0.155-0.729,0.094-1.618l-0.282-4.087c-0.063-0.888,0.618-1.616,1.51-1.616h6.074c0.892,0,1.62-0.171,1.62-0.379
c0-0.207-0.729-0.38-1.62-0.38h-6.884c-0.891,0-1.574,0.729-1.512,1.619L176.46,31.578z"/>
<path fill="#020303" d="M189.215,28.437c0,0.208,0.729,0.379,1.621,0.379h4.078c0.893,0,1.934-0.171,2.316-0.379
c0.387-0.209-0.031-0.381-0.922-0.381l-5.473,0.002C189.945,28.058,189.215,28.229,189.215,28.437"/>
<path fill="#020303" d="M192.717,17.747c0.227,0.187,1.14,0.341,2.031,0.341h1.177c0.893,0,1.622-0.171,1.622-0.378
c0-0.21-0.729-0.37-1.622-0.357l-1.996,0.029C193.036,17.395,192.493,17.559,192.717,17.747"/>
<path fill="#020303" d="M171.922,44.341c-0.017,0.207,0.699,0.43,1.588,0.493l9.013,0.65c0.888,0.065,1.628-0.053,1.645-0.261
c0.014-0.207-0.702-0.428-1.591-0.493l-9.009-0.648C172.679,44.018,171.938,44.134,171.922,44.341"/>
<path fill="#020303" d="M224.538,28.166c-0.891,0.011-1.619,0.188-1.618,0.396c0.001,0.208,0.732,0.371,1.623,0.363l11.021,1.224
c0.888,0.086,1.674-0.003,1.744-0.199c0.074-0.193-0.594-0.427-1.479-0.517L224.538,28.166z"/>
<path fill="#020303" d="M258.898,14.17c-0.195,0.07-0.316,0.854-0.274,1.746l1.007,5.078c-0.382,0.806-0.543,1.541-0.356,1.635
c0.188,0.093,0.659-0.488,1.045-1.291l-0.983-5.675C259.291,14.772,259.095,14.101,258.898,14.17"/>
<path fill="#020303" d="M253.048,4.704c-0.797,0-1.656-0.679-1.911-1.506c-0.255-0.831-0.624-1.458-0.824-1.397
c-0.198,0.061-0.147,0.809,0.115,1.661l0.139,0.451c0.26,0.853,1.129,1.55,1.931,1.55c0.8,0,1.696,0.689,1.983,1.534l0.377,1.092
c0.289,0.844,0.688,1.479,0.881,1.411c0.197-0.066,0.12-0.811-0.169-1.655l-0.55-1.607C254.732,5.395,253.844,4.704,253.048,4.704"
/>
<path fill="#020303" d="M282.988,26.669c-0.89,0-1.619,0.17-1.619,0.379c0,0.21,0.729,0.381,1.619,0.381h10.392
c0.893,0,1.621-0.171,1.621-0.381c0-0.209-0.729-0.379-1.621-0.379H282.988z"/>
<path fill="#020303" d="M290.834,8.87c0.2-0.054,0.175-0.803-0.063-1.663l-1.04-3.815c-0.232-0.861-0.59-1.52-0.793-1.464
c-0.198,0.054-0.173,0.803,0.063,1.663l1.041,3.814C290.279,8.264,290.634,8.924,290.834,8.87"/>
<path fill="#020303" d="M38.936,8.648h3.396c0.891,0,0.904-0.142,0.029-0.311l-1.171-0.23c-0.876-0.171-1.546-0.013-1.494,0.353
L38.936,8.648z"/>
<path fill="#020303" d="M19.937,42.256c-0.345-0.382-1.354-0.606-2.237-0.499l-1.959,0.242c-0.885,0.108-0.885,0.282,0.001,0.387
l3.215,0.378C19.844,42.867,20.285,42.639,19.937,42.256"/>
<path fill="#020303" d="M52.063,46.424c-0.241-0.382-1.167-0.634-2.057-0.557l-4.215,0.357c-0.889,0.074-0.889,0.203-0.002,0.284
l5.103,0.462C51.78,47.05,52.309,46.805,52.063,46.424"/>
<path fill="#020303" d="M90.946,44.846c-0.105-0.346,0.538-0.609,1.431-0.584l1.05,0.032c0.891,0.024,0.921,0.25,0.064,0.499
l-0.801,0.231C91.834,45.272,91.049,45.192,90.946,44.846"/>
<path fill="#020303" d="M135.439,42.385c-0.068-0.521-0.845-0.845-1.728-0.719l-2.98,0.425c-0.879,0.126-0.879,0.342-0.001,0.482
l3.231,0.507C134.843,43.219,135.507,42.906,135.439,42.385"/>
<path fill="#020303" d="M139.161,44.188c-0.045-0.52,0.646-0.861,1.53-0.76l0.093,0.011c0.888,0.101,0.956,0.5,0.151,0.886
l-0.229,0.11C139.901,44.819,139.206,44.708,139.161,44.188"/>
<path fill="#020303" d="M111.016,35.505c-0.105-0.764-0.304-0.821-0.443-0.126c-0.139,0.695-0.044,1.961,0.212,2.815l0.204,0.679
c0.257,0.854,0.417,0.825,0.353-0.063l-0.02-0.299C111.256,37.621,111.121,36.269,111.016,35.505"/>
<path fill="#020303" d="M125.783,36.072c-0.174-0.313-0.291,0.16-0.259,1.05l0.013,0.423c0.032,0.891,0.17,1.052,0.312,0.359
C125.986,37.209,125.958,36.385,125.783,36.072"/>
<path fill="#020303" d="M95.868,35.756c-0.036-0.765-0.176-0.765-0.314,0c-0.139,0.765-0.022,2.082,0.257,2.928l0.236,0.709
c0.281,0.846,0.393,0.817,0.246-0.061l-0.096-0.586C96.051,37.864,95.901,36.521,95.868,35.756"/>
<path fill="#020303" d="M71.818,36.325c-0.139-0.313-0.369-0.255-0.504,0.126c-0.139,0.382,0.005,1.09,0.317,1.577
c0.313,0.485,0.542,0.43,0.505-0.126C72.1,37.347,71.958,36.638,71.818,36.325"/>
<path fill="#020303" d="M55.029,35.79c-0.172-0.765-0.484-0.68-0.692,0.187v0.003c-0.209,0.866,0.133,2.088,0.756,2.713
c0.624,0.626,0.935,0.541,0.694-0.188C55.542,37.774,55.203,36.554,55.029,35.79"/>
<path fill="#020303" d="M24.799,34.685c-0.243-0.313,0.286-0.504,1.175-0.427l2.571,0.223c0.889,0.077,0.891,0.232,0.008,0.346
l-1.704,0.22C25.966,35.161,25.043,34.998,24.799,34.685"/>
<path fill="#020303" d="M162.478,35.215c0.127-0.882,0.38-0.891,0.57-0.021l0.077,0.365c0.188,0.872,0.154,2.291-0.074,3.153
l-0.309,1.158c-0.228,0.86-0.436,0.836-0.461-0.055l-0.032-1.048c-0.026-0.892,0.056-2.343,0.182-3.227L162.478,35.215z"/>
<path fill="#020303" d="M152.355,15.75c0,0.382-0.604,0.282-1.341-0.217l-0.476-0.323c-0.738-0.502-0.633-0.742,0.235-0.534
l0.005,0.001C151.646,14.887,152.355,15.367,152.355,15.75"/>
<path fill="#020303" d="M201.65,41.436c0.103-0.347-0.541-0.61-1.434-0.585l-1.174,0.034c-0.89,0.026-0.916,0.243-0.06,0.486
l0.919,0.257C200.759,41.868,201.546,41.782,201.65,41.436"/>
<path fill="#020303" d="M195.336,36.073c-0.244-0.521-0.416-0.217-0.382,0.674l0.006,0.166c0.035,0.89,0.231,1.279,0.439,0.863
C195.609,37.359,195.581,36.594,195.336,36.073"/>
<path fill="#020303" d="M217.746,43.015c0.138-0.382-0.476-0.635-1.363-0.565l-3.081,0.248c-0.889,0.07-0.896,0.237-0.013,0.372
l2.602,0.396C216.77,43.6,217.605,43.397,217.746,43.015"/>
<path fill="#020303" d="M214.59,36.262c-0.14-0.418-0.338-0.446-0.442-0.064c-0.103,0.382-0.074,1.235,0.063,1.896
c0.138,0.659,0.338,0.688,0.44,0.063C214.756,37.531,214.729,36.679,214.59,36.262"/>
<path fill="#020303" d="M259.338,22.818c-0.313-0.104-0.284-0.843,0.064-1.641c0.346-0.799,0.602-0.725,0.566,0.167l-0.001,0.044
C259.933,22.279,259.65,22.924,259.338,22.818"/>
<path fill="#020303" d="M238.13,42.131c0.313-0.381,1.29-0.586,2.171-0.454l4.367,0.655c0.883,0.132,0.876,0.262-0.014,0.286
l-5.471,0.161C238.292,42.806,237.82,42.513,238.13,42.131"/>
<path fill="#020303" d="M279.534,42.131c0.382-0.521,1.412-0.809,2.289-0.639l4.012,0.775c0.874,0.169,0.862,0.348-0.028,0.402
l-5.347,0.314C279.567,43.037,279.152,42.653,279.534,42.131"/>
<path fill="#020303" d="M281.178,26.983c-0.174-0.59,0.403-0.965,1.285-0.834l3.61,0.533c0.88,0.131,0.884,0.37,0.006,0.531
l-2.989,0.549C282.213,27.923,281.353,27.573,281.178,26.983"/>
<path fill="#020303" d="M276.946,9.438c-0.277-0.244-0.533-1.172-0.564-2.063l-0.006-0.169c-0.03-0.89,0.128-0.913,0.357-0.051
l0.304,1.157C277.264,9.174,277.223,9.682,276.946,9.438"/>
<path fill="#020303" d="M236.807,30.583l-2.281-0.914c-0.829-0.331-0.782-0.534,0.107-0.451l2.423,0.227"/>
<path fill="#020303" d="M150.147,37.901c0.171-0.485,0.171-1.251,0-1.704c-0.172-0.451-1.044-0.818-1.935-0.818h-0.927
c-0.892,0-1.876,0.425-2.189,0.947c-0.313,0.521,0.134,1.148,0.992,1.391l2.187,0.624C149.134,38.585,149.975,38.386,150.147,37.901
"/>
<path fill="#020303" d="M148.632,36.639c-0.593-0.623-0.563-1.136,0.064-1.136c0.625,0,1.392,0.314,1.704,0.696
c0.311,0.382,0.18,1.314-0.293,2.07l-0.175,0.281c-0.475,0.754-0.717,0.891-0.545,0.3C149.564,38.257,149.222,37.265,148.632,36.639
"/>
<path fill="#020303" d="M91.511,8.238c0.07-0.486,0.833-0.707,1.697-0.49l0.389,0.097c0.866,0.218,0.862,0.56-0.006,0.763
l-0.627,0.146C92.096,8.958,91.441,8.726,91.511,8.238"/>
<path fill="#020303" d="M50.675,15.117c-0.175,0.313-1.023,0.397-1.891,0.188l-0.509-0.123c-0.865-0.208-0.849-0.422,0.044-0.476
l1.051-0.062C50.26,14.592,50.849,14.804,50.675,15.117"/>
<path fill="#020303" d="M17.791,29.066c0.141-0.418-0.464-0.619-1.338-0.448l-1.358,0.264c-0.875,0.171-0.871,0.424,0.009,0.561
l0.832,0.131C16.816,29.712,17.652,29.484,17.791,29.066"/>
<path fill="#282729" d="M20.316,42.385c-0.277-0.311-0.3-1.269-0.047-2.123l0.348-1.183c0.251-0.856,0.421-0.827,0.38,0.064
l-0.102,2.189C20.854,42.225,20.594,42.695,20.316,42.385"/>
<path fill="#282729" d="M51.875,46.549c-0.278-0.174-0.278-0.939,0-1.704c0.278-0.764,0.505-0.658,0.505,0.234v0.164
C52.38,46.135,52.153,46.723,51.875,46.549"/>
<path fill="#282729" d="M80.341,27.553c-0.034-0.556,0.203-0.333,0.53,0.499l0.2,0.516c0.328,0.83,0.31,1.168-0.037,0.752
C80.687,28.903,80.375,28.108,80.341,27.553"/>
<path fill="#282729" d="M238.512,42.637c0.31-0.244,0.366-1.144,0.121-2.001l-0.374-1.302c-0.244-0.857-0.427-0.829-0.404,0.062
l0.052,2.062C237.925,42.349,238.2,42.88,238.512,42.637"/>
<path fill="#282729" d="M280.168,42.383c0.451-0.244,0.516-1.105,0.141-1.913l-1.673-3.62c-0.372-0.812-0.544-0.758-0.381,0.121
l0.796,4.26C279.214,42.109,279.717,42.627,280.168,42.383"/>
<path fill="#282729" d="M281.934,26.921c-0.174-0.347-0.638,0.024-1.032,0.823l-1.725,3.528c-0.394,0.801-0.284,0.867,0.243,0.149
l1.873-2.561C281.82,28.141,282.109,27.27,281.934,26.921"/>
<path fill="#020303" d="M254.855,9.627l0.07-2.038c0.03-0.892,0.239-0.915,0.463-0.053l0.603,2.343"/>
<path fill="#595558" d="M14.322,43.267c-0.798-0.243-0.741-0.385,0.126-0.314c0.867,0.068,2.146,0.211,2.839,0.315
c0.693,0.104,0.637,0.247-0.126,0.314C16.397,43.652,15.12,43.51,14.322,43.267"/>
<path fill="#595558" d="M54.283,38.797c-0.629-0.63-0.721-0.553-0.204,0.172l0.64,0.896c0.518,0.725,1.341,1.574,1.828,1.887
c0.486,0.313,0.458,0.058-0.062-0.568c-0.522-0.625-1.465-1.652-2.095-2.282L54.283,38.797z"/>
<path fill="#595558" d="M70.557,37.02c-0.21,0-0.095,0.595,0.252,1.326c0.347,0.729,0.517,0.729,0.379,0
C71.049,37.614,70.765,37.02,70.557,37.02"/>
<path fill="#595558" d="M93.788,45.099c-0.695-0.07-0.544-0.256,0.333-0.418l0.969-0.175c0.877-0.16,1.227-0.062,0.776,0.216
C95.418,44.999,94.481,45.168,93.788,45.099"/>
<path fill="#595558" d="M110.005,38.345c-0.313-0.451-0.427-0.168-0.254,0.63c0.174,0.798,0.629,2.021,1.011,2.714
c0.379,0.696,0.528,0.552,0.326-0.315l-0.146-0.628C110.738,39.876,110.318,38.795,110.005,38.345"/>
<path fill="#595558" d="M163.656,39.732c-0.105-0.521-0.363-0.436-0.569,0.188c-0.208,0.625-0.379,1.817-0.379,2.653
c0,0.832,0.232,0.822,0.514-0.023l0.111-0.333C163.614,41.372,163.759,40.253,163.656,39.732"/>
<path fill="#595558" d="M145.779,36.256c-0.176-0.532-0.579-0.441-0.896,0.201c-0.316,0.643,0.083,1.487,0.883,1.877l0.04,0.017
c0.798,0.389,1.195,0.295,0.875-0.211C146.364,37.637,145.955,36.789,145.779,36.256"/>
<path fill="#595558" d="M175.771,45.35c-0.797-0.207-0.721-0.378,0.171-0.378h0.293c0.89,0,2.273,0.227,3.073,0.505
c0.797,0.278,0.725,0.454-0.167,0.389l-0.298-0.021C177.954,45.781,176.572,45.559,175.771,45.35"/>
<path fill="#595558" d="M196.033,38.345c-0.067-0.313-0.324-0.028-0.568,0.63c-0.246,0.659-0.188,0.916,0.126,0.569
C195.903,39.196,196.103,38.655,196.033,38.345"/>
<path fill="#595558" d="M215.523,37.656c-0.07-0.31-0.326-0.028-0.568,0.632c-0.244,0.659-0.186,0.917,0.127,0.568
C215.393,38.508,215.593,37.969,215.523,37.656"/>
<path fill="#595558" d="M212.394,43.511c-0.876-0.168-0.865-0.377,0.021-0.464l0.686-0.066c0.887-0.085,1.983,0.071,2.436,0.35
c0.451,0.278,0.309,0.505-0.316,0.505s-1.852-0.137-2.729-0.306L212.394,43.511z"/>
<path fill="#595558" d="M241.038,43.458c-0.799,0.069-0.799-0.073,0-0.316c0.797-0.244,2.179-0.381,3.066-0.305l1.187,0.104
c0.887,0.075,0.886,0.18-0.004,0.231l-1.181,0.067C243.216,43.291,241.834,43.389,241.038,43.458"/>
<path fill="#282729" d="M259.525,23.071c-0.416,0.174-1.036,0.989-1.378,1.813l-0.017,0.034c-0.342,0.824-0.183,0.917,0.354,0.206
l0.817-1.077C259.842,23.335,259.944,22.896,259.525,23.071"/>
<path fill="#020303" d="M290.899,9.249c-0.383,0-0.766-0.726-0.853-1.614L289.98,6.95c-0.086-0.889,0.146-0.95,0.513-0.137
l0.435,0.959C291.293,8.584,291.281,9.249,290.899,9.249"/>
<path fill="#020303" d="M171.608,12.845c-0.034-0.451,0.667-0.795,1.558-0.765l0.542,0.017c0.891,0.031,0.947,0.333,0.124,0.674
l-0.665,0.272C172.344,13.385,171.641,13.295,171.608,12.845"/>
<path fill="#020303" d="M127.236,14.486c-0.35-0.174-0.541,0.407-0.425,1.291l0.089,0.701c0.116,0.884,0.372,0.897,0.575,0.028
l0.026-0.123C127.704,15.514,127.583,14.661,127.236,14.486"/>
<path fill="#020303" d="M87.532,26.795c-0.104-0.346,0.541-0.63,1.432-0.63h3.45c0.891,0,0.905,0.143,0.031,0.317l-3.133,0.625
C88.439,27.282,87.635,27.142,87.532,26.795"/>
<path fill="#020303" d="M17.066,33.736c0.053-0.26-0.634-0.475-1.527-0.475h-0.828c-0.894,0-0.914,0.174-0.048,0.386l0.733,0.178
C16.261,34.039,17.012,33.996,17.066,33.736"/>
<path fill="#E1DCD7" d="M4.515,36.623c-0.892,0.011-1.479,0.16-1.303,0.333c0.175,0.175,1.047,0.317,1.938,0.317h6.606
c0.889,0,1.762-0.17,1.936-0.379c0.174-0.209-0.416-0.37-1.307-0.361L4.515,36.623z"/>
<path fill="#E1DCD7" d="M34.436,36.623c-0.894,0.011-1.482,0.16-1.306,0.333c0.173,0.175,1.043,0.317,1.934,0.317h6.606
c0.891,0,1.763-0.17,1.938-0.379c0.174-0.209-0.416-0.37-1.306-0.361L34.436,36.623z"/>
<path fill="#E1DCD7" d="M51.257,36.492c-0.891,0.028-1.573,0.196-1.516,0.37c0.059,0.174,0.837,0.316,1.728,0.316h0.114
c0.892,0,1.67-0.171,1.731-0.379c0.058-0.21-0.622-0.355-1.514-0.327L51.257,36.492z"/>
<path fill="#E1DCD7" d="M21.243,21.817c-0.891,0.03-1.572,0.197-1.513,0.37c0.062,0.174,0.839,0.317,1.73,0.317h0.112
c0.891,0,1.668-0.171,1.73-0.379c0.059-0.21-0.622-0.356-1.513-0.327L21.243,21.817z"/>
<path fill="#E1DCD7" d="M33.645,21.817c-0.89,0.03-1.57,0.197-1.512,0.37c0.062,0.174,0.838,0.317,1.728,0.317h0.113
c0.892,0,1.669-0.171,1.729-0.379c0.06-0.21-0.622-0.356-1.514-0.327L33.645,21.817z"/>
<path fill="#E1DCD7" d="M8.838,23.799c-0.89,0.032-1.574,0.2-1.521,0.376c0.051,0.173,0.777,0.315,1.607,0.315
c0.83,0,1.553-0.171,1.606-0.378c0.054-0.208-0.631-0.352-1.521-0.319L8.838,23.799z"/>
<path fill="#E1DCD7" d="M23.705,28.847c-0.893,0.017-1.531,0.171-1.422,0.346c0.112,0.174,0.931,0.314,1.822,0.314h2.964
c0.893,0,1.712-0.169,1.821-0.376c0.111-0.208-0.529-0.365-1.42-0.349L23.705,28.847z"/>
<path fill="#E1DCD7" d="M16.888,7.263c-0.893,0.016-1.531,0.171-1.42,0.344c0.11,0.173,0.929,0.315,1.819,0.315h2.968
c0.893,0,1.712-0.17,1.821-0.378c0.108-0.209-0.532-0.367-1.423-0.351L16.888,7.263z"/>
<path fill="#E1DCD7" d="M68.485,36.492c-0.89,0.028-1.572,0.196-1.512,0.37c0.061,0.174,0.837,0.316,1.728,0.316h0.111
c0.891,0,1.671-0.171,1.731-0.379c0.06-0.21-0.621-0.355-1.515-0.327L68.485,36.492z"/>
<path fill="#E1DCD7" d="M97.927,36.487c-0.891,0.031-1.577,0.2-1.522,0.375c0.053,0.174,0.777,0.317,1.607,0.317
c0.833,0,1.554-0.171,1.607-0.381c0.053-0.208-0.635-0.35-1.522-0.319L97.927,36.487z"/>
<path fill="#E1DCD7" d="M73.977,36.514c-0.891,0.02-1.544,0.175-1.447,0.349c0.095,0.174,0.903,0.314,1.794,0.314h2.216
c0.892,0,1.699-0.171,1.795-0.378c0.095-0.208-0.556-0.366-1.448-0.346L73.977,36.514z"/>
<path fill="#E1DCD7" d="M89.598,36.516c-0.893,0.017-1.533,0.172-1.426,0.347c0.108,0.174,0.925,0.315,1.816,0.315h2.793
c0.892,0,1.709-0.171,1.818-0.379c0.106-0.208-0.536-0.367-1.427-0.348L89.598,36.516z"/>
<path fill="#E1DCD7" d="M106.831,36.506c-0.891,0.023-1.557,0.183-1.481,0.357c0.079,0.174,0.872,0.314,1.763,0.314h1.207
c0.891,0,1.685-0.171,1.765-0.379c0.079-0.208-0.586-0.361-1.479-0.338L106.831,36.506z"/>
<path fill="#E1DCD7" d="M141.005,36.506c-0.891,0.023-1.557,0.183-1.477,0.357c0.08,0.174,0.874,0.314,1.766,0.314h1.202
c0.89,0,1.686-0.171,1.766-0.379c0.08-0.208-0.585-0.361-1.476-0.338L141.005,36.506z"/>
<path fill="#E1DCD7" d="M165.336,36.5c-0.891,0.025-1.564,0.188-1.495,0.362c0.072,0.174,0.856,0.316,1.751,0.316h0.7
c0.891,0,1.679-0.171,1.749-0.379c0.072-0.209-0.6-0.359-1.492-0.333L165.336,36.5z"/>
<path fill="#E1DCD7" d="M177.458,36.525c-0.891,0.012-1.5,0.163-1.351,0.337c0.15,0.174,1.002,0.314,1.893,0.314h5.295
c0.891,0,1.743-0.171,1.894-0.379c0.152-0.208-0.455-0.37-1.347-0.358L177.458,36.525z"/>
<path fill="#E1DCD7" d="M192.415,36.495c-0.891,0.028-1.57,0.194-1.507,0.369c0.063,0.172,0.843,0.315,1.731,0.315h0.254
c0.892,0,1.671-0.171,1.733-0.379c0.064-0.209-0.615-0.356-1.508-0.329L192.415,36.495z"/>
<path fill="#E1DCD7" d="M197.814,36.514c-0.895,0.02-1.543,0.175-1.447,0.349s0.906,0.314,1.797,0.314h2.271
c0.891,0,1.701-0.171,1.799-0.378c0.094-0.208-0.555-0.366-1.447-0.346L197.814,36.514z"/>
<path fill="#E1DCD7" d="M209.741,36.508c-0.893,0.021-1.554,0.18-1.471,0.354s0.881,0.316,1.773,0.316h1.425
c0.891,0,1.691-0.171,1.772-0.379c0.082-0.208-0.579-0.363-1.471-0.341L209.741,36.508z"/>
<path fill="#E1DCD7" d="M216.841,36.5c-0.891,0.027-1.565,0.19-1.499,0.364c0.068,0.173,0.854,0.315,1.747,0.315h0.59
c0.892,0,1.677-0.171,1.742-0.379c0.068-0.209-0.606-0.358-1.497-0.332L216.841,36.5z"/>
<path fill="#E1DCD7" d="M226.88,36.529c-0.892,0.009-1.472,0.159-1.286,0.333c0.185,0.174,1.066,0.316,1.957,0.316h7.306
c0.892,0,1.774-0.171,1.959-0.38c0.185-0.208-0.392-0.371-1.282-0.361L226.88,36.529z"/>
<path fill="#E1DCD7" d="M243.918,36.529c-0.892,0.009-1.471,0.159-1.285,0.333c0.184,0.174,1.066,0.316,1.959,0.316h7.305
c0.892,0,1.774-0.171,1.961-0.38c0.188-0.208-0.391-0.371-1.281-0.361L243.918,36.529z"/>
<path fill="#E1DCD7" d="M286.996,36.529c-0.891,0.009-1.468,0.159-1.28,0.333c0.184,0.174,1.066,0.316,1.959,0.316h7.297
c0.893,0,1.776-0.171,1.962-0.38c0.185-0.208-0.392-0.371-1.282-0.361L286.996,36.529z"/>
<path fill="#E1DCD7" d="M271.184,7.827c-0.891,0.018-1.536,0.172-1.431,0.347c0.104,0.174,0.921,0.315,1.812,0.315h2.686
c0.892,0,1.708-0.17,1.813-0.379c0.104-0.208-0.54-0.366-1.432-0.348L271.184,7.827z"/>
<path fill="#E1DCD7" d="M257.739,7.832c-0.89,0.015-1.521,0.167-1.402,0.342c0.122,0.174,0.949,0.315,1.842,0.315h3.522
c0.894,0,1.72-0.17,1.841-0.378c0.118-0.209-0.512-0.367-1.405-0.353L257.739,7.832z"/>
<path fill="#E1DCD7" d="M250.92,7.819c-0.891,0.021-1.552,0.181-1.467,0.354c0.082,0.174,0.878,0.316,1.773,0.316h1.515
c0.892,0,1.689-0.17,1.774-0.379c0.085-0.209-0.574-0.362-1.468-0.34L250.92,7.819z"/>
<path fill="#E1DCD7" d="M253.198,21.748c-0.893,0.016-1.533,0.171-1.425,0.345c0.106,0.174,0.925,0.314,1.815,0.314h2.855
c0.89,0,1.707-0.169,1.817-0.376c0.109-0.209-0.534-0.366-1.426-0.35L253.198,21.748z"/>
<path fill="#E1DCD7" d="M211.635,6.876c-0.892,0.021-1.554,0.18-1.469,0.354c0.083,0.172,0.88,0.314,1.773,0.314h1.512
c0.892,0,1.689-0.17,1.774-0.378c0.082-0.208-0.579-0.362-1.471-0.339L211.635,6.876z"/>
<path fill="#E1DCD7" d="M221.289,6.876c-0.893,0.021-1.553,0.18-1.468,0.354c0.081,0.172,0.882,0.314,1.773,0.314h1.517
c0.891,0,1.688-0.17,1.773-0.378c0.081-0.208-0.578-0.362-1.472-0.339L221.289,6.876z"/>
<path fill="#E1DCD7" d="M215.107,13.004c-0.72,0.032-1.275,0.204-1.232,0.378c0.042,0.175,0.599,0.318,1.236,0.318
s1.193-0.171,1.232-0.379C216.383,13.114,215.826,12.971,215.107,13.004"/>
<path fill="#E1DCD7" d="M218.546,11.016c-0.891,0.034-1.577,0.205-1.528,0.379c0.051,0.174,0.748,0.317,1.549,0.317
s1.496-0.171,1.546-0.38c0.05-0.21-0.639-0.352-1.53-0.317L218.546,11.016z"/>
<path fill="#E1DCD7" d="M175.562,11.395c-0.891,0.033-1.579,0.203-1.529,0.378c0.049,0.174,0.747,0.317,1.548,0.317
s1.498-0.171,1.553-0.379c0.053-0.209-0.636-0.352-1.524-0.319L175.562,11.395z"/>
<path fill="#E1DCD7" d="M186.355,21.44c-0.894,0.028-1.573,0.193-1.507,0.368c0.063,0.173,0.844,0.316,1.735,0.316h0.279
c0.892,0,1.673-0.169,1.734-0.377c0.063-0.21-0.615-0.357-1.507-0.331L186.355,21.44z"/>
<path fill="#E1DCD7" d="M178.781,25.058c-0.891,0.02-1.543,0.175-1.446,0.348c0.097,0.174,0.904,0.315,1.798,0.315h2.211
c0.891,0,1.7-0.171,1.795-0.379c0.096-0.21-0.555-0.365-1.445-0.345L178.781,25.058z"/>
<path fill="#E1DCD7" d="M285.952,25.815c-0.891,0.02-1.541,0.175-1.445,0.349c0.097,0.173,0.908,0.315,1.798,0.315h2.209
c0.893,0,1.701-0.171,1.798-0.38c0.097-0.208-0.554-0.362-1.443-0.344L285.952,25.815z"/>
<path fill="#E1DCD7" d="M107.685,28.645c-0.891,0.024-1.563,0.187-1.492,0.36c0.073,0.172,0.861,0.314,1.752,0.314h0.868
c0.891,0,1.682-0.17,1.755-0.378s-0.595-0.358-1.488-0.334L107.685,28.645z"/>
<path fill="#E1DCD7" d="M92.533,25.614c-0.891,0.024-1.561,0.187-1.489,0.36c0.072,0.173,0.859,0.314,1.75,0.314h0.87
c0.893,0,1.683-0.17,1.756-0.377c0.073-0.209-0.597-0.359-1.489-0.335L92.533,25.614z"/>
<path fill="#E1DCD7" d="M70.944,25.329c-0.892,0.025-1.561,0.188-1.488,0.362c0.075,0.174,0.865,0.316,1.756,0.316h0.868
c0.891,0,1.681-0.171,1.754-0.381c0.074-0.208-0.597-0.359-1.489-0.335L70.944,25.329z"/>
<path fill="#E1DCD7" d="M38.287,13.782c-0.891,0.016-1.541,0.168-1.443,0.342c0.1,0.175,0.909,0.32,1.802,0.324l2.378,0.008
c0.891,0.004,1.704-0.165,1.802-0.373c0.1-0.209-0.546-0.367-1.439-0.352L38.287,13.782z"/>
<path fill="#E1DCD7" d="M99.586,8.293c-0.886-0.097-1.574-0.028-1.525,0.155c0.048,0.183,0.811,0.43,1.694,0.549l0.863,0.117
c0.884,0.121,1.689,0.058,1.788-0.137c0.099-0.196-0.543-0.436-1.431-0.533L99.586,8.293z"/>
<path fill="#E1DCD7" d="M192.509,27.412c-0.892,0.024-1.563,0.186-1.489,0.36c0.072,0.173,0.862,0.314,1.752,0.314h0.869
c0.891,0,1.68-0.17,1.753-0.378c0.071-0.208-0.597-0.358-1.491-0.334L192.509,27.412z"/>
<path fill="#E1DCD7" d="M219.776,24.763c-0.891,0.024-1.561,0.186-1.488,0.36c0.073,0.172,0.862,0.314,1.753,0.314h0.87
c0.891,0,1.679-0.171,1.752-0.379c0.071-0.21-0.596-0.358-1.488-0.334L219.776,24.763z"/>
<path fill="#E1DCD7" d="M154.256,7.559c-0.89,0.009-1.435,0.158-1.207,0.333c0.228,0.173,1.143,0.315,2.034,0.315h9.6
c0.891,0,1.805-0.169,2.034-0.38c0.224-0.208-0.318-0.373-1.211-0.364L154.256,7.559z"/>
<path fill="#E1DCD7" d="M121.787,7.657c-0.89,0.007-1.43,0.156-1.194,0.329c0.235,0.174,1.158,0.315,2.048,0.315h10.012
c0.891,0,1.811-0.169,2.047-0.379c0.235-0.208-0.305-0.372-1.196-0.364L121.787,7.657z"/>
<path fill="#E1DCD7" d="M120.085,21.466c-0.892,0.013-1.518,0.167-1.391,0.341c0.126,0.175,0.96,0.318,1.852,0.318h3.976
c0.89,0,1.724-0.17,1.85-0.378c0.126-0.208-0.5-0.367-1.391-0.354L120.085,21.466z"/>
<path fill="#E1DCD7" d="M128.791,21.465c-0.891,0.013-1.523,0.168-1.402,0.342c0.121,0.175,0.948,0.318,1.84,0.318h3.554
c0.889,0,1.718-0.169,1.839-0.377c0.121-0.21-0.511-0.369-1.402-0.353L128.791,21.465z"/>
<path fill="#E1DCD7" d="M147.446,34.691c-0.892,0.03-1.573,0.199-1.516,0.371c0.057,0.173,0.833,0.316,1.725,0.316h0.027
c0.891,0,1.668-0.17,1.728-0.379s-0.621-0.354-1.513-0.324L147.446,34.691z"/>
<path fill="#E1DCD7" d="M144.883,12.498c-0.886-0.102-1.561-0.033-1.5,0.149c0.062,0.187,0.834,0.436,1.717,0.558l1.629,0.227
c0.884,0.12,1.699,0.061,1.813-0.134s-0.516-0.438-1.403-0.541L144.883,12.498z"/>
<path fill="#E1DCD7" d="M226.298,27.459c-0.886-0.102-1.56-0.036-1.496,0.146c0.058,0.184,0.837,0.434,1.72,0.557l1.623,0.225
c0.884,0.121,1.698,0.063,1.813-0.132c0.114-0.194-0.517-0.436-1.402-0.538L226.298,27.459z"/>
<path fill="#E1DCD7" d="M223.349,13.004c-0.667,0.032-1.184,0.204-1.146,0.378c0.037,0.175,0.552,0.318,1.143,0.318
c0.594,0,1.108-0.171,1.147-0.379C224.532,13.114,224.017,12.971,223.349,13.004"/>
<path fill="#E1DCD7" d="M261.812,21.75c-0.891,0.016-1.524,0.168-1.405,0.342c0.121,0.174,0.947,0.316,1.839,0.316h3.527
c0.89,0,1.721-0.17,1.839-0.378c0.116-0.208-0.515-0.365-1.408-0.352L261.812,21.75z"/>
<path fill="#E1DCD7" d="M293.051,7.821C292.16,7.841,291.5,8,291.587,8.174c0.087,0.174,0.887,0.315,1.778,0.315h1.622
c0.894,0,1.694-0.169,1.778-0.379c0.089-0.208-0.57-0.361-1.463-0.341L293.051,7.821z"/>
<path fill="#E1DCD7" d="M152.936,36.527c-0.891,0.011-1.487,0.162-1.325,0.336c0.166,0.173,1.029,0.314,1.92,0.314h6.074
c0.891,0,1.755-0.17,1.92-0.378c0.164-0.208-0.431-0.37-1.322-0.358L152.936,36.527z"/>
<path fill="#E1DCD7" d="M113.173,36.532c-0.891,0.008-1.444,0.156-1.229,0.33c0.216,0.174,1.12,0.316,2.013,0.316h9.008
c0.892,0,1.799-0.171,2.015-0.381c0.216-0.208-0.338-0.372-1.229-0.363L113.173,36.532z"/>
<path fill="#E1DCD7" d="M127.943,36.519c-0.89,0.016-1.523,0.17-1.405,0.344c0.119,0.173,0.945,0.314,1.836,0.314h3.469
c0.891,0,1.716-0.171,1.837-0.379c0.116-0.208-0.517-0.366-1.408-0.352L127.943,36.519z"/>
<path fill="#E1DCD7" d="M57.666,36.603c-0.891,0.021-1.556,0.18-1.472,0.354c0.082,0.175,0.877,0.316,1.77,0.316h1.458
c0.891,0,1.688-0.17,1.77-0.379c0.084-0.209-0.577-0.361-1.468-0.34L57.666,36.603z"/>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -0,0 +1,6 @@
name: Minecraft
description: |
Multiplayer block game for wasting lots of time
version: v1.8
category: entertainment
maintainer: Steve Shipway <s.shipway@auckland.ac.nz>