not sure what was done to this project to be honest.

committing the changes anyway.
This commit is contained in:
Maurice ONeal 2022-07-08 18:37:53 -04:00
parent d4eef2c0e2
commit 79ea070b75
65 changed files with 5703 additions and 569 deletions

59
.gitignore vendored Normal file
View File

@ -0,0 +1,59 @@
# C++ objects and libs
*.slo
*.lo
*.o
*.a
*.la
*.lai
*.so
*.dll
*.dylib
# Qt-es
object_script.*.Release
object_script.*.Debug
*_plugin_import.cpp
/.qmake.cache
/.qmake.stash
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*
*.moc
moc_*.cpp
moc_*.h
qrc_*.cpp
ui_*.h
*.qmlc
*.jsc
Makefile*
*build-*
/build
/app_dir
/release
/debug
# Qt unit tests
target_wrapper.*
# QtCreator
*.autosave
# QtCreator Qml
*.qmlproject.user
*.qmlproject.user.*
# QtCreator CMake
CMakeLists.txt.user*
# QtCreator 4.8< compilation database
compile_commands.json
# QtCreator local machine specific files for imported projects
*creator.user*
# VSCode
/.vscode
# Build folder
/build

View File

@ -1,43 +1,44 @@
#-------------------------------------------------
#
# Project created by QtCreator 2016-10-01T14:15:33
#
# This file is part of JustAudio.
#
# JustAudio is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# JustAudio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with BashWire under the GPL.txt file. If not, see
# <http://www.gnu.org/licenses/>.
#
#-------------------------------------------------
QT += core gui
QT += multimedia
QT += svg
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = JustAudio
TEMPLATE = app
SOURCES += main.cpp \
aud_file.cpp \
core.cpp
HEADERS += \
aud_file.h \
core.h
RESOURCES += \
res.qrc
RC_FILE = logo.rc
#-------------------------------------------------
#
# Project created by QtCreator 2016-10-01T14:15:33
#
# This file is part of JustAudio.
#
# JustAudio is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# JustAudio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with BashWire under the GPL.txt file. If not, see
# <http://www.gnu.org/licenses/>.
#
#-------------------------------------------------
QT += core gui
QT += multimedia
QT += svg
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = JustAudio
TEMPLATE = app
SOURCES += src/main.cpp \
src/svg_icon.cpp \
src/core.cpp \
src/gui.cpp
HEADERS += src/svg_icon.h \
src/core.h \
src/gui.h
RESOURCES += \
res.qrc
RC_FILE = logo.rc

View File

@ -1,11 +1,11 @@
# What is JustAudio? #
JustAudio is a simplified audio player designed to be used only for playing music files on the local filesystem and that's it. it doesn't read ID3 data, manage your music collection or stream anything. this app is good for users that already have their music files organized to their liking in the local file system and doesn't want the extra fluff that must media players currently have today.
### How do I get set up? ###
This application was built using the [QT](https://www.qt.io/) API. To compile or modify this application, just download and install the QT API, there's usually no need for additional APIs or libraries (depends on the compiler you chose for QT). Versions 4.8 and up are recommended.
### Who do I talk to? ###
# What is JustAudio? #
JustAudio is a simplified audio player designed to be used only for playing music files on the local filesystem and that's it. it doesn't read ID3 data, manage your music collection or stream anything. this app is good for users that already have their music files organized to their liking in the local file system and doesn't want the extra fluff that must media players currently have today.
### How do I get set up? ###
This application was built using the [QT](https://www.qt.io/) API. To compile or modify this application, just download and install the QT API, there's usually no need for additional APIs or libraries (depends on the compiler you chose for QT). Versions 4.8 and up are recommended.
### Who do I talk to? ###
If you have any questions or wish to contribute to the project, please contact the owner of this project at msoneal0(at)gmail.com.

BIN
bmp/handle.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
bmp/levels.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/logo.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 382 B

After

Width:  |  Height:  |  Size: 382 B

BIN
bmp/mute_active.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/mute_active.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
bmp/mute_inactive.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/mute_inactive.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
bmp/next.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/open.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/open.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
bmp/pause_active.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/pause_active.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
bmp/pause_inactive.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/pause_inactive.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
bmp/play_active.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/play_active.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
bmp/play_inactive.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/play_inactive.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
bmp/playlist_active.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/playlist_active.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
bmp/playlist_inactive.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/playlist_inactive.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
bmp/prev.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

BIN
bmp/prev_active.png~ Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

BIN
bmp/stop.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

450
core.cpp
View File

@ -1,450 +0,0 @@
#include "core.h"
// This file is part of JustAudio.
// JustAudio is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// JustAudio is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with BashWire under the GPL.txt file. If not, see
// <http://www.gnu.org/licenses/>.
Core::Core(QObject *parent) : QObject(parent)
{
// the Core class acts as a non-gui centralized class that house the majority
// of all functions the application needs to operate.
nextCheck = new QCheckBox(tr("Play files in directory"));
muteCheck = new QCheckBox(tr("Mute"));
volumeSlider = new QSlider(Qt::Horizontal);
currentFile = new QLabel(tr("Ready"));
audFile = new AudFile(this);
sysTray = 0;
// QMediaPlayer volume range 0-100.
volumeSlider->setMinimum(0);
volumeSlider->setMaximum(100);
volumeSlider->setTracking(true);
currentFile->setWordWrap(true);
QFile file(CONFIG_FILE, this);
bool ok = false;
if (file.open(QFile::ReadOnly))
{
// the CONFIG_FILE is formated in csv so all data is seperated by a ','
// the data will simply not load if the strings are not in exactly the
// same order as it was saved.
// data formats:
// VOLUME = numeric string
// PLAY_DIR_CHECK = string ("Y" or "N")
// MUTE = string ("Y" or "N")
QByteArray confData = file.readAll();
QList<QByteArray> split = confData.split(',');
if (split.size() == 3)
{
int volume = split[VOLUME].toInt(&ok);
if (ok)
{
volumeSlider->setValue(volume);
emit setVolume(volume);
if (split[PLAY_DIR_CHECK] == "Y") nextCheck->setChecked(true);
else nextCheck->setChecked(false);
if (split[MUTE] == "Y") muteCheck->setChecked(true);
else muteCheck->setChecked(false);
}
}
}
if (!ok)
{
// set default values on failure to read the CONFIG_FILE.
emit setVolume(50);
volumeSlider->setValue(50);
nextCheck->setChecked(false);
muteCheck->setChecked(false);
}
file.close();
// it's very important that the player stops playback before closing the application
// or it will cause a crash.
connect(audFile, SIGNAL(endOfPlayback()), this, SLOT(playBackFinished()));
connect(QApplication::instance(), SIGNAL(aboutToQuit()), this, SIGNAL(stop()));
}
Core::~Core()
{
audFile->close();
QFile file(CONFIG_FILE, this);
if (file.open(QFile::WriteOnly | QFile::Truncate))
{
// CONFIG_FILE format:
// [volume],[play_dir_check],[mute]
// data formats:
// VOLUME = numeric string
// PLAY_DIR_CHECK = string ("Y" or "N")
// MUTE = string ("Y" or "N")
file.write(QByteArray::number(volumeSlider->value()));
file.write(",");
if (nextCheck->isChecked()) file.write("Y");
else file.write("N");
file.write(",");
if (muteCheck->isChecked()) file.write("Y");
else file.write("N");
}
file.close();
}
void Core::setFileWatcher(QFileSystemWatcher *watcher)
{
connect(watcher, SIGNAL(fileChanged(QString)), this, SLOT(processfileChanged(QString)));
}
void Core::setPlayer(QMediaPlayer *player)
{
// the Core class does not run funtions directly on the QMediaPlayer
// class that lives in the main function so everything it needs to
// do are connected via slots and signals.
connect(this, SIGNAL(start()), player, SLOT(play()));
connect(this, SIGNAL(pause()), player, SLOT(pause()));
connect(this, SIGNAL(stop()), player, SLOT(stop()));
connect(this, SIGNAL(setMedia(QMediaContent,QIODevice*)), player, SLOT(setMedia(QMediaContent,QIODevice*)));
connect(this, SIGNAL(setVolume(int)), player, SLOT(setVolume(int)));
connect(this, SIGNAL(muteState(bool)), player, SLOT(setMuted(bool)));
connect(player, SIGNAL(stateChanged(QMediaPlayer::State)), this, SLOT(stateChanged(QMediaPlayer::State)));
}
void Core::setTrayIcon(QSystemTrayIcon *tray)
{
// must user interaction will be on the system tray icon for this app.
// this funtion sets up the context menu so the user can have access
// to controls like play, pause, next, previous, etc...
QMenu *contextMenu = new QMenu();
QWidget *volumeWidget = new QWidget();
QHBoxLayout *volumeLayout = new QHBoxLayout(volumeWidget);
QWidgetAction *nextCheckAction = new QWidgetAction(this);
QWidgetAction *muteAction = new QWidgetAction(this);
QWidgetAction *volumeAction = new QWidgetAction(this);
QWidgetAction *fileNameAction = new QWidgetAction(this);
QToolButton *volUpIcon = new QToolButton();
QToolButton *volDownIcon = new QToolButton();
fileNameAction->setDefaultWidget(currentFile);
contextMenu->addAction(fileNameAction);
contextMenu->addSeparator();
playAction = contextMenu->addAction(QIcon(":/png/play"), tr("Play"), this, SIGNAL(start()));
pauseAction = contextMenu->addAction(QIcon(":/png/pause"), tr("Pause"), this, SIGNAL(pause()));
stopAction = contextMenu->addAction(QIcon(":/png/stop"), tr("Stop"), this, SIGNAL(stop()));
sysTray = tray;
volUpIcon->setIcon(QIcon(":/png/volume_up"));
volDownIcon->setIcon(QIcon(":/png/volume_down"));
volumeLayout->addWidget(volDownIcon);
volumeLayout->addWidget(volumeSlider);
volumeLayout->addWidget(volUpIcon);
playAction->setEnabled(false); // play, pause, stop, previous and next are disabled initially.
pauseAction->setEnabled(false); // this will change when an audio file is opened
stopAction->setEnabled(false); // (see stateChanged())
volumeAction->setDefaultWidget(volumeWidget);
nextCheckAction->setDefaultWidget(nextCheck);
muteAction->setDefaultWidget(muteCheck);
contextMenu->addAction(QIcon(":/png/open"), tr("Open"), this, SLOT(openDialog()));
nextAction = contextMenu->addAction(QIcon(":/png/next"), tr("Next"), this, SLOT(nextFile()));
prevAction = contextMenu->addAction(QIcon(":/png/prev"), tr("Previous"), this, SLOT(prevFile()));
nextAction->setEnabled(false);
prevAction->setEnabled(false);
contextMenu->addSeparator();
contextMenu->addAction(nextCheckAction);
contextMenu->addAction(muteAction);
contextMenu->addSeparator();
contextMenu->addAction(volumeAction);
contextMenu->addSeparator();
contextMenu->addAction(tr("License"), this, SLOT(showLicense()));
contextMenu->addAction(tr("Exit"), QApplication::instance(), SLOT(quit()));
tray->setContextMenu(contextMenu);
connect(tray, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(trayClicked(QSystemTrayIcon::ActivationReason)));
connect(muteCheck, SIGNAL(clicked(bool)), this, SIGNAL(muteState(bool)));
connect(volumeSlider, SIGNAL(valueChanged(int)), this, SIGNAL(setVolume(int)));
connect(volUpIcon, SIGNAL(clicked()), this, SLOT(volumeUp()));
connect(volDownIcon, SIGNAL(clicked()), this, SLOT(volumeDown()));
connect(pauseAction, SIGNAL(triggered()), audFile, SLOT(userInterupt()));
connect(stopAction, SIGNAL(triggered()), audFile, SLOT(userInterupt()));
connect(playAction, SIGNAL(triggered()), audFile, SLOT(userResume()));
}
void Core::processfileChanged(const QString &path)
{
Q_UNUSED(path);
QFile file(PROCESS_FILE, this);
if (file.open(QFile::ReadOnly))
{
// expected data from the PROCESS_FILE should just be a directory path
// string to the audio file to be opened. play() will call out an error
// if it fails to open this file.
play(file.readAll().trimmed());
}
file.close();
}
void Core::play(const QString &path)
{
emit stop();
if (audFile->openFile(path))
{
QFileInfo info(path);
currentFile->setText(info.fileName());
if (sysTray)
{
sysTray->setToolTip(QApplication::applicationName() + " " + QApplication::applicationVersion() + " - " + info.fileName());
}
emit setMedia(0, audFile);
emit start();
}
else
{
QMessageBox box;
box.setText(tr("Failed to open file: ") + path);
box.setDetailedText(audFile->errorString());
box.exec();
}
}
void Core::nextFile()
{
fileDir('+');
}
void Core::prevFile()
{
fileDir('-');
}
void Core::fileDir(char direction)
{
// using the current file as a reference, this function will first find out the
// directory the file lives in and then use that directory to list all files within
// it. then using the current file as a reference again, it trys to find it in the
// list of files and then use that file position to find out the next or previous
// file in the directory to play.
// if the reference file no longer exist then it will attempt to play 1st file in the
// directory. if the directory no longer exist then nothing happens.
QFileInfo info(audFile->fileName());
QDir dir(info.path());
QStringList list = dir.entryList(audExtensions(), QDir::Files | QDir::Readable, QDir::Name | QDir::IgnoreCase);
int pos = list.indexOf(info.fileName());
if (!list.isEmpty())
{
if (direction == '+') pos++;
else if (direction == '-') pos--;
if (pos < 0) pos = 0;
if (pos < list.size())
{
play(info.path() + QDir::separator() + list[pos]);
}
}
}
void Core::openDialog()
{
QFileDialog fileDialog;
QString filterString = tr("Audio Files (");
QStringList list = audExtensions();
for (int i = 0; i < list.size(); ++i)
{
filterString.append(list[i] + " ");
}
filterString = filterString.trimmed();
filterString.append(")");
fileDialog.setFileMode(QFileDialog::ExistingFile);
fileDialog.setNameFilter(filterString);
fileDialog.setDirectory(QDir::homePath());
if (fileDialog.exec())
{
play(fileDialog.selectedFiles()[0]);
}
}
void Core::playBackFinished()
{
if (nextCheck->isChecked()) nextFile();
}
void Core::stateChanged(QMediaPlayer::State state)
{
mediaState = state;
switch(state)
{
case QMediaPlayer::PlayingState:
{
playAction->setEnabled(false);
pauseAction->setEnabled(true);
stopAction->setEnabled(true);
prevAction->setEnabled(true);
nextAction->setEnabled(true);
break;
}
case QMediaPlayer::StoppedState:
{
playAction->setEnabled(true);
pauseAction->setEnabled(false);
stopAction->setEnabled(false);
break;
}
case QMediaPlayer::PausedState:
{
playAction->setEnabled(true);
pauseAction->setEnabled(false);
stopAction->setEnabled(true);
break;
}
}
}
void Core::trayClicked(QSystemTrayIcon::ActivationReason reason)
{
if (reason == QSystemTrayIcon::DoubleClick)
{
nextAction->trigger();
}
else if (reason == QSystemTrayIcon::Trigger)
{
if (mediaState == QMediaPlayer::PlayingState)
{
pauseAction->trigger();
}
else if ((mediaState == QMediaPlayer::PausedState) || (mediaState == QMediaPlayer::StoppedState))
{
playAction->trigger();
}
}
}
void Core::volumeDown()
{
volumeSlider->setValue(volumeSlider->value() - 4);
}
void Core::volumeUp()
{
volumeSlider->setValue(volumeSlider->value() + 4);
}
void Core::showLicense()
{
QDialog dialog;
QFile file(":/gpl", this);
file.open(QFile::ReadOnly);
QPlainTextEdit *text = new QPlainTextEdit(file.readAll());
QVBoxLayout *layout = new QVBoxLayout(&dialog);
QRect rect = QApplication::desktop()->screenGeometry();
layout->addWidget(text);
text->setReadOnly(true);
text->setWordWrapMode(QTextOption::WrapAtWordBoundaryOrAnywhere);
file.close();
dialog.setMinimumWidth(rect.width() / 4);
dialog.setMinimumHeight(rect.height() - (rect.height() / 6));
dialog.exec();
}
QStringList Core::audExtensions()
{
QStringList ret;
// the media plugins are not checked for file format support. this is just an arbitrary list
// of audio file extentions that are used when filtering for files to play. if a file fails
// to play, the application will remain in silence or move on to the next file if nextCheck
// is enabled.
ret.append("*.mp3");
ret.append("*.ogg");
ret.append("*.flac");
ret.append("*.wav");
ret.append("*.au");
ret.append("*.aif");
ret.append("*.mid");
ret.append("*.rmi");
ret.append("*.m4a");
ret.append("*.aiff");
ret.append("*.ape");
ret.append("*.wv");
ret.append("*.3gp");
ret.append("*.aa");
ret.append("*.aac");
ret.append("*.aax");
ret.append("*.act");
ret.append("*.amr");
ret.append("*.au");
ret.append("*.awb");
ret.append("*.dct");
ret.append("*.gsm");
ret.append("*.m4b");
ret.append("*.oga");
ret.append("*.mogg");
ret.append("*.ra");
ret.append("*.rm");
ret.append("*.raw");
return ret;
}

View File

@ -1 +1 @@
IDI_ICON1 ICON DISCARDABLE "logo.ico"
IDI_ICON1 ICON DISCARDABLE "logo.ico"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

35
res.qrc
View File

@ -1,17 +1,18 @@
<RCC>
<qresource prefix="/png">
<file alias="logo">png/logo.png</file>
<file alias="open">png/open.png</file>
<file alias="pause">png/pause.png</file>
<file alias="play">png/play.png</file>
<file alias="menu">png/menu.png</file>
<file alias="next">png/next.png</file>
<file alias="prev">png/prev.png</file>
<file alias="stop">png/stop.png</file>
<file alias="volume_up">png/volume_up.png</file>
<file alias="volume_down">png/volume_down.png</file>
</qresource>
<qresource prefix="/">
<file alias="gpl">GPL.txt</file>
</qresource>
</RCC>
<RCC>
<qresource prefix="/">
<file>svg/levels.svg</file>
<file>svg/logo.svg</file>
<file>svg/mute_active.svg</file>
<file>svg/mute_inactive.svg</file>
<file>svg/next.svg</file>
<file>svg/open.svg</file>
<file>svg/pause_active.svg</file>
<file>svg/pause_inactive.svg</file>
<file>svg/play_active.svg</file>
<file>svg/play_inactive.svg</file>
<file>svg/playlist_active.svg</file>
<file>svg/playlist_inactive.svg</file>
<file>svg/prev.svg</file>
<file>svg/stop.svg</file>
</qresource>
</RCC>

View File

@ -30,7 +30,7 @@ AudFile::AudFile(QObject *parent) : QFile(parent)
timer->setSingleShot(true);
connect(timer, SIGNAL(timeout()), this, SIGNAL(endOfPlayback()));
connect(timer, &QTimer::timeout, this, &AudFile::endOfPlayback);
}
AudFile::~AudFile()

365
src/core.cpp Normal file
View File

@ -0,0 +1,365 @@
#include "core.h"
// This file is part of JustAudio.
// JustAudio is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// JustAudio is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with BashWire under the GPL.txt file. If not, see
// <http://www.gnu.org/licenses/>.
Core::Core(QObject *parent, QStringList *filesup) : QObject(parent)
{
// the Core class acts as a non-gui centralized class that house the majority
// of all functions the application needs to operate.
exts = filesup;
}
Core::~Core()
{
// this simply writes the current state of volume, the dir check box and mute
// options to persistant storage so the application can reload the same state
// on startup.
emit stop();
QFile file(CONFIG_FILE, this);
if (file.open(QFile::WriteOnly | QFile::Truncate))
{
// CONFIG_FILE format:
// [volume],[play_dir_check],[mute]
// data formats:
// VOLUME = numeric string
// PLAY_DIR_CHECK = string ("Y" or "N")
// MUTE = string ("Y" or "N")
file.write(QByteArray::number(volumeSlider->value()));
file.write(",");
if (playDirAction->isChecked()) file.write("Y");
else file.write("N");
file.write(",");
if (muteAction->isChecked()) file.write("Y");
else file.write("N");
}
file.close();
}
void Core::setFileWatcher(QFileSystemWatcher *watcher)
{
connect(watcher, SIGNAL(fileChanged(QString)), this, SLOT(processfileChanged(QString)));
}
void Core::setPlayer(QMediaPlayer *player)
{
// the Core class does not run funtions directly on the QMediaPlayer
// class that lives in the main function so everything it needs to
// do are connected via slots and signals.
mplayer = player;
connect(this, &Core::start, mplayer, &QMediaPlayer::play);
connect(this, &Core::pause, mplayer, &QMediaPlayer::pause);
connect(this, &Core::stop, mplayer, &QMediaPlayer::stop);
connect(this, &Core::setFile, mplayer, &QMediaPlayer::setSource);
connect(this, &Core::setSeek, mplayer, &QMediaPlayer::setPosition);
connect(mplayer, &QMediaPlayer::playbackStateChanged, this, &Core::stateChanged);
connect(mplayer, &QMediaPlayer::mediaStatusChanged, this, &Core::statusChanged);
connect(mplayer, &QMediaPlayer::positionChanged, this, &Core::setPosition);
}
void Core::setAudioOutput(QAudioOutput *audoOut)
{
// same as setPlayer() except this connects all slots/signals
// specific to QAudioOutput.
if (audoOut != nullptr)
{
blockSignals(false);
connect(this, &Core::setVol, audoOut, &QAudioOutput::setVolume);
connect(this, &Core::muteState, audoOut, &QAudioOutput::setMuted);
}
else
{
// audo playback won't be possible without a valid
// AudioOutput object so all core signals will be blocked
// to prevent undefined behaviour.
blockSignals(true);
}
}
void Core::updateSeekDisp()
{
seekDisp->setText(QString::number(mplayer->position()) + "/" + QString::number(mplayer->duration()));
}
void Core::setGuiActions(QAction *playAct, QAction *pauseAct, QAction *stopAct, QAction *nextAct, QAction *prevAct, QAction *muteAct, QAction *dir)
{
// the core class will not interact directly with the GUI, instead all actions are
// abstracted via various QAction classes passed onto it from the main function.
playAction = playAct;
pauseAction = pauseAct;
stopAction = stopAct;
nextAction = nextAct;
prevAction = prevAct;
muteAction = muteAct;
playDirAction = dir;
tracking = true;
connect(playAction, &QAction::triggered, this, &Core::start);
connect(pauseAction, &QAction::triggered, this, &Core::pause);
connect(stopAction, &QAction::triggered, this, &Core::stop);
connect(nextAction, &QAction::triggered, this, &Core::nextFile);
connect(prevAction, &QAction::triggered, this, &Core::prevFile);
connect(muteAction, &QAction::triggered, this, &Core::muteState);
playAction->setEnabled(false); // play, pause, stop, previous and next are disabled initially.
pauseAction->setEnabled(false); // this will change when an audio file is opened
stopAction->setEnabled(false); // (see stateChanged())
nextAction->setEnabled(false);
prevAction->setEnabled(false);
}
void Core::setGuiElements(QSlider *volSlider, QSlider *skSlider, QLabel *nameDisp, QLabel *seekLabel)
{
volumeSlider = volSlider;
seekSlider = skSlider;
currentFile = nameDisp;
seekDisp = seekLabel;
connect(seekSlider, &QSlider::sliderPressed, this, &Core::seekerPress);
connect(seekSlider, &QSlider::sliderReleased, this, &Core::seekerRelease);
connect(volumeSlider, &QSlider::valueChanged, this, &Core::setVolume);
connect(mplayer, &QMediaPlayer::durationChanged, this, &Core::setDuration);
// QMediaPlayer volume range 0-100.
seekSlider->setMinimum(0);
seekSlider->setMaximum(0);
volumeSlider->setMinimum(0);
volumeSlider->setMaximum(100);
currentFile->setWordWrap(true);
QFile file(CONFIG_FILE, this);
bool ok = false;
if (file.open(QFile::ReadOnly))
{
// the CONFIG_FILE is formated in csv so all data is seperated by a ','
// the data will simply not load if the strings are not in exactly the
// same order as it was saved.
// data formats:
// VOLUME = numeric string
// PLAY_DIR_CHECK = string ("Y" or "N")
// MUTE = string ("Y" or "N")
auto confData = file.readAll();
auto params = confData.split(',');
if (params.size() == 3)
{
int volume = params[VOLUME].toInt(&ok);
if (ok)
{
volumeSlider->setValue(volume);
setVolume(volume);
if (params[PLAY_DIR_CHECK] == "Y") emit playDirAction->triggered(true);
else emit playDirAction->triggered(false);
if (params[MUTE] == "Y") emit muteAction->triggered(true);
else emit muteAction->triggered(false);
}
}
}
if (!ok)
{
// set default values on failure to read the CONFIG_FILE.
setVolume(50);
emit playDirAction->triggered(false);
emit muteAction->triggered(false);
volumeSlider->setValue(50);
}
file.close();
}
void Core::processfileChanged(const QString &path)
{
Q_UNUSED(path);
QFile file(PROCESS_FILE, this);
if (file.open(QFile::ReadOnly))
{
// expected data from the PROCESS_FILE should just be a directory path
// string to the audio file to be opened. play() will call out an error
// if it fails to open this file.
play(file.readAll().trimmed());
}
file.close();
}
void Core::seekerPress()
{
tracking = false;
}
void Core::seekerRelease()
{
emit setSeek(seekSlider->value());
tracking = true;
}
void Core::setDuration(int dur)
{
seekSlider->setMaximum(dur);
updateSeekDisp();
}
void Core::setPosition(int pos)
{
if (tracking) seekSlider->setValue(pos);
updateSeekDisp();
}
void Core::setVolume(int intValue)
{
emit setVol(static_cast<float>(intValue) / static_cast<float>(volumeSlider->maximum()) * static_cast<float>(1));
}
void Core::play(const QString &path)
{
emit stop();
currentFile->setText(QFileInfo(path).fileName());
emit setFile(QUrl::fromLocalFile(path));
emit start();
}
void Core::nextFile()
{
fileDir('+');
}
void Core::prevFile()
{
fileDir('-');
}
void Core::fileDir(char direction)
{
// using the current file as a reference, this function will first find out the
// directory the file lives in and then use that directory to list all files within
// it. then using the current file as a reference again, it trys to find it in the
// list of files and then use that file position to find out the next or previous
// file in the directory to play.
// if the reference file no longer exist then it will attempt to play 1st file in the
// directory. if the directory no longer exist then nothing happens.
QFileInfo info(mplayer->source().path());
QDir dir(info.path());
auto list = dir.entryList(*exts, QDir::Files | QDir::Readable, QDir::Name | QDir::IgnoreCase);
auto pos = list.indexOf(info.fileName());
if (!list.isEmpty())
{
if (direction == '+') pos++;
else if (direction == '-') pos--;
if (pos < 0) pos = 0;
if (pos < list.size())
{
play(info.path() + QDir::separator() + list[pos]);
}
}
}
void Core::stateChanged(QMediaPlayer::PlaybackState state)
{
switch(state)
{
case QMediaPlayer::PlayingState:
{
playAction->setEnabled(false);
pauseAction->setEnabled(true);
stopAction->setEnabled(true);
prevAction->setEnabled(true);
nextAction->setEnabled(true);
break;
}
case QMediaPlayer::StoppedState:
{
playAction->setEnabled(true);
pauseAction->setEnabled(false);
stopAction->setEnabled(false);
break;
}
case QMediaPlayer::PausedState:
{
playAction->setEnabled(true);
pauseAction->setEnabled(false);
stopAction->setEnabled(true);
break;
}
}
}
void Core::statusChanged(QMediaPlayer::MediaStatus state)
{
if (state == QMediaPlayer::EndOfMedia)
{
if (playDirAction->isChecked()) nextFile();
}
}
void Core::volumeDown()
{
volumeSlider->setValue(volumeSlider->value() - 5);
setVolume(volumeSlider->value());
}
void Core::volumeUp()
{
volumeSlider->setValue(volumeSlider->value() + 5);
setVolume(volumeSlider->value());
}

View File

@ -19,32 +19,22 @@
#include <QAction>
#include <QObject>
#include <QMediaContent>
#include <QMediaPlayer>
#include <QIODevice>
#include <QMessageBox>
#include <QAudioOutput>
#include <QStringList>
#include <QFileInfo>
#include <QList>
#include <QFileDialog>
#include <QAction>
#include <QIcon>
#include <QSystemTrayIcon>
#include <QMediaPlayer>
#include <QFileSystemWatcher>
#include <QMenu>
#include <QApplication>
#include <QCheckBox>
#include <QWidgetAction>
#include <QSlider>
#include <QHBoxLayout>
#include <QLabel>
#include <QToolButton>
#include <QDialog>
#include <QVBoxLayout>
#include <QPlainTextEdit>
#include <QTextOption>
#include <QDesktopWidget>
#include <QRect>
#include <QDir>
#include "aud_file.h"
@ -65,43 +55,49 @@ private:
MUTE
};
AudFile *audFile;
QAction *playAction;
QAction *pauseAction;
QAction *stopAction;
QAction *nextAction;
QAction *prevAction;
QCheckBox *nextCheck;
QCheckBox *muteCheck;
QSlider *volumeSlider;
QLabel *currentFile;
QSystemTrayIcon *sysTray;
int mediaState;
QMediaPlayer *mplayer;
QAction *playAction;
QAction *pauseAction;
QAction *stopAction;
QAction *nextAction;
QAction *prevAction;
QAction *muteAction;
QAction *playDirAction;
QSlider *volumeSlider;
QSlider *seekSlider;
QLabel *currentFile;
QLabel *seekDisp;
QStringList *exts;
bool tracking;
void fileDir(char direction);
QStringList audExtensions();
void updateSeekDisp();
void fileDir(char direction);
private slots:
void trayClicked(QSystemTrayIcon::ActivationReason reason);
void stateChanged(QMediaPlayer::State state);
void statusChanged(QMediaPlayer::MediaStatus state);
void stateChanged(QMediaPlayer::PlaybackState state);
void processfileChanged(const QString &path);
void setDuration(int dur);
void setPosition(int pos);
void setVolume(int lvl);
void nextFile();
void prevFile();
void playBackFinished();
void openDialog();
void volumeUp();
void volumeDown();
void showLicense();
void seekerPress();
void seekerRelease();
public:
void setTrayIcon(QSystemTrayIcon *tray);
void setPlayer(QMediaPlayer *player);
void setAudioOutput(QAudioOutput *audoOut);
void setFileWatcher(QFileSystemWatcher *watcher);
void setGuiActions(QAction *playAct, QAction *pauseAct, QAction *stopAct, QAction *nextAct, QAction *prevAct, QAction *muteAct, QAction *dir);
void setGuiElements(QSlider *volSlider, QSlider *skSlider, QLabel *nameDisp, QLabel *seekLabel);
void play(const QString &path);
Core(QObject *parent = 0);
Core(QObject *parent, QStringList *filesup);
~Core();
signals:
@ -109,8 +105,9 @@ signals:
void start();
void pause();
void stop();
void setMedia(const QMediaContent &media, QIODevice *stream);
void setVolume(int value);
void setSeek(qint64 pos);
void setFile(const QUrl &url);
void setVol(float value);
void muteState(bool state);
};

159
src/gui.cpp Normal file
View File

@ -0,0 +1,159 @@
#include "gui.h"
// This file is part of JustAudio.
// JustAudio is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// JustAudio is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with BashWire under the GPL.txt file. If not, see
// <http://www.gnu.org/licenses/>.
GUI::GUI(QApplication *app, QStringList *filesup, QWidget *parent): QMainWindow(parent)
{
Q_UNUSED(app);
exts = filesup;
setup();
}
void GUI::openDialog()
{
QFileDialog fileDialog;
QString filterString = tr("Audio Files (");
for (int i = 0; i < exts->size(); ++i)
{
filterString.append(exts->value(i) + " ");
}
filterString = filterString.trimmed();
filterString.append(")");
fileDialog.setFileMode(QFileDialog::ExistingFile);
fileDialog.setNameFilter(filterString);
fileDialog.setDirectory(QDir::homePath());
if (fileDialog.exec())
{
emit openFile(fileDialog.selectedFiles()[0]);
}
}
void GUI::setup()
{
auto mainWidget = new QWidget(this);
auto mainLayout = new QVBoxLayout(mainWidget);
auto seekWidget = new QWidget(this);
auto seekLayout = new QHBoxLayout(seekWidget);
auto contWidget = new QWidget(this);
auto contLayout = new QHBoxLayout(contWidget);
auto voluWidget = new QWidget(this);
auto voluLayout = new QVBoxLayout(voluWidget);
auto volWidActi = new QWidgetAction(this);
auto volumeMenu = new QMenu(this);
seeker = new QSlider(this);
volSlide = new QSlider(this);
seekLabel = new QLabel(this);
fileDisp = new QLabel(this);
playBtn = new SVGIcon("play", tr("Play"), true, this);
pauseBtn = new SVGIcon("pause", tr("Pause"), true, this);
stopBtn = new SVGIcon("stop", tr("Stop"), false, this);
prevBtn = new SVGIcon("prev", tr("Previous file in dir"), false, this);
nextBtn = new SVGIcon("next", tr("Next file in dir"), false, this);
openBtn = new SVGIcon("open", tr("Open"), false, this);
muteBtn = new SVGIcon("mute", tr("Mute"), true, this);
dirBtn = new SVGIcon("playlist", tr("Play files in dir"), true, this);
lvlsBtn = new SVGIcon("levels", tr("Volume level"), false, this);
auto fnt = seekLabel->font();
fnt.setPointSize(5);
fileDisp->setWordWrap(true);
fileDisp->setFixedWidth(288);
seeker->setOrientation(Qt::Horizontal);
seeker->setFixedWidth(288);
seekLabel->setFont(fnt);
volSlide->setOrientation(Qt::Vertical);
lvlsBtn->setMenu(volumeMenu);
seekLayout->addWidget(seeker);
seekLayout->addWidget(seekLabel);
voluLayout->addWidget(new QLabel("+", this));
voluLayout->addWidget(volSlide);
voluLayout->addWidget(new QLabel("-", this));
volWidActi->setDefaultWidget(voluWidget);
volumeMenu->addAction(volWidActi);
contLayout->addWidget(playBtn);
contLayout->addWidget(pauseBtn);
contLayout->addWidget(stopBtn);
contLayout->addWidget(prevBtn);
contLayout->addWidget(nextBtn);
contLayout->addWidget(dirBtn);
contLayout->addWidget(openBtn);
contLayout->addWidget(muteBtn);
contLayout->addWidget(lvlsBtn);
mainLayout->addWidget(fileDisp, 0, Qt::AlignHCenter);
mainLayout->addWidget(seekWidget, 0, Qt::AlignHCenter);
mainLayout->addWidget(contWidget, 0, Qt::AlignHCenter);
connect(openBtn->defaultAction(), &QAction::triggered, this, &GUI::openDialog);
connect(dirBtn->defaultAction(), &QAction::triggered, nextBtn, &QToolButton::setEnabled);
connect(dirBtn->defaultAction(), &QAction::triggered, prevBtn, &QToolButton::setEnabled);
setCentralWidget(mainWidget);
}
QLabel *GUI::seekDisp() {return seekLabel;}
QLabel *GUI::fileName() {return fileDisp;}
QSlider *GUI::seek() {return seeker;}
QSlider *GUI::volume() {return volSlide;}
QAction *GUI::play() {return playBtn->defaultAction();}
QAction *GUI::pause() {return pauseBtn->defaultAction();}
QAction *GUI::stop() {return stopBtn->defaultAction();}
QAction *GUI::prev() {return prevBtn->defaultAction();}
QAction *GUI::next() {return nextBtn->defaultAction();}
QAction *GUI::mute() {return muteBtn->defaultAction();}
QAction *GUI::dir() {return nextBtn->defaultAction();}
void GUI::showLicense()
{
QDialog dialog;
QFile file(":/gpl", this);
file.open(QFile::ReadOnly);
QPlainTextEdit *text = new QPlainTextEdit(file.readAll());
QVBoxLayout *layout = new QVBoxLayout(&dialog);
QRect rect = QApplication::primaryScreen()->geometry();
layout->addWidget(text);
text->setReadOnly(true);
text->setWordWrapMode(QTextOption::WrapAtWordBoundaryOrAnywhere);
file.close();
dialog.setMinimumWidth(rect.width() / 4);
dialog.setMinimumHeight(rect.height() - (rect.height() / 6));
dialog.exec();
}

92
src/gui.h Normal file
View File

@ -0,0 +1,92 @@
#ifndef GUI_H
#define GUI_H
// This file is part of JustAudio.
// JustAudio is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// JustAudio is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with BashWire under the GPL.txt file. If not, see
// <http://www.gnu.org/licenses/>.
#include <QMainWindow>
#include <QAction>
#include <QFileDialog>
#include <QCheckBox>
#include <QLabel>
#include <QSlider>
#include <QMenu>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QWidgetAction>
#include <QWidget>
#include <QToolButton>
#include <QPlainTextEdit>
#include <QRect>
#include <QApplication>
#include <QCursor>
#include <QIcon>
#include <QMouseEvent>
#include <QPixmap>
#include "svg_icon.h"
class GUI : public QMainWindow
{
Q_OBJECT
private slots:
void openDialog();
void showLicense();
private:
QStringList *exts;
QLabel *fileDisp;
QLabel *seekLabel;
QSlider *seeker;
QSlider *volSlide;
QMenu *volumeMenu;
SVGIcon *playBtn;
SVGIcon *pauseBtn;
SVGIcon *stopBtn;
SVGIcon *prevBtn;
SVGIcon *nextBtn;
SVGIcon *muteBtn;
SVGIcon *openBtn;
SVGIcon *dirBtn;
SVGIcon *lvlsBtn;
void setup();
public:
explicit GUI(QApplication *app, QStringList *filesup, QWidget *parent = nullptr);
QAction *play();
QAction *pause();
QAction *stop();
QAction *next();
QAction *prev();
QAction *mute();
QAction *dir();
QSlider *volume();
QSlider *seek();
QLabel *fileName();
QLabel *seekDisp();
signals:
void openFile(const QString &path);
};
#endif // GUI_H

View File

@ -10,6 +10,7 @@
#include "aud_file.h"
#include "core.h"
#include "gui.h"
// This file is part of JustAudio.
@ -27,13 +28,53 @@
// along with BashWire under the GPL.txt file. If not, see
// <http://www.gnu.org/licenses/>.
QStringList audExtensions()
{
QStringList ret;
// the media plugins are not checked for file format support. this is just an arbitrary list
// of audio file extentions that are used when filtering for files to play. if a file fails
// to play, the application will remain in silence or move on to the next file if nextCheck
// is enabled.
ret.append("*.mp3");
ret.append("*.ogg");
ret.append("*.flac");
ret.append("*.wav");
ret.append("*.au");
ret.append("*.aif");
ret.append("*.mid");
ret.append("*.rmi");
ret.append("*.m4a");
ret.append("*.aiff");
ret.append("*.ape");
ret.append("*.wv");
ret.append("*.3gp");
ret.append("*.aa");
ret.append("*.aac");
ret.append("*.aax");
ret.append("*.act");
ret.append("*.amr");
ret.append("*.au");
ret.append("*.awb");
ret.append("*.dct");
ret.append("*.gsm");
ret.append("*.m4b");
ret.append("*.oga");
ret.append("*.mogg");
ret.append("*.ra");
ret.append("*.rm");
ret.append("*.raw");
return ret;
}
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
app.setApplicationName("JustAudio");
app.setApplicationVersion("1.0.0");
app.setQuitOnLastWindowClosed(false);
QString path = QDir::homePath() + QDir::separator();
@ -71,25 +112,33 @@ int main(int argc, char *argv[])
// QSharedMemory::create() returns false if that is the case and true if not.
// if an instance of the app is already runnning, the requested file path to playback
// is written to PROCESS_FILE, that modification to the file is picked up by
// QFileSystemWatcher and then read by the currently running instance and starts
// QFileSystemWatcher will then read by the currently running instance and starts
// playback of the file path written to PROCESS_FILE.
QSharedMemory sharedMem(app.applicationName(), &app);
if (sharedMem.create(SEGMENT_SIZE))
if (true)//sharedMem.create(SEGMENT_SIZE))
{
QFileSystemWatcher processFileWatcher(&app);
QSystemTrayIcon trayIcon(&app);
QMediaPlayer player(&app);
Core core(&app);
auto exts = audExtensions();
QFileSystemWatcher processFileWatcher(&app);
GUI gui(&app, &exts);
QMediaPlayer player(&app);
QAudioOutput audio(&app);
Core core(&app, &exts);
player.setAudioOutput(&audio);
core.setFileWatcher(&processFileWatcher);
core.setPlayer(&player);
core.setTrayIcon(&trayIcon);
core.setAudioOutput(&audio);
core.setGuiActions(gui.play(), gui.pause(), gui.stop(), gui.next(), gui.prev(), gui.mute(), gui.dir());
core.setGuiElements(gui.volume(), gui.seek(), gui.fileName(), gui.seekDisp());
processFileWatcher.addPath(PROCESS_FILE);
trayIcon.setToolTip(app.applicationName() + " " + app.applicationVersion());
trayIcon.setIcon(QIcon(":/png/logo"));
trayIcon.show();
QObject::connect(&gui, &GUI::openFile, &core, &Core::play);
gui.show();
if (app.arguments().size() > 1)
{

126
src/svg_icon.cpp Normal file
View File

@ -0,0 +1,126 @@
#include "svg_icon.h"
// This file is part of JustAudio.
// JustAudio is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// JustAudio is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with BashWire under the GPL.txt file. If not, see
// <http://www.gnu.org/licenses/>.
SVGIcon::SVGIcon(const QString &name, const QString &desc, bool toggle, QWidget *parent) : QToolButton(parent)
{
auto action = new QAction(this);
setObjectName(name);
setMinimumHeight(32);
setMinimumWidth(32);
setToolTip(desc);
setToolButtonStyle(Qt::ToolButtonIconOnly);
setPopupMode(QToolButton::InstantPopup);
setCursor(Qt::PointingHandCursor);
action->setCheckable(toggle);
connect(action, &QAction::enabledChanged, this, &SVGIcon::enabledChanged);
connect(action, &QAction::triggered, this, &SVGIcon::clickedInternal);
setDefaultAction(action);
setActiveAppearance();
}
void SVGIcon::setInactiveAppearance()
{
loadSvgFile(":/svg/" + objectName() + "_inactive.svg");
}
void SVGIcon::setActiveAppearance()
{
if (defaultAction()->isCheckable())
{
loadSvgFile(":/svg/" + objectName() + "_active.svg");
}
else
{
loadSvgFile(":/svg/" + objectName() + ".svg");
}
}
void SVGIcon::enabledChanged(bool state)
{
if (defaultAction()->isCheckable())
{
if (state) setActiveAppearance();
else setInactiveAppearance();
}
else
{
setHidden(!state);
}
}
void SVGIcon::clickedInternal()
{
if (defaultAction()->isCheckable())
{
if (defaultAction()->isChecked()) setActiveAppearance();
else setInactiveAppearance();
}
}
void SVGIcon::paintEvent(QPaintEvent *)
{
QPainter painter(this);
QSvgRenderer svg(localData, this);
svg.render(&painter);
}
void SVGIcon::loadSvgFile(const QString &path)
{
fileCopy(path);
update();
}
void SVGIcon::fileCopy(const QString &path)
{
QFile file(path, this);
if (file.open(QFile::ReadOnly))
{
auto data = file.readAll();
QXmlStreamReader xml(data);
while (!xml.atEnd())
{
xml.readNext();
if (xml.hasError()) break;
}
if (xml.hasError())
{
qDebug() << tr("Invalid svg image (xml parse error)");
}
else
{
localData = data;
}
}
else
{
qDebug() << tr("Unable to read file: ") + path;
}
file.close();
}

54
src/svg_icon.h Normal file
View File

@ -0,0 +1,54 @@
#ifndef ICON_H
#define ICON_H
// This file is part of JustAudio.
// JustAudio is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// JustAudio is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with BashWire under the GPL.txt file. If not, see
// <http://www.gnu.org/licenses/>.
#include <QWidget>
#include <QSvgRenderer>
#include <QPainter>
#include <QPaintEvent>
#include <QToolButton>
#include <QFile>
#include <QXmlStreamReader>
#include <QDebug>
#include <QAction>
class SVGIcon : public QToolButton
{
Q_OBJECT
private slots:
void enabledChanged(bool state);
void clickedInternal();
private:
QByteArray localData;
void setInactiveAppearance();
void setActiveAppearance();
void loadSvgFile(const QString &path);
void paintEvent(QPaintEvent *);
void fileCopy(const QString &path);
public:
explicit SVGIcon(const QString &name, const QString &desc, bool toggle, QWidget *parent = 0);
};
#endif // ICON_H

170
svg/levels.svg Normal file
View File

@ -0,0 +1,170 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#9b3b3b" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#928585" d="M 120.8 48.8L 120.8 49.6L 124.8 49.6C 123.385 48.9768 122.371 48.8701 120.8 48.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 118.4 49.6L 119.2 50.4L 118.4 49.6z"/>
<path style="stroke:none; fill:#ffffff" d="M 111.2 90.4C 94.8888 90.4 74.2342 86.9768 58.4 90.8264C 50.6762 92.7048 47.3171 102.047 51.2716 108.788C 54.8819 114.942 61.8181 114.4 68 114.4L 111.2 114.4C 111.2 123.865 108.046 140.275 112.366 148.797C 116.399 156.754 128.638 157.496 133.142 149.528C 137.78 141.322 134.4 123.73 134.4 114.4L 308 114.4C 321.393 114.4 338.189 117.138 351.2 113.974C 356.697 112.637 359.975 107.927 359.975 102.4C 359.975 96.8728 356.697 92.1632 351.2 90.8264C 338.189 87.6624 321.393 90.4 308 90.4L 134.4 90.4C 134.4 81.0696 137.78 63.4784 133.142 55.2722C 128.638 47.3042 116.399 48.0455 112.366 56.0031C 108.046 64.5252 111.2 80.9352 111.2 90.4z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 126.4 49.6L 127.2 50.4L 126.4 49.6z"/>
<path style="stroke:none; fill:#bababa" d="M 116.8 50.4L 117.6 51.2L 116.8 50.4z"/>
<path style="stroke:none; fill:#928585" d="M 115.2 51.2L 116 52L 115.2 51.2z"/>
<path style="stroke:none; fill:#aeaeae" d="M 129.6 51.2L 130.4 52L 129.6 51.2z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 114.4 52L 115.2 52.8L 114.4 52z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 130.4 52L 131.2 52.8L 130.4 52z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 113.6 52.8L 114.4 53.6L 113.6 52.8z"/>
<path style="stroke:none; fill:#948a8a" d="M 112.8 53.6L 113.6 54.4L 112.8 53.6z"/>
<path style="stroke:none; fill:#bababa" d="M 132 53.6L 132.8 54.4L 132 53.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 132.8 54.4L 133.6 55.2L 132.8 54.4z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 112 55.2L 112.8 56L 112 55.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 133.6 56L 134.4 56.8L 133.6 56z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 111.2 56.8L 112 57.6L 111.2 56.8z"/>
<path style="stroke:none; fill:#c3c3c3" d="M 134.666 58.9334C 134.622 58.9777 134.578 59.8222 134.934 59.4666C 134.978 59.4221 135.022 58.5779 134.666 58.9334M 110.4 59.2L 110.4 90.4L 111.2 90.4C 111.2 81.4624 113.849 67.4192 110.4 59.2z"/>
<path style="stroke:none; fill:#f5f5f5" d="M 134.4 60L 134.4 90.4L 135.2 90.4C 135.2 81.6712 137.769 68.0287 134.4 60z"/>
<path style="stroke:none; fill:#854949" d="M 60 89.6L 60 90.4L 110.4 90.4C 105.834 88.484 99.3232 89.6 94.4 89.6L 60 89.6M 135.2 89.6L 135.2 90.4L 349.6 90.4C 344.065 88.0776 335.584 89.6 329.6 89.6L 286.4 89.6L 135.2 89.6z"/>
<path style="stroke:none; fill:#aeaeae" d="M 57.6 90.4L 58.4 91.2L 57.6 90.4M 351.2 90.4L 352 91.2L 351.2 90.4z"/>
<path style="stroke:none; fill:#897373" d="M 353.6 91.2L 354.4 92L 353.6 91.2z"/>
<path style="stroke:none; fill:#948a8a" d="M 50.4 96L 51.2 96.8L 50.4 96z"/>
<path style="stroke:none; fill:#928585" d="M 358.4 96L 359.2 96.8L 358.4 96z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 49.6 97.6L 50.4 98.4L 49.6 97.6z"/>
<path style="stroke:none; fill:#928585" d="M 359.2 97.6L 360 98.4L 359.2 97.6z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 49.6 98.4L 50.4 99.2L 49.6 98.4z"/>
<path style="stroke:none; fill:#948a8a" d="M 48.8 100.8L 48.8 104L 49.6 104C 49.4607 102.652 49.3465 102.005 48.8 100.8z"/>
<path style="stroke:none; fill:#928585" d="M 360 100.8L 360 104L 360.8 104C 360.661 102.652 360.546 102.005 360 100.8z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 49.6 105.6L 50.4 106.4L 49.6 105.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 49.6 106.4L 50.4 107.2L 49.6 106.4z"/>
<path style="stroke:none; fill:#928585" d="M 359.2 106.4L 360 107.2L 359.2 106.4M 50.4 108L 51.2 108.8L 50.4 108M 358.4 108L 359.2 108.8L 358.4 108z"/>
<path style="stroke:none; fill:#897373" d="M 353.6 112.8L 354.4 113.6L 353.6 112.8z"/>
<path style="stroke:none; fill:#aeaeae" d="M 57.6 113.6L 58.4 114.4L 57.6 113.6M 351.2 113.6L 352 114.4L 351.2 113.6z"/>
<path style="stroke:none; fill:#854949" d="M 60 114.4L 60 115.2L 110.4 115.2C 105.834 113.284 99.3232 114.4 94.4 114.4L 60 114.4z"/>
<path style="stroke:none; fill:#c3c3c3" d="M 110.4 114.4L 110.4 145.6L 111.2 145.6C 111.2 136.662 113.849 122.619 110.4 114.4z"/>
<path style="stroke:none; fill:#f5f5f5" d="M 134.4 114.4L 134.4 144.8L 135.2 144.8C 135.2 136.071 137.769 122.429 134.4 114.4z"/>
<path style="stroke:none; fill:#854949" d="M 135.2 114.4L 135.2 115.2L 349.6 115.2C 344.065 112.878 335.584 114.4 329.6 114.4L 286.4 114.4L 135.2 114.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 134.666 145.334C 134.622 145.378 134.578 146.222 134.934 145.866C 134.978 145.822 135.022 144.978 134.666 145.334z"/>
<path style="stroke:none; fill:#c3c3c3" d="M 111.2 147.2L 112 148L 111.2 147.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 133.6 148L 134.4 148.8L 133.6 148z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 112 148.8L 112.8 149.6L 112 148.8z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 132.8 149.6L 133.6 150.4L 132.8 149.6z"/>
<path style="stroke:none; fill:#948a8a" d="M 112.8 150.4L 113.6 151.2L 112.8 150.4z"/>
<path style="stroke:none; fill:#bababa" d="M 132 150.4L 132.8 151.2L 132 150.4z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 113.6 151.2L 114.4 152L 113.6 151.2z"/>
<path style="stroke:none; fill:#928585" d="M 284.8 151.2L 284.8 152L 288 152C 286.795 151.454 286.148 151.339 284.8 151.2z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 114.4 152L 115.2 152.8L 114.4 152z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 130.4 152L 131.2 152.8L 130.4 152z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 282.4 152L 283.2 152.8L 282.4 152z"/>
<path style="stroke:none; fill:#ffffff" d="M 275.2 192.8L 101.6 192.8C 88.2072 192.8 71.4115 190.062 58.4 193.226C 52.9634 194.549 49.6642 199.305 49.6642 204.8C 49.6642 210.295 52.9634 215.051 58.4 216.374C 71.4115 219.538 88.2072 216.8 101.6 216.8L 275.2 216.8C 275.2 226.099 271.807 243.76 276.458 251.926C 280.979 259.864 293.218 259.122 297.234 251.197C 301.554 242.675 298.4 226.265 298.4 216.8C 314.969 216.8 334.107 219.478 350.4 216.537C 358.177 215.132 362.425 206.284 358.834 199.203C 355.374 192.379 348.148 192.8 341.6 192.8L 298.4 192.8C 298.4 183.335 301.554 166.925 297.234 158.403C 293.218 150.478 280.979 149.736 276.458 157.674C 271.807 165.84 275.2 183.501 275.2 192.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 290.4 152L 291.2 152.8L 290.4 152z"/>
<path style="stroke:none; fill:#928585" d="M 115.2 152.8L 116 153.6L 115.2 152.8z"/>
<path style="stroke:none; fill:#aeaeae" d="M 129.6 152.8L 130.4 153.6L 129.6 152.8z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 280.8 152.8L 281.6 153.6L 280.8 152.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 292 152.8L 292.8 153.6L 292 152.8z"/>
<path style="stroke:none; fill:#bababa" d="M 116.8 153.6L 117.6 154.4L 116.8 153.6z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 279.2 153.6L 280 154.4L 279.2 153.6z"/>
<path style="stroke:none; fill:#928585" d="M 293.6 153.6L 294.4 154.4L 293.6 153.6z"/>
<path style="stroke:none; fill:#aeaeae" d="M 118.4 154.4L 119.2 155.2L 118.4 154.4z"/>
<path style="stroke:none; fill:#bababa" d="M 126.4 154.4L 127.2 155.2L 126.4 154.4z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 278.4 154.4L 279.2 155.2L 278.4 154.4z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 294.4 154.4L 295.2 155.2L 294.4 154.4z"/>
<path style="stroke:none; fill:#948a8a" d="M 121.6 155.2L 121.6 156L 124 156C 123.002 155.452 122.762 155.401 121.6 155.2z"/>
<path style="stroke:none; fill:#bababa" d="M 295.2 155.2L 296 156L 295.2 155.2M 276.8 156L 277.6 156.8L 276.8 156z"/>
<path style="stroke:none; fill:#948a8a" d="M 296 156L 296.8 156.8L 296 156z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 276 156.8L 276.8 157.6L 276 156.8z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 296.8 157.6L 297.6 158.4L 296.8 157.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 275.2 158.4L 276 159.2L 275.2 158.4z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 297.6 159.2L 298.4 160L 297.6 159.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 274.666 161.334C 274.622 161.378 274.578 162.222 274.934 161.866C 274.978 161.822 275.022 160.978 274.666 161.334z"/>
<path style="stroke:none; fill:#c3c3c3" d="M 298.4 161.6L 298.4 192.8L 299.2 192.8C 299.2 183.862 301.849 169.819 298.4 161.6z"/>
<path style="stroke:none; fill:#f5f5f5" d="M 274.4 162.4L 274.4 192.8L 275.2 192.8C 275.2 184.071 277.769 170.429 274.4 162.4z"/>
<path style="stroke:none; fill:#854949" d="M 60 192L 60 192.8L 274.4 192.8C 268.865 190.478 260.384 192 254.4 192L 211.2 192L 60 192M 299.2 192L 299.2 192.8L 349.6 192.8C 345.034 190.884 338.523 192 333.6 192L 299.2 192z"/>
<path style="stroke:none; fill:#aeaeae" d="M 57.6 192.8L 58.4 193.6L 57.6 192.8M 351.2 192.8L 352 193.6L 351.2 192.8z"/>
<path style="stroke:none; fill:#897373" d="M 353.6 193.6L 354.4 194.4L 353.6 193.6z"/>
<path style="stroke:none; fill:#948a8a" d="M 50.4 198.4L 51.2 199.2L 50.4 198.4z"/>
<path style="stroke:none; fill:#928585" d="M 358.4 198.4L 359.2 199.2L 358.4 198.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 49.6 200L 50.4 200.8L 49.6 200z"/>
<path style="stroke:none; fill:#928585" d="M 359.2 200L 360 200.8L 359.2 200z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 49.6 200.8L 50.4 201.6L 49.6 200.8z"/>
<path style="stroke:none; fill:#948a8a" d="M 48.8 203.2L 48.8 206.4L 49.6 206.4C 49.4607 205.052 49.3464 204.405 48.8 203.2z"/>
<path style="stroke:none; fill:#928585" d="M 360 203.2L 360 206.4L 360.8 206.4C 360.661 205.052 360.546 204.405 360 203.2z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 49.6 208L 50.4 208.8L 49.6 208z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 49.6 208.8L 50.4 209.6L 49.6 208.8z"/>
<path style="stroke:none; fill:#928585" d="M 359.2 208.8L 360 209.6L 359.2 208.8M 50.4 210.4L 51.2 211.2L 50.4 210.4M 358.4 210.4L 359.2 211.2L 358.4 210.4z"/>
<path style="stroke:none; fill:#897373" d="M 353.6 215.2L 354.4 216L 353.6 215.2z"/>
<path style="stroke:none; fill:#aeaeae" d="M 57.6 216L 58.4 216.8L 57.6 216M 351.2 216L 352 216.8L 351.2 216z"/>
<path style="stroke:none; fill:#854949" d="M 60 216.8L 60 217.6L 274.4 217.6C 268.865 215.278 260.384 216.8 254.4 216.8L 211.2 216.8L 60 216.8z"/>
<path style="stroke:none; fill:#f5f5f5" d="M 274.4 216.8L 274.4 247.2L 275.2 247.2C 275.2 238.471 277.769 224.829 274.4 216.8z"/>
<path style="stroke:none; fill:#c3c3c3" d="M 298.4 216.8L 298.4 247.2L 299.2 247.2C 299.2 238.471 301.769 224.829 298.4 216.8z"/>
<path style="stroke:none; fill:#854949" d="M 299.2 216.8L 299.2 217.6L 349.6 217.6C 345.034 215.684 338.523 216.8 333.6 216.8L 299.2 216.8z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 274.666 247.734C 274.622 247.778 274.578 248.622 274.934 248.266C 274.978 248.222 275.022 247.378 274.666 247.734z"/>
<path style="stroke:none; fill:#948a8a" d="M 298.4 247.2L 299.2 248L 298.4 247.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 297.6 249.6L 298.4 250.4L 297.6 249.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 275.2 250.4L 276 251.2L 275.2 250.4z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 296.8 251.2L 297.6 252L 296.8 251.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 276 252L 276.8 252.8L 276 252z"/>
<path style="stroke:none; fill:#bababa" d="M 276.8 252.8L 277.6 253.6L 276.8 252.8z"/>
<path style="stroke:none; fill:#948a8a" d="M 296 252.8L 296.8 253.6L 296 252.8z"/>
<path style="stroke:none; fill:#928585" d="M 120.8 253.6L 120.8 254.4L 124.8 254.4C 123.385 253.777 122.371 253.67 120.8 253.6z"/>
<path style="stroke:none; fill:#bababa" d="M 295.2 253.6L 296 254.4L 295.2 253.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 118.4 254.4L 119.2 255.2L 118.4 254.4z"/>
<path style="stroke:none; fill:#ffffff" d="M 111.2 295.2C 94.8888 295.2 74.2342 291.777 58.4 295.626C 50.6762 297.505 47.3172 306.847 51.2716 313.588C 54.8819 319.742 61.8181 319.2 68 319.2L 111.2 319.2C 111.2 328.665 108.046 345.075 112.366 353.597C 116.399 361.554 128.638 362.296 133.142 354.328C 137.78 346.122 134.4 328.53 134.4 319.2L 308 319.2C 321.393 319.2 338.189 321.938 351.2 318.774C 356.697 317.437 359.975 312.727 359.975 307.2C 359.975 301.673 356.697 296.963 351.2 295.626C 338.189 292.462 321.393 295.2 308 295.2L 134.4 295.2C 134.4 285.87 137.78 268.278 133.142 260.072C 128.638 252.104 116.399 252.846 112.366 260.803C 108.046 269.325 111.2 285.735 111.2 295.2z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 126.4 254.4L 127.2 255.2L 126.4 254.4z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 278.4 254.4L 279.2 255.2L 278.4 254.4z"/>
<path style="stroke:none; fill:#aeaeae" d="M 294.4 254.4L 295.2 255.2L 294.4 254.4z"/>
<path style="stroke:none; fill:#bababa" d="M 116.8 255.2L 117.6 256L 116.8 255.2z"/>
<path style="stroke:none; fill:#aeaeae" d="M 279.2 255.2L 280 256L 279.2 255.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 293.6 255.2L 294.4 256L 293.6 255.2z"/>
<path style="stroke:none; fill:#928585" d="M 115.2 256L 116 256.8L 115.2 256z"/>
<path style="stroke:none; fill:#aeaeae" d="M 129.6 256L 130.4 256.8L 129.6 256z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 280.8 256L 281.6 256.8L 280.8 256z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 292 256L 292.8 256.8L 292 256z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 114.4 256.8L 115.2 257.6L 114.4 256.8z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 130.4 256.8L 131.2 257.6L 130.4 256.8z"/>
<path style="stroke:none; fill:#bababa" d="M 282.4 256.8L 283.2 257.6L 282.4 256.8z"/>
<path style="stroke:none; fill:#aeaeae" d="M 290.4 256.8L 291.2 257.6L 290.4 256.8z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 113.6 257.6L 114.4 258.4L 113.6 257.6z"/>
<path style="stroke:none; fill:#928585" d="M 284.8 257.6L 284.8 258.4L 288 258.4C 286.795 257.854 286.148 257.739 284.8 257.6z"/>
<path style="stroke:none; fill:#948a8a" d="M 112.8 258.4L 113.6 259.2L 112.8 258.4z"/>
<path style="stroke:none; fill:#bababa" d="M 132 258.4L 132.8 259.2L 132 258.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 132.8 259.2L 133.6 260L 132.8 259.2z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 112 260L 112.8 260.8L 112 260z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 133.6 260.8L 134.4 261.6L 133.6 260.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 111.2 261.6L 112 262.4L 111.2 261.6z"/>
<path style="stroke:none; fill:#c3c3c3" d="M 134.666 263.734C 134.622 263.778 134.578 264.622 134.934 264.266C 134.978 264.222 135.022 263.378 134.666 263.734M 110.4 264L 110.4 295.2L 111.2 295.2C 111.2 286.262 113.849 272.219 110.4 264z"/>
<path style="stroke:none; fill:#f5f5f5" d="M 134.4 264.8L 134.4 295.2L 135.2 295.2C 135.2 286.471 137.769 272.829 134.4 264.8z"/>
<path style="stroke:none; fill:#854949" d="M 60 294.4L 60 295.2L 110.4 295.2C 105.834 293.284 99.3232 294.4 94.4 294.4L 60 294.4M 135.2 294.4L 135.2 295.2L 349.6 295.2C 344.065 292.878 335.584 294.4 329.6 294.4L 286.4 294.4L 135.2 294.4z"/>
<path style="stroke:none; fill:#aeaeae" d="M 57.6 295.2L 58.4 296L 57.6 295.2M 351.2 295.2L 352 296L 351.2 295.2z"/>
<path style="stroke:none; fill:#897373" d="M 353.6 296L 354.4 296.8L 353.6 296z"/>
<path style="stroke:none; fill:#948a8a" d="M 50.4 300.8L 51.2 301.6L 50.4 300.8z"/>
<path style="stroke:none; fill:#928585" d="M 358.4 300.8L 359.2 301.6L 358.4 300.8z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 49.6 302.4L 50.4 303.2L 49.6 302.4z"/>
<path style="stroke:none; fill:#928585" d="M 359.2 302.4L 360 303.2L 359.2 302.4z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 49.6 303.2L 50.4 304L 49.6 303.2z"/>
<path style="stroke:none; fill:#948a8a" d="M 48.8 305.6L 48.8 308.8L 49.6 308.8C 49.4607 307.452 49.3464 306.805 48.8 305.6z"/>
<path style="stroke:none; fill:#928585" d="M 360 305.6L 360 308.8L 360.8 308.8C 360.661 307.452 360.546 306.805 360 305.6z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 49.6 310.4L 50.4 311.2L 49.6 310.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 49.6 311.2L 50.4 312L 49.6 311.2z"/>
<path style="stroke:none; fill:#928585" d="M 359.2 311.2L 360 312L 359.2 311.2M 50.4 312.8L 51.2 313.6L 50.4 312.8M 358.4 312.8L 359.2 313.6L 358.4 312.8z"/>
<path style="stroke:none; fill:#897373" d="M 353.6 317.6L 354.4 318.4L 353.6 317.6z"/>
<path style="stroke:none; fill:#aeaeae" d="M 57.6 318.4L 58.4 319.2L 57.6 318.4M 351.2 318.4L 352 319.2L 351.2 318.4z"/>
<path style="stroke:none; fill:#854949" d="M 60 319.2L 60 320L 110.4 320C 105.834 318.084 99.3232 319.2 94.4 319.2L 60 319.2z"/>
<path style="stroke:none; fill:#c3c3c3" d="M 110.4 319.2L 110.4 350.4L 111.2 350.4C 111.2 341.462 113.849 327.419 110.4 319.2z"/>
<path style="stroke:none; fill:#f5f5f5" d="M 134.4 319.2L 134.4 349.6L 135.2 349.6C 135.2 340.871 137.769 327.229 134.4 319.2z"/>
<path style="stroke:none; fill:#854949" d="M 135.2 319.2L 135.2 320L 349.6 320C 344.065 317.678 335.584 319.2 329.6 319.2L 286.4 319.2L 135.2 319.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 134.666 350.134C 134.622 350.178 134.578 351.022 134.934 350.666C 134.978 350.622 135.022 349.778 134.666 350.134z"/>
<path style="stroke:none; fill:#c3c3c3" d="M 111.2 352L 112 352.8L 111.2 352z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 133.6 352.8L 134.4 353.6L 133.6 352.8z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 112 353.6L 112.8 354.4L 112 353.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 132.8 354.4L 133.6 355.2L 132.8 354.4z"/>
<path style="stroke:none; fill:#948a8a" d="M 112.8 355.2L 113.6 356L 112.8 355.2z"/>
<path style="stroke:none; fill:#bababa" d="M 132 355.2L 132.8 356L 132 355.2z"/>
<path style="stroke:none; fill:#b5b5b5" d="M 113.6 356L 114.4 356.8L 113.6 356M 114.4 356.8L 115.2 357.6L 114.4 356.8z"/>
<path style="stroke:none; fill:#cfcfcf" d="M 130.4 356.8L 131.2 357.6L 130.4 356.8z"/>
<path style="stroke:none; fill:#928585" d="M 115.2 357.6L 116 358.4L 115.2 357.6z"/>
<path style="stroke:none; fill:#aeaeae" d="M 129.6 357.6L 130.4 358.4L 129.6 357.6z"/>
<path style="stroke:none; fill:#bababa" d="M 116.8 358.4L 117.6 359.2L 116.8 358.4z"/>
<path style="stroke:none; fill:#aeaeae" d="M 118.4 359.2L 119.2 360L 118.4 359.2z"/>
<path style="stroke:none; fill:#bababa" d="M 126.4 359.2L 127.2 360L 126.4 359.2z"/>
<path style="stroke:none; fill:#948a8a" d="M 121.6 360L 121.6 360.8L 124 360.8C 123.002 360.252 122.762 360.201 121.6 360z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

14
svg/logo.svg Normal file
View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="51.2pt" height="51.2pt" viewBox="0 0 51.2 51.2"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#ffffff" d="M 0 0L 0 51.2L 51.2 51.2L 51.2 0L 0 0z"/>
<path style="stroke:none; fill:#21af4d" d="M 11.2 4.8L 11.2 25.6L 16.8 25.6L 16.8 4.8L 11.2 4.8z"/>
<path style="stroke:none; fill:#01a1e9" d="M 19.2 9.6L 19.2 41.6L 24.8 41.6L 24.8 9.6L 19.2 9.6M 3.2 17.6L 3.2 25.6L 8.8 25.6L 8.8 17.6L 3.2 17.6z"/>
<path style="stroke:none; fill:#21af4d" d="M 27.2 25.6L 27.2 49.6L 32.8 49.6L 32.8 25.6L 27.2 25.6z"/>
<path style="stroke:none; fill:#01a1e9" d="M 35.2 25.6L 35.2 36.8L 40.8 36.8L 40.8 25.6L 35.2 25.6z"/>
<path style="stroke:none; fill:#21af4d" d="M 43.2 25.6L 43.2 30.4L 48 30.4L 48 25.6L 43.2 25.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 938 B

458
svg/mute_active.svg Normal file
View File

@ -0,0 +1,458 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#ffffff" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#eee0e0" d="M 353.6 3.20001L 353.6 4L 370.4 4C 365.633 1.9996 358.749 3.20001 353.6 3.20001z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 370.4 3.20001L 370.4 4L 376.8 4C 374.71 3.12183 372.668 3.20578 370.4 3.20001z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 376.8 3.20001L 376.8 4L 382.4 4C 380.534 3.21237 378.834 3.215 376.8 3.20001z"/>
<path style="stroke:none; fill:#cd9d9d" d="M 382.4 3.20001L 382.4 4L 388.8 4C 386.71 3.12183 384.668 3.20578 382.4 3.20001z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 388.8 3.20001L 388.8 4L 392.8 4C 391.385 3.37686 390.371 3.27008 388.8 3.20001z"/>
<path style="stroke:none; fill:#ad6161" d="M 392.8 3.20001L 392.8 4L 397.6 4C 395.958 3.3006 394.602 3.23776 392.8 3.20001z"/>
<path style="stroke:none; fill:#9b3b3b" d="M 4.8 5.60001L 4 404.8L 405.6 405.6L 404.8 3.20001C 271.501 3.28787 138.159 5.60001 4.8 5.60001z"/>
<path style="stroke:none; fill:#eee0e0" d="M 222.4 4L 222.4 4.80002L 236.8 4.80002C 232.622 3.04688 226.906 4 222.4 4z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 236.8 4L 236.8 4.80002L 247.2 4.80002C 244.033 3.4711 240.21 4 236.8 4z"/>
<path style="stroke:none; fill:#cd9d9d" d="M 247.2 4L 247.2 4.80002L 253.6 4.80002C 251.51 3.92184 249.469 4.00577 247.2 4z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 253.6 4L 253.6 4.80002L 257.6 4.80002C 256.185 4.17685 255.171 4.07007 253.6 4z"/>
<path style="stroke:none; fill:#ad6161" d="M 257.6 4L 257.6 4.80002L 263.2 4.80002C 261.334 4.01239 259.634 4.01498 257.6 4z"/>
<path style="stroke:none; fill:#eee0e0" d="M 82.4 4.80002L 82.4 5.60001L 100 5.60001C 95.0384 3.51791 87.7616 4.80002 82.4 4.80002z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 100 4.80002L 100 5.60001L 106.4 5.60001C 104.31 4.72186 102.268 4.80576 100 4.80002z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 106.4 4.80002L 106.4 5.60001L 112.8 5.60001C 110.71 4.72186 108.668 4.80576 106.4 4.80002z"/>
<path style="stroke:none; fill:#cd9d9d" d="M 112.8 4.80002L 112.8 5.60001L 117.6 5.60001C 115.958 4.9006 114.602 4.83777 112.8 4.80002z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 117.6 4.80002L 117.6 5.60001L 124 5.60001C 121.91 4.72186 119.868 4.80576 117.6 4.80002z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 4 5.60001L 4 32.8L 4.8 32.8C 4.8 24.9097 7.04907 12.8663 4 5.60001z"/>
<path style="stroke:none; fill:#d2abab" d="M 4 32.8L 4 57.6L 4.8 57.6C 4.8 50.3391 6.80868 39.4934 4 32.8z"/>
<path style="stroke:none; fill:#cd9d9d" d="M 4 57.6L 4 95.2L 4.8 95.2C 4.8 84.588 8.0876 67.3413 4 57.6z"/>
<path style="stroke:none; fill:#8e7979" d="M 210.134 57.8666C 209.778 58.2223 210.622 58.1778 210.666 58.1334C 211.022 57.7778 210.178 57.8222 210.134 57.8666z"/>
<path style="stroke:none; fill:#9c9595" d="M 211.2 57.6L 211.2 58.4L 216.8 58.4C 214.934 57.6124 213.234 57.615 211.2 57.6z"/>
<path style="stroke:none; fill:#855e5e" d="M 217.334 57.8666C 216.978 58.2223 217.822 58.1778 217.866 58.1334C 218.222 57.7778 217.378 57.8223 217.334 57.8666z"/>
<path style="stroke:none; fill:#8e7979" d="M 203.2 58.4L 204 59.2L 203.2 58.4z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 204.534 58.6667C 204.178 59.0221 205.022 58.9778 205.066 58.9334C 205.422 58.5777 204.578 58.6223 204.534 58.6667z"/>
<path style="stroke:none; fill:#ffffff" d="M 205.6 58.7426C 180.335 62.362 158.621 79.5097 137.6 92.8424C 130.758 97.1824 123.731 102.886 116 105.517C 104.04 109.586 89.2512 106.906 76.8 107.212C 59.2114 107.642 40.883 116.072 31.3834 131.2C 22.5604 145.25 21.6 161.486 21.6 177.6C 21.6 212.58 10.9596 269.002 44.8 291.926C 58.1547 300.973 73.9417 302.4 89.6 302.4C 99.572 302.4 110.878 300.692 120 305.428C 152.564 322.337 184.142 356.843 224 350.172C 248.612 346.052 262.975 323.91 266.852 300.8C 269.217 286.705 268 271.858 268 257.6L 268 184C 268 156.362 272.031 125.23 264.678 98.4C 257.362 71.7056 233.262 54.7798 205.6 58.7426z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 222.934 58.6667C 222.578 59.0222 223.422 58.9778 223.466 58.9334C 223.822 58.5779 222.978 58.6223 222.934 58.6667M 200 59.2L 200.8 60L 200 59.2z"/>
<path style="stroke:none; fill:#bababa" d="M 226.4 59.2L 227.2 60L 226.4 59.2z"/>
<path style="stroke:none; fill:#8e7979" d="M 227.2 59.2L 228 60L 227.2 59.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 196.8 60L 197.6 60.8L 196.8 60M 229.6 60L 230.4 60.8L 229.6 60z"/>
<path style="stroke:none; fill:#9c9595" d="M 193.6 60.8L 194.4 61.6L 193.6 60.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 232 60.8L 232.8 61.6L 232 60.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 191.2 61.6L 192 62.4L 191.2 61.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 233.6 61.6L 234.4 62.4L 233.6 61.6z"/>
<path style="stroke:none; fill:#8e7979" d="M 188.8 62.4L 189.6 63.2L 188.8 62.4M 236 62.4L 236.8 63.2L 236 62.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 187.2 63.2L 188 64L 187.2 63.2z"/>
<path style="stroke:none; fill:#8e7979" d="M 237.6 63.2L 238.4 64L 237.6 63.2M 184.8 64L 185.6 64.8L 184.8 64M 183.2 64.8L 184 65.6L 183.2 64.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 240 64.8L 240.8 65.6L 240 64.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 181.6 65.6L 182.4 66.4L 181.6 65.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 241.6 65.6L 242.4 66.4L 241.6 65.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 180 66.4L 180.8 67.2L 180 66.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 178.4 67.2L 179.2 68L 178.4 67.2z"/>
<path style="stroke:none; fill:#8e7979" d="M 244 67.2L 244.8 68L 244 67.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 176.8 68L 177.6 68.8L 176.8 68z"/>
<path style="stroke:none; fill:#bababa" d="M 244.8 68L 245.6 68.8L 244.8 68z"/>
<path style="stroke:none; fill:#8e7979" d="M 175.2 68.8L 176 69.6L 175.2 68.8z"/>
<path style="stroke:none; fill:#bababa" d="M 172.8 70.4L 173.6 71.2L 172.8 70.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 248 70.4L 248.8 71.2L 248 70.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 171.2 71.2L 172 72L 171.2 71.2z"/>
<path style="stroke:none; fill:#8e7979" d="M 248.8 71.2L 249.6 72L 248.8 71.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 249.6 72L 250.4 72.8L 249.6 72z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 168.8 72.8L 169.6 73.6L 168.8 72.8z"/>
<path style="stroke:none; fill:#8e7979" d="M 250.4 72.8L 251.2 73.6L 250.4 72.8M 251.2 73.6L 252 74.4L 251.2 73.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 166.4 74.4L 167.2 75.2L 166.4 74.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 164.8 75.2L 165.6 76L 164.8 75.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 162.4 76.8L 163.2 77.6L 162.4 76.8z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 253.6 76.8L 254.4 77.6L 253.6 76.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 254.4 77.6L 255.2 78.4L 254.4 77.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 160 78.4L 160.8 79.2L 160 78.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 158.4 79.2L 159.2 80L 158.4 79.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 256 80L 256.8 80.8L 256 80z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 156 80.8L 156.8 81.6L 156 80.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 153.6 82.4L 154.4 83.2L 153.6 82.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 257.6 82.4L 258.4 83.2L 257.6 82.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 152 83.2L 152.8 84L 152 83.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 149.6 84.8L 150.4 85.6L 149.6 84.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 147.2 86.4L 148 87.2L 147.2 86.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 145.6 87.2L 146.4 88L 145.6 87.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 143.2 88.8L 144 89.6L 143.2 88.8z"/>
<path style="stroke:none; fill:#bababa" d="M 140.8 90.4L 141.6 91.2L 140.8 90.4M 261.6 90.4L 262.4 91.2L 261.6 90.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 139.2 91.2L 140 92L 139.2 91.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 262.4 92L 263.2 92.8L 262.4 92M 136.8 92.8L 137.6 93.6L 136.8 92.8z"/>
<path style="stroke:none; fill:#bababa" d="M 134.4 94.4L 135.2 95.2L 134.4 94.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 263.2 94.4L 264 95.2L 263.2 94.4z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 4 95.2L 4 151.2L 4.8 151.2L 4.8 112.8C 4.8 107.451 6.07927 100.155 4 95.2z"/>
<path style="stroke:none; fill:#8e7979" d="M 132.8 95.2L 133.6 96L 132.8 95.2z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 132 96L 132.8 96.8L 132 96z"/>
<path style="stroke:none; fill:#9c9595" d="M 130.4 96.8L 131.2 97.6L 130.4 96.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 264 96.8L 264.8 97.6L 264 96.8z"/>
<path style="stroke:none; fill:#bababa" d="M 128 98.4L 128.8 99.2L 128 98.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 264.8 99.2L 265.6 100L 264.8 99.2z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 125.6 100L 126.4 100.8L 125.6 100M 264.8 100L 265.6 100.8L 264.8 100z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 124 100.8L 124.8 101.6L 124 100.8z"/>
<path style="stroke:none; fill:#bababa" d="M 121.6 102.4L 122.4 103.2L 121.6 102.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 265.6 102.4L 266.4 103.2L 265.6 102.4M 120 103.2L 120.8 104L 120 103.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 265.6 103.2L 266.4 104L 265.6 103.2z"/>
<path style="stroke:none; fill:#8e7979" d="M 118.4 104L 119.2 104.8L 118.4 104z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 116.8 104.8L 117.6 105.6L 116.8 104.8z"/>
<path style="stroke:none; fill:#8e7979" d="M 113.6 105.6L 114.4 106.4L 113.6 105.6z"/>
<path style="stroke:none; fill:#bababa" d="M 114.4 105.6L 115.2 106.4L 114.4 105.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 77.3334 106.666C 76.9778 107.022 77.8222 106.978 77.8666 106.934C 78.2222 106.578 77.3778 106.622 77.3334 106.666z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 78.4 106.4L 78.4 107.2L 80.8 107.2C 79.8013 106.652 79.5613 106.601 78.4 106.4z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 80.8 106.4L 80.8 107.2L 110.4 107.2C 102.562 103.911 89.3192 106.4 80.8 106.4z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 266.666 106.934C 266.622 106.978 266.578 107.822 266.934 107.466C 266.978 107.422 267.022 106.578 266.666 106.934z"/>
<path style="stroke:none; fill:#bababa" d="M 70.4 107.2L 70.4 108L 72.8 108C 71.8013 107.452 71.5613 107.401 70.4 107.2M 66.4 108L 67.2 108.8L 66.4 108z"/>
<path style="stroke:none; fill:#8e7979" d="M 62.4 108.8L 63.2 109.6L 62.4 108.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 63.2 108.8L 64 109.6L 63.2 108.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 60 109.6L 60.8 110.4L 60 109.6M 57.6 110.4L 58.4 111.2L 57.6 110.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 267.2 110.4L 267.2 112.8L 268 112.8C 267.799 111.638 267.748 111.398 267.2 110.4M 55.2 111.2L 56 112L 55.2 111.2z"/>
<path style="stroke:none; fill:#bababa" d="M 53.6 112L 54.4 112.8L 53.6 112z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 48.8 114.4L 49.6 115.2L 48.8 114.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 47.2 115.2L 48 116L 47.2 115.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 44.8 116.8L 45.6 117.6L 44.8 116.8z"/>
<path style="stroke:none; fill:#855e5e" d="M 268 116.8L 268 119.2L 268.8 119.2C 268.599 118.038 268.548 117.798 268 116.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 42.4 118.4L 43.2 119.2L 42.4 118.4z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 41.6 119.2L 42.4 120L 41.6 119.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 268 119.2L 268 124.8L 268.8 124.8C 268.785 122.766 268.788 121.066 268 119.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 268 124.8L 268 284L 268.8 284L 268.8 172L 268.8 140C 268.8 135.29 269.834 129.17 268 124.8z"/>
<path style="stroke:none; fill:#bababa" d="M 33.6 127.2L 34.4 128L 33.6 127.2z"/>
<path style="stroke:none; fill:#8e7979" d="M 32.8 128L 33.6 128.8L 32.8 128z"/>
<path style="stroke:none; fill:#9c9595" d="M 31.2 130.4L 32 131.2L 31.2 130.4z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 30.4 132L 31.2 132.8L 30.4 132z"/>
<path style="stroke:none; fill:#eee0e0" d="M 404.8 132L 404.8 156.8L 405.6 156.8C 405.6 149.539 407.609 138.694 404.8 132z"/>
<path style="stroke:none; fill:#9c9595" d="M 28.8 134.4L 29.6 135.2L 28.8 134.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 28 136L 28.8 136.8L 28 136z"/>
<path style="stroke:none; fill:#9c9595" d="M 27.2 137.6L 28 138.4L 27.2 137.6z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 26.4 140L 27.2 140.8L 26.4 140z"/>
<path style="stroke:none; fill:#9c9595" d="M 25.6 141.6L 26.4 142.4L 25.6 141.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 24.8 144L 25.6 144.8L 24.8 144z"/>
<path style="stroke:none; fill:#9c9595" d="M 24 146.4L 24.8 147.2L 24 146.4z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 24 147.2L 24.8 148L 24 147.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 23.2 149.6L 24 150.4L 23.2 149.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 23.2 150.4L 24 151.2L 23.2 150.4z"/>
<path style="stroke:none; fill:#ad6161" d="M 4 151.2L 4 164.8L 4.8 164.8C 4.8 160.51 5.66976 155.179 4 151.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 22.6666 154.134C 22.6222 154.178 22.5778 155.022 22.9334 154.666C 22.9778 154.622 23.0222 153.778 22.6666 154.134z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 404.8 156.8L 404.8 167.2L 405.6 167.2C 405.6 163.79 406.129 159.967 404.8 156.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 306.4 157.6L 306.4 158.4L 308.8 158.4C 307.802 157.852 307.562 157.801 306.4 157.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 21.6 158.4L 21.6 160.8L 22.4 160.8C 22.199 159.638 22.1478 159.398 21.6 158.4M 303.2 158.4L 304 159.2L 303.2 158.4z"/>
<path style="stroke:none; fill:#ffffff" d="M 324 204C 315.733 212.267 300.427 222.682 296.007 233.6C 291.992 243.518 300.73 253.96 311.2 250.678C 319.381 248.114 326.887 237.113 332.8 231.2C 334.863 229.137 338.377 224.045 341.6 224.045C 344.823 224.045 348.338 229.138 350.4 231.2C 357.816 238.616 372.634 259.264 384.485 246.928C 396.244 234.687 375.62 220.42 368 212.8C 365.989 210.789 361.702 207.821 361.305 204.8C 360.937 201.997 364.677 199.328 366.4 197.6C 371.957 192.03 377.872 186.669 383.114 180.8C 391.582 171.317 385.058 157.317 372 159.371C 364.15 160.606 357.31 170.69 352 176C 349.674 178.326 344.582 185.628 340.8 184.634C 327.646 181.18 319.595 150.922 302.401 159.566C 296.047 162.759 293.5 170.526 296.912 176.8C 302.01 186.177 315.314 197.882 324 204z"/>
<path style="stroke:none; fill:#9c9595" d="M 312 158.4L 312.8 159.2L 312 158.4M 372.534 158.666C 372.178 159.022 373.022 158.978 373.066 158.934C 373.422 158.578 372.578 158.622 372.534 158.666z"/>
<path style="stroke:none; fill:#bababa" d="M 373.6 158.4L 373.6 159.2L 376.8 159.2C 375.595 158.654 374.948 158.539 373.6 158.4z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 301.6 159.2L 302.4 160L 301.6 159.2z"/>
<path style="stroke:none; fill:#bababa" d="M 313.6 159.2L 314.4 160L 313.6 159.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 369.6 159.2L 370.4 160L 369.6 159.2M 379.2 159.2L 380 160L 379.2 159.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 300 160L 300.8 160.8L 300 160M 368 160L 368.8 160.8L 368 160M 380.8 160L 381.6 160.8L 380.8 160z"/>
<path style="stroke:none; fill:#eee0e0" d="M 21.8666 161.334C 21.8222 161.378 21.7778 162.222 22.1334 161.866C 22.1778 161.822 22.2222 160.978 21.8666 161.334z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 299.2 160.8L 300 161.6L 299.2 160.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 316 160.8L 316.8 161.6L 316 160.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 298.4 161.6L 299.2 162.4L 298.4 161.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 316.8 161.6L 317.6 162.4L 316.8 161.6z"/>
<path style="stroke:none; fill:#bababa" d="M 297.6 162.4L 298.4 163.2L 297.6 162.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 317.6 162.4L 318.4 163.2L 317.6 162.4M 318.4 163.2L 319.2 164L 318.4 163.2M 319.2 164L 320 164.8L 319.2 164z"/>
<path style="stroke:none; fill:#9c9595" d="M 296 164.8L 296.8 165.6L 296 164.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 320 164.8L 320.8 165.6L 320 164.8z"/>
<path style="stroke:none; fill:#8e7979" d="M 385.6 164.8L 386.4 165.6L 385.6 164.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 320.8 165.6L 321.6 166.4L 320.8 165.6z"/>
<path style="stroke:none; fill:#854949" d="M 20.8 166.4L 20.8 240L 21.6 240L 21.6 188.8C 21.6 182.183 23.3645 172.511 20.8 166.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 321.6 166.4L 322.4 167.2L 321.6 166.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 295.2 167.2L 296 168L 295.2 167.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 322.4 167.2L 323.2 168L 322.4 167.2z"/>
<path style="stroke:none; fill:#bababa" d="M 386.4 167.2L 387.2 168L 386.4 167.2z"/>
<path style="stroke:none; fill:#cd9d9d" d="M 404.8 167.2L 404.8 177.6L 405.6 177.6C 405.6 174.19 406.129 170.367 404.8 167.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 323.2 168L 324 168.8L 323.2 168M 324 168.8L 324.8 169.6L 324 168.8M 324.8 169.6L 325.6 170.4L 324.8 169.6M 325.6 170.4L 326.4 171.2L 325.6 170.4z"/>
<path style="stroke:none; fill:#855e5e" d="M 387.466 170.934C 387.422 170.978 387.378 171.822 387.734 171.466C 387.778 171.422 387.822 170.578 387.466 170.934z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 326.4 171.2L 327.2 172L 326.4 171.2M 327.2 172L 328 172.8L 327.2 172z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 295.2 172.8L 296 173.6L 295.2 172.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 328 172.8L 328.8 173.6L 328 172.8z"/>
<path style="stroke:none; fill:#8e7979" d="M 295.2 173.6L 296 174.4L 295.2 173.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 328.8 173.6L 329.6 174.4L 328.8 173.6M 329.6 174.4L 330.4 175.2L 329.6 174.4z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 386.4 174.4L 387.2 175.2L 386.4 174.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 330.4 175.2L 331.2 176L 330.4 175.2z"/>
<path style="stroke:none; fill:#8e7979" d="M 386.4 175.2L 387.2 176L 386.4 175.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 331.2 176L 332 176.8L 331.2 176M 332 176.8L 332.8 177.6L 332 176.8M 385.6 176.8L 386.4 177.6L 385.6 176.8M 332.8 177.6L 333.6 178.4L 332.8 177.6z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 404.8 177.6L 404.8 184L 405.6 184C 405.594 181.732 405.678 179.69 404.8 177.6z"/>
<path style="stroke:none; fill:#8e7979" d="M 297.6 178.4L 298.4 179.2L 297.6 178.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 333.6 178.4L 334.4 179.2L 333.6 178.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 298.4 179.2L 299.2 180L 298.4 179.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 334.4 179.2L 335.2 180L 334.4 179.2M 384 179.2L 384.8 180L 384 179.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 299.2 180L 300 180.8L 299.2 180z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 335.2 180L 336 180.8L 335.2 180z"/>
<path style="stroke:none; fill:#bababa" d="M 383.2 180L 384 180.8L 383.2 180z"/>
<path style="stroke:none; fill:#9c9595" d="M 300 180.8L 300.8 181.6L 300 180.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 336 180.8L 336.8 181.6L 336 180.8z"/>
<path style="stroke:none; fill:#bababa" d="M 382.4 180.8L 383.2 181.6L 382.4 180.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 300.8 181.6L 301.6 182.4L 300.8 181.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 336.8 181.6L 337.6 182.4L 336.8 181.6z"/>
<path style="stroke:none; fill:#bababa" d="M 381.6 181.6L 382.4 182.4L 381.6 181.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 301.6 182.4L 302.4 183.2L 301.6 182.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 337.6 182.4L 338.4 183.2L 337.6 182.4z"/>
<path style="stroke:none; fill:#bababa" d="M 380.8 182.4L 381.6 183.2L 380.8 182.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 302.4 183.2L 303.2 184L 302.4 183.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 338.4 183.2L 339.2 184L 338.4 183.2z"/>
<path style="stroke:none; fill:#bababa" d="M 380 183.2L 380.8 184L 380 183.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 303.2 184L 304 184.8L 303.2 184z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 339.2 184L 340 184.8L 339.2 184z"/>
<path style="stroke:none; fill:#bababa" d="M 379.2 184L 380 184.8L 379.2 184z"/>
<path style="stroke:none; fill:#ad6161" d="M 404.8 184L 404.8 190.4L 405.6 190.4C 405.594 188.131 405.678 186.09 404.8 184z"/>
<path style="stroke:none; fill:#9c9595" d="M 304 184.8L 304.8 185.6L 304 184.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 340 184.8L 340.8 185.6L 340 184.8z"/>
<path style="stroke:none; fill:#bababa" d="M 378.4 184.8L 379.2 185.6L 378.4 184.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 304.8 185.6L 305.6 186.4L 304.8 185.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 340.8 185.6L 341.6 186.4L 340.8 185.6z"/>
<path style="stroke:none; fill:#bababa" d="M 377.6 185.6L 378.4 186.4L 377.6 185.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 305.6 186.4L 306.4 187.2L 305.6 186.4z"/>
<path style="stroke:none; fill:#bababa" d="M 376.8 186.4L 377.6 187.2L 376.8 186.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 306.4 187.2L 307.2 188L 306.4 187.2z"/>
<path style="stroke:none; fill:#bababa" d="M 376 187.2L 376.8 188L 376 187.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 307.2 188L 308 188.8L 307.2 188z"/>
<path style="stroke:none; fill:#bababa" d="M 375.2 188L 376 188.8L 375.2 188z"/>
<path style="stroke:none; fill:#9c9595" d="M 308 188.8L 308.8 189.6L 308 188.8z"/>
<path style="stroke:none; fill:#bababa" d="M 374.4 188.8L 375.2 189.6L 374.4 188.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 308.8 189.6L 309.6 190.4L 308.8 189.6z"/>
<path style="stroke:none; fill:#bababa" d="M 373.6 189.6L 374.4 190.4L 373.6 189.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 309.6 190.4L 310.4 191.2L 309.6 190.4z"/>
<path style="stroke:none; fill:#bababa" d="M 372.8 190.4L 373.6 191.2L 372.8 190.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 310.4 191.2L 311.2 192L 310.4 191.2z"/>
<path style="stroke:none; fill:#bababa" d="M 372 191.2L 372.8 192L 372 191.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 311.2 192L 312 192.8L 311.2 192z"/>
<path style="stroke:none; fill:#bababa" d="M 371.2 192L 372 192.8L 371.2 192z"/>
<path style="stroke:none; fill:#9c9595" d="M 312 192.8L 312.8 193.6L 312 192.8z"/>
<path style="stroke:none; fill:#bababa" d="M 370.4 192.8L 371.2 193.6L 370.4 192.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 312.8 193.6L 313.6 194.4L 312.8 193.6z"/>
<path style="stroke:none; fill:#bababa" d="M 369.6 193.6L 370.4 194.4L 369.6 193.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 313.6 194.4L 314.4 195.2L 313.6 194.4z"/>
<path style="stroke:none; fill:#bababa" d="M 368.8 194.4L 369.6 195.2L 368.8 194.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 314.4 195.2L 315.2 196L 314.4 195.2z"/>
<path style="stroke:none; fill:#bababa" d="M 368 195.2L 368.8 196L 368 195.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 315.2 196L 316 196.8L 315.2 196z"/>
<path style="stroke:none; fill:#bababa" d="M 367.2 196L 368 196.8L 367.2 196z"/>
<path style="stroke:none; fill:#9c9595" d="M 316 196.8L 316.8 197.6L 316 196.8z"/>
<path style="stroke:none; fill:#bababa" d="M 366.4 196.8L 367.2 197.6L 366.4 196.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 316.8 197.6L 317.6 198.4L 316.8 197.6z"/>
<path style="stroke:none; fill:#bababa" d="M 365.6 197.6L 366.4 198.4L 365.6 197.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 317.6 198.4L 318.4 199.2L 317.6 198.4z"/>
<path style="stroke:none; fill:#bababa" d="M 364.8 198.4L 365.6 199.2L 364.8 198.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 318.4 199.2L 319.2 200L 318.4 199.2z"/>
<path style="stroke:none; fill:#bababa" d="M 364 199.2L 364.8 200L 364 199.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 319.2 200L 320 200.8L 319.2 200z"/>
<path style="stroke:none; fill:#bababa" d="M 363.2 200L 364 200.8L 363.2 200z"/>
<path style="stroke:none; fill:#9c9595" d="M 320 200.8L 320.8 201.6L 320 200.8z"/>
<path style="stroke:none; fill:#bababa" d="M 362.4 200.8L 363.2 201.6L 362.4 200.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 320.8 201.6L 321.6 202.4L 320.8 201.6z"/>
<path style="stroke:none; fill:#bababa" d="M 361.6 201.6L 362.4 202.4L 361.6 201.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 321.6 202.4L 322.4 203.2L 321.6 202.4z"/>
<path style="stroke:none; fill:#bababa" d="M 360.8 202.4L 361.6 203.2L 360.8 202.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 322.4 203.2L 323.2 204L 322.4 203.2z"/>
<path style="stroke:none; fill:#bababa" d="M 360 203.2L 360.8 204L 360 203.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 323.2 204L 324 204.8L 323.2 204z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 360 204.8L 360.8 205.6L 360 204.8M 360.8 205.6L 361.6 206.4L 360.8 205.6M 361.6 206.4L 362.4 207.2L 361.6 206.4M 362.4 207.2L 363.2 208L 362.4 207.2M 363.2 208L 364 208.8L 363.2 208M 364 208.8L 364.8 209.6L 364 208.8M 364.8 209.6L 365.6 210.4L 364.8 209.6M 365.6 210.4L 366.4 211.2L 365.6 210.4M 366.4 211.2L 367.2 212L 366.4 211.2M 367.2 212L 368 212.8L 367.2 212M 368 212.8L 368.8 213.6L 368 212.8M 368.8 213.6L 369.6 214.4L 368.8 213.6M 369.6 214.4L 370.4 215.2L 369.6 214.4M 370.4 215.2L 371.2 216L 370.4 215.2M 371.2 216L 372 216.8L 371.2 216M 372 216.8L 372.8 217.6L 372 216.8M 372.8 217.6L 373.6 218.4L 372.8 217.6M 373.6 218.4L 374.4 219.2L 373.6 218.4M 374.4 219.2L 375.2 220L 374.4 219.2M 375.2 220L 376 220.8L 375.2 220M 376 220.8L 376.8 221.6L 376 220.8M 376.8 221.6L 377.6 222.4L 376.8 221.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 341.334 222.666C 340.978 223.022 341.822 222.978 341.866 222.934C 342.222 222.578 341.378 222.622 341.334 222.666z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 377.6 222.4L 378.4 223.2L 377.6 222.4z"/>
<path style="stroke:none; fill:#bababa" d="M 340 223.2L 340.8 224L 340 223.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 342.4 223.2L 343.2 224L 342.4 223.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 378.4 223.2L 379.2 224L 378.4 223.2z"/>
<path style="stroke:none; fill:#bababa" d="M 339.2 224L 340 224.8L 339.2 224z"/>
<path style="stroke:none; fill:#9c9595" d="M 343.2 224L 344 224.8L 343.2 224z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 379.2 224L 380 224.8L 379.2 224z"/>
<path style="stroke:none; fill:#bababa" d="M 338.4 224.8L 339.2 225.6L 338.4 224.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 344 224.8L 344.8 225.6L 344 224.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 380 224.8L 380.8 225.6L 380 224.8z"/>
<path style="stroke:none; fill:#bababa" d="M 337.6 225.6L 338.4 226.4L 337.6 225.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 344.8 225.6L 345.6 226.4L 344.8 225.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 380.8 225.6L 381.6 226.4L 380.8 225.6z"/>
<path style="stroke:none; fill:#bababa" d="M 336.8 226.4L 337.6 227.2L 336.8 226.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 345.6 226.4L 346.4 227.2L 345.6 226.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 381.6 226.4L 382.4 227.2L 381.6 226.4z"/>
<path style="stroke:none; fill:#bababa" d="M 336 227.2L 336.8 228L 336 227.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 346.4 227.2L 347.2 228L 346.4 227.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 382.4 227.2L 383.2 228L 382.4 227.2z"/>
<path style="stroke:none; fill:#bababa" d="M 335.2 228L 336 228.8L 335.2 228z"/>
<path style="stroke:none; fill:#9c9595" d="M 347.2 228L 348 228.8L 347.2 228z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 383.2 228L 384 228.8L 383.2 228z"/>
<path style="stroke:none; fill:#bababa" d="M 334.4 228.8L 335.2 229.6L 334.4 228.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 348 228.8L 348.8 229.6L 348 228.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 384 228.8L 384.8 229.6L 384 228.8z"/>
<path style="stroke:none; fill:#bababa" d="M 333.6 229.6L 334.4 230.4L 333.6 229.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 348.8 229.6L 349.6 230.4L 348.8 229.6z"/>
<path style="stroke:none; fill:#8e7979" d="M 384.8 229.6L 385.6 230.4L 384.8 229.6z"/>
<path style="stroke:none; fill:#bababa" d="M 332.8 230.4L 333.6 231.2L 332.8 230.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 349.6 230.4L 350.4 231.2L 349.6 230.4z"/>
<path style="stroke:none; fill:#bababa" d="M 332 231.2L 332.8 232L 332 231.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 350.4 231.2L 351.2 232L 350.4 231.2z"/>
<path style="stroke:none; fill:#bababa" d="M 296 232L 296.8 232.8L 296 232M 331.2 232L 332 232.8L 331.2 232z"/>
<path style="stroke:none; fill:#9c9595" d="M 351.2 232L 352 232.8L 351.2 232z"/>
<path style="stroke:none; fill:#8e7979" d="M 386.4 232L 387.2 232.8L 386.4 232z"/>
<path style="stroke:none; fill:#bababa" d="M 330.4 232.8L 331.2 233.6L 330.4 232.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 352 232.8L 352.8 233.6L 352 232.8z"/>
<path style="stroke:none; fill:#bababa" d="M 295.2 233.6L 296 234.4L 295.2 233.6M 329.6 233.6L 330.4 234.4L 329.6 233.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 352.8 233.6L 353.6 234.4L 352.8 233.6z"/>
<path style="stroke:none; fill:#bababa" d="M 328.8 234.4L 329.6 235.2L 328.8 234.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 353.6 234.4L 354.4 235.2L 353.6 234.4z"/>
<path style="stroke:none; fill:#bababa" d="M 387.2 234.4L 388 235.2L 387.2 234.4M 328 235.2L 328.8 236L 328 235.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 354.4 235.2L 355.2 236L 354.4 235.2z"/>
<path style="stroke:none; fill:#bababa" d="M 294.4 236L 294.4 238.4L 295.2 238.4C 294.999 237.238 294.948 236.998 294.4 236M 327.2 236L 328 236.8L 327.2 236z"/>
<path style="stroke:none; fill:#9c9595" d="M 355.2 236L 356 236.8L 355.2 236z"/>
<path style="stroke:none; fill:#bababa" d="M 326.4 236.8L 327.2 237.6L 326.4 236.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 356 236.8L 356.8 237.6L 356 236.8z"/>
<path style="stroke:none; fill:#bababa" d="M 325.6 237.6L 326.4 238.4L 325.6 237.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 356.8 237.6L 357.6 238.4L 356.8 237.6z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 294.666 238.934C 294.622 238.978 294.578 239.822 294.934 239.466C 294.978 239.422 295.022 238.578 294.666 238.934z"/>
<path style="stroke:none; fill:#bababa" d="M 324.8 238.4L 325.6 239.2L 324.8 238.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 357.6 238.4L 358.4 239.2L 357.6 238.4z"/>
<path style="stroke:none; fill:#bababa" d="M 324 239.2L 324.8 240L 324 239.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 358.4 239.2L 359.2 240L 358.4 239.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 294.666 240.534C 294.622 240.578 294.578 241.422 294.934 241.066C 294.978 241.022 295.022 240.178 294.666 240.534z"/>
<path style="stroke:none; fill:#bababa" d="M 323.2 240L 324 240.8L 323.2 240z"/>
<path style="stroke:none; fill:#9c9595" d="M 359.2 240L 360 240.8L 359.2 240z"/>
<path style="stroke:none; fill:#bababa" d="M 322.4 240.8L 323.2 241.6L 322.4 240.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 360 240.8L 360.8 241.6L 360 240.8z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 387.2 240.8L 388 241.6L 387.2 240.8z"/>
<path style="stroke:none; fill:#bababa" d="M 321.6 241.6L 322.4 242.4L 321.6 241.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 360.8 241.6L 361.6 242.4L 360.8 241.6M 387.2 241.6L 388 242.4L 387.2 241.6z"/>
<path style="stroke:none; fill:#bababa" d="M 320.8 242.4L 321.6 243.2L 320.8 242.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 361.6 242.4L 362.4 243.2L 361.6 242.4z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 295.2 243.2L 296 244L 295.2 243.2z"/>
<path style="stroke:none; fill:#bababa" d="M 320 243.2L 320.8 244L 320 243.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 362.4 243.2L 363.2 244L 362.4 243.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 386.4 243.2L 387.2 244L 386.4 243.2z"/>
<path style="stroke:none; fill:#bababa" d="M 319.2 244L 320 244.8L 319.2 244z"/>
<path style="stroke:none; fill:#9c9595" d="M 363.2 244L 364 244.8L 363.2 244z"/>
<path style="stroke:none; fill:#bababa" d="M 318.4 244.8L 319.2 245.6L 318.4 244.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 364 244.8L 364.8 245.6L 364 244.8z"/>
<path style="stroke:none; fill:#bababa" d="M 385.6 244.8L 386.4 245.6L 385.6 244.8M 317.6 245.6L 318.4 246.4L 317.6 245.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 364.8 245.6L 365.6 246.4L 364.8 245.6M 296.8 246.4L 297.6 247.2L 296.8 246.4z"/>
<path style="stroke:none; fill:#bababa" d="M 316.8 246.4L 317.6 247.2L 316.8 246.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 365.6 246.4L 366.4 247.2L 365.6 246.4z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 21.6 247.2L 21.6 249.6L 22.4 249.6C 22.199 248.438 22.1478 248.198 21.6 247.2z"/>
<path style="stroke:none; fill:#bababa" d="M 297.6 247.2L 298.4 248L 297.6 247.2M 316 247.2L 316.8 248L 316 247.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 366.4 247.2L 367.2 248L 366.4 247.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 298.4 248L 299.2 248.8L 298.4 248z"/>
<path style="stroke:none; fill:#bababa" d="M 315.2 248L 316 248.8L 315.2 248z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 382.4 248L 383.2 248.8L 382.4 248z"/>
<path style="stroke:none; fill:#8e7979" d="M 299.2 248.8L 300 249.6L 299.2 248.8M 314.4 248.8L 315.2 249.6L 314.4 248.8z"/>
<path style="stroke:none; fill:#bababa" d="M 368.8 248.8L 369.6 249.6L 368.8 248.8z"/>
<path style="stroke:none; fill:#855e5e" d="M 21.8666 250.134C 21.8222 250.178 21.7778 251.022 22.1334 250.666C 22.1778 250.622 22.2222 249.778 21.8666 250.134z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 300.8 249.6L 301.6 250.4L 300.8 249.6M 312.8 249.6L 313.6 250.4L 312.8 249.6z"/>
<path style="stroke:none; fill:#bababa" d="M 370.4 249.6L 371.2 250.4L 370.4 249.6z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 379.2 249.6L 380 250.4L 379.2 249.6z"/>
<path style="stroke:none; fill:#8e7979" d="M 380 249.6L 380.8 250.4L 380 249.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 302.4 250.4L 303.2 251.2L 302.4 250.4M 311.2 250.4L 312 251.2L 311.2 250.4M 373.334 250.666C 372.978 251.022 373.822 250.978 373.866 250.934C 374.222 250.578 373.378 250.622 373.334 250.666z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 374.4 250.4L 374.4 251.2L 377.6 251.2C 376.395 250.654 375.748 250.539 374.4 250.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 305.334 251.466C 304.978 251.822 305.822 251.778 305.866 251.734C 306.222 251.378 305.378 251.422 305.334 251.466z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 306.934 251.466C 306.578 251.822 307.422 251.778 307.466 251.734C 307.822 251.378 306.978 251.422 306.934 251.466z"/>
<path style="stroke:none; fill:#855e5e" d="M 308.534 251.466C 308.178 251.822 309.022 251.778 309.066 251.734C 309.422 251.378 308.578 251.422 308.534 251.466z"/>
<path style="stroke:none; fill:#9c9595" d="M 22.6666 254.934C 22.6222 254.978 22.5778 255.822 22.9334 255.466C 22.9778 255.422 23.0222 254.578 22.6666 254.934z"/>
<path style="stroke:none; fill:#bababa" d="M 23.2 258.4L 24 259.2L 23.2 258.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 23.2 259.2L 24 260L 23.2 259.2z"/>
<path style="stroke:none; fill:#bababa" d="M 24 261.6L 24.8 262.4L 24 261.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 24.8 264L 25.6 264.8L 24.8 264z"/>
<path style="stroke:none; fill:#8e7979" d="M 24.8 264.8L 25.6 265.6L 24.8 264.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 25.6 266.4L 26.4 267.2L 25.6 266.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 26.4 268.8L 27.2 269.6L 26.4 268.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 27.2 270.4L 28 271.2L 27.2 270.4z"/>
<path style="stroke:none; fill:#bababa" d="M 29.6 275.2L 30.4 276L 29.6 275.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 30.4 276.8L 31.2 277.6L 30.4 276.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 32 279.2L 32.8 280L 32 279.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 34.4 282.4L 35.2 283.2L 34.4 282.4z"/>
<path style="stroke:none; fill:#bababa" d="M 35.2 283.2L 36 284L 35.2 283.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 36 284L 36.8 284.8L 36 284z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 268 284L 268 288.8L 268.8 288.8C 268.762 286.998 268.699 285.642 268 284z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 36.8 284.8L 37.6 285.6L 36.8 284.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 39.2 287.2L 40 288L 39.2 287.2z"/>
<path style="stroke:none; fill:#bababa" d="M 40 288L 40.8 288.8L 40 288z"/>
<path style="stroke:none; fill:#9c9595" d="M 40.8 288.8L 41.6 289.6L 40.8 288.8z"/>
<path style="stroke:none; fill:#8e7979" d="M 268.266 289.334C 268.222 289.378 268.178 290.222 268.534 289.866C 268.578 289.822 268.622 288.978 268.266 289.334z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 44 291.2L 44.8 292L 44 291.2M 46.4 292.8L 47.2 293.6L 46.4 292.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 48 293.6L 48.8 294.4L 48 293.6z"/>
<path style="stroke:none; fill:#bababa" d="M 267.2 295.2L 267.2 297.6L 268 297.6C 267.799 296.438 267.748 296.198 267.2 295.2M 54.4 296.8L 55.2 297.6L 54.4 296.8z"/>
<path style="stroke:none; fill:#8e7979" d="M 56 297.6L 56.8 298.4L 56 297.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 58.4 298.4L 59.2 299.2L 58.4 298.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 60.8 299.2L 61.6 300L 60.8 299.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 61.6 299.2L 62.4 300L 61.6 299.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 64 300L 64.8 300.8L 64 300z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 64.8 300L 65.6 300.8L 64.8 300M 68.5334 301.066C 68.1778 301.422 69.0222 301.378 69.0666 301.334C 69.4222 300.978 68.5778 301.022 68.5334 301.066z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 266.666 301.334C 266.622 301.378 266.578 302.222 266.934 301.866C 266.978 301.822 267.022 300.978 266.666 301.334M 72.8 301.6L 72.8 302.4L 75.2 302.4C 74.2014 301.852 73.9612 301.801 72.8 301.6z"/>
<path style="stroke:none; fill:#855e5e" d="M 81.6 302.4L 81.6 303.2L 84.8 303.2C 83.5952 302.654 82.948 302.539 81.6 302.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 84.8 302.4L 84.8 303.2L 111.2 303.2C 104.125 300.231 92.4808 302.4 84.8 302.4z"/>
<path style="stroke:none; fill:#bababa" d="M 111.2 302.4L 111.2 303.2L 113.6 303.2C 112.602 302.652 112.362 302.601 111.2 302.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 266.4 302.4L 267.2 303.2L 266.4 302.4M 115.2 303.2L 116 304L 115.2 303.2z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 116 303.2L 116.8 304L 116 303.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 117.6 304L 118.4 304.8L 117.6 304z"/>
<path style="stroke:none; fill:#8e7979" d="M 119.2 304.8L 120 305.6L 119.2 304.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 265.6 304.8L 266.4 305.6L 265.6 304.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 120.8 305.6L 121.6 306.4L 120.8 305.6M 265.6 305.6L 266.4 306.4L 265.6 305.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 122.4 306.4L 123.2 307.2L 122.4 306.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 124.8 308L 125.6 308.8L 124.8 308z"/>
<path style="stroke:none; fill:#9c9595" d="M 264.8 308.8L 265.6 309.6L 264.8 308.8z"/>
<path style="stroke:none; fill:#8e7979" d="M 127.2 309.6L 128 310.4L 127.2 309.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 128.8 310.4L 129.6 311.2L 128.8 310.4z"/>
<path style="stroke:none; fill:#bababa" d="M 264 311.2L 264.8 312L 264 311.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 131.2 312L 132 312.8L 131.2 312z"/>
<path style="stroke:none; fill:#9c9595" d="M 133.6 313.6L 134.4 314.4L 133.6 313.6z"/>
<path style="stroke:none; fill:#bababa" d="M 263.2 313.6L 264 314.4L 263.2 313.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 135.2 314.4L 136 315.2L 135.2 314.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 137.6 316L 138.4 316.8L 137.6 316M 262.4 316L 263.2 316.8L 262.4 316z"/>
<path style="stroke:none; fill:#9c9595" d="M 140 317.6L 140.8 318.4L 140 317.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 261.6 317.6L 262.4 318.4L 261.6 317.6M 141.6 318.4L 142.4 319.2L 141.6 318.4z"/>
<path style="stroke:none; fill:#bababa" d="M 144 320L 144.8 320.8L 144 320z"/>
<path style="stroke:none; fill:#8e7979" d="M 260.8 320L 261.6 320.8L 260.8 320z"/>
<path style="stroke:none; fill:#eee0e0" d="M 3.2 321.6L 3.2 364L 4 364L 4 335.2C 4 330.92 4.86808 325.575 3.2 321.6z"/>
<path style="stroke:none; fill:#9c9595" d="M 146.4 321.6L 147.2 322.4L 146.4 321.6z"/>
<path style="stroke:none; fill:#8e7979" d="M 260 321.6L 260.8 322.4L 260 321.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 148 322.4L 148.8 323.2L 148 322.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 148.8 323.2L 149.6 324L 148.8 323.2z"/>
<path style="stroke:none; fill:#bababa" d="M 150.4 324L 151.2 324.8L 150.4 324z"/>
<path style="stroke:none; fill:#9c9595" d="M 152.8 325.6L 153.6 326.4L 152.8 325.6z"/>
<path style="stroke:none; fill:#bababa" d="M 257.6 325.6L 258.4 326.4L 257.6 325.6z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 154.4 326.4L 155.2 327.2L 154.4 326.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 256.8 327.2L 257.6 328L 256.8 327.2z"/>
<path style="stroke:none; fill:#bababa" d="M 156.8 328L 157.6 328.8L 156.8 328z"/>
<path style="stroke:none; fill:#9c9595" d="M 159.2 329.6L 160 330.4L 159.2 329.6z"/>
<path style="stroke:none; fill:#8e7979" d="M 255.2 329.6L 256 330.4L 255.2 329.6z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 160.8 330.4L 161.6 331.2L 160.8 330.4z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 254.4 330.4L 255.2 331.2L 254.4 330.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 161.6 331.2L 162.4 332L 161.6 331.2z"/>
<path style="stroke:none; fill:#bababa" d="M 163.2 332L 164 332.8L 163.2 332z"/>
<path style="stroke:none; fill:#9c9595" d="M 165.6 333.6L 166.4 334.4L 165.6 333.6M 252 333.6L 252.8 334.4L 252 333.6z"/>
<path style="stroke:none; fill:#bababa" d="M 251.2 334.4L 252 335.2L 251.2 334.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 168 335.2L 168.8 336L 168 335.2z"/>
<path style="stroke:none; fill:#bababa" d="M 250.4 335.2L 251.2 336L 250.4 335.2M 169.6 336L 170.4 336.8L 169.6 336M 249.6 336L 250.4 336.8L 249.6 336M 248.8 336.8L 249.6 337.6L 248.8 336.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 172 337.6L 172.8 338.4L 172 337.6z"/>
<path style="stroke:none; fill:#bababa" d="M 248 337.6L 248.8 338.4L 248 337.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 173.6 338.4L 174.4 339.2L 173.6 338.4z"/>
<path style="stroke:none; fill:#9c9595" d="M 247.2 338.4L 248 339.2L 247.2 338.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 246.4 339.2L 247.2 340L 246.4 339.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 176 340L 176.8 340.8L 176 340M 177.6 340.8L 178.4 341.6L 177.6 340.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 244 340.8L 244.8 341.6L 244 340.8z"/>
<path style="stroke:none; fill:#9c9595" d="M 179.2 341.6L 180 342.4L 179.2 341.6M 243.2 341.6L 244 342.4L 243.2 341.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 180.8 342.4L 181.6 343.2L 180.8 342.4M 182.4 343.2L 183.2 344L 182.4 343.2z"/>
<path style="stroke:none; fill:#9c9595" d="M 240.8 343.2L 241.6 344L 240.8 343.2z"/>
<path style="stroke:none; fill:#8e7979" d="M 184 344L 184.8 344.8L 184 344z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 239.2 344L 240 344.8L 239.2 344z"/>
<path style="stroke:none; fill:#eee0e0" d="M 405.6 344L 405.6 368.8L 406.4 368.8C 406.4 361.539 408.409 350.694 405.6 344z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 186.4 344.8L 187.2 345.6L 186.4 344.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 188 345.6L 188.8 346.4L 188 345.6z"/>
<path style="stroke:none; fill:#bababa" d="M 190.4 346.4L 191.2 347.2L 190.4 346.4z"/>
<path style="stroke:none; fill:#8e7979" d="M 192 347.2L 192.8 348L 192 347.2z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 192.8 347.2L 193.6 348L 192.8 347.2z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 232.8 347.2L 233.6 348L 232.8 347.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 195.2 348L 196 348.8L 195.2 348z"/>
<path style="stroke:none; fill:#9c9595" d="M 231.2 348L 232 348.8L 231.2 348M 197.6 348.8L 198.4 349.6L 197.6 348.8z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 198.4 348.8L 199.2 349.6L 198.4 348.8M 228 348.8L 228.8 349.6L 228 348.8z"/>
<path style="stroke:none; fill:#8e7979" d="M 228.8 348.8L 229.6 349.6L 228.8 348.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 201.6 349.6L 202.4 350.4L 201.6 349.6z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 224.8 349.6L 225.6 350.4L 224.8 349.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 225.6 349.6L 226.4 350.4L 225.6 349.6M 205.6 350.4L 205.6 351.2L 208 351.2C 207.002 350.652 206.762 350.601 205.6 350.4z"/>
<path style="stroke:none; fill:#c5c5c5" d="M 219.2 350.4L 219.2 351.2L 221.6 351.2C 220.602 350.652 220.361 350.601 219.2 350.4z"/>
<path style="stroke:none; fill:#855e5e" d="M 222.134 350.666C 221.778 351.022 222.622 350.978 222.666 350.934C 223.022 350.578 222.178 350.622 222.134 350.666z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 3.2 364L 3.2 404.8L 4 404.8C 4 393.351 7.60675 374.502 3.2 364M 405.6 368.8L 405.6 379.2L 406.4 379.2C 406.4 375.79 406.929 371.967 405.6 368.8z"/>
<path style="stroke:none; fill:#cd9d9d" d="M 405.6 379.2L 405.6 389.6L 406.4 389.6C 406.4 386.19 406.929 382.367 405.6 379.2z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 405.6 389.6L 405.6 396L 406.4 396C 406.394 393.731 406.478 391.69 405.6 389.6z"/>
<path style="stroke:none; fill:#ad6161" d="M 405.6 396L 405.6 405.6L 406.4 405.6C 406.4 402.414 406.842 398.958 405.6 396z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 4 404.8L 4 405.6L 32 405.6C 24.543 402.471 12.1 404.8 4 404.8z"/>
<path style="stroke:none; fill:#d2abab" d="M 32 404.8L 32 405.6L 56.8 405.6C 50.1066 402.791 39.261 404.8 32 404.8z"/>
<path style="stroke:none; fill:#cd9d9d" d="M 56.8 404.8L 56.8 405.6L 107.2 405.6C 102.634 403.684 96.1232 404.8 91.2 404.8L 56.8 404.8z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 107.2 404.8L 107.2 405.6L 151.2 405.6C 147.027 403.849 141.295 404.8 136.8 404.8L 107.2 404.8z"/>
<path style="stroke:none; fill:#ad6161" d="M 151.2 404.8L 151.2 405.6L 164 405.6C 160.221 404.014 155.272 404.8 151.2 404.8z"/>
<path style="stroke:none; fill:#eee0e0" d="M 295.2 405.6L 295.2 406.4L 364 406.4C 358.081 403.916 348.806 405.6 342.4 405.6L 295.2 405.6z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 364 405.6L 364 406.4L 406.4 406.4C 402.425 404.732 397.08 405.6 392.8 405.6L 364 405.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 46 KiB

435
svg/mute_inactive.svg Normal file
View File

@ -0,0 +1,435 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#9b3b3b" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#928282" d="M 210.134 57.8666C 209.778 58.2223 210.622 58.1778 210.666 58.1334C 211.022 57.7778 210.178 57.8222 210.134 57.8666z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 211.2 57.6L 211.2 58.4L 216.8 58.4C 214.934 57.6124 213.234 57.615 211.2 57.6z"/>
<path style="stroke:none; fill:#876868" d="M 217.334 57.8666C 216.978 58.2223 217.822 58.1778 217.866 58.1334C 218.222 57.7778 217.378 57.8223 217.334 57.8666z"/>
<path style="stroke:none; fill:#8a7474" d="M 203.2 58.4L 204 59.2L 203.2 58.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 204.534 58.6667C 204.178 59.0221 205.022 58.9778 205.066 58.9334C 205.422 58.5777 204.578 58.6223 204.534 58.6667z"/>
<path style="stroke:none; fill:#ffffff" d="M 205.6 58.7426C 180.335 62.362 158.621 79.5097 137.6 92.8424C 130.758 97.1824 123.731 102.886 116 105.517C 104.04 109.586 89.2512 106.906 76.8 107.212C 59.2114 107.642 40.883 116.072 31.3834 131.2C 22.5604 145.25 21.6 161.486 21.6 177.6C 21.6 212.58 10.9596 269.002 44.8 291.926C 58.1547 300.973 73.9417 302.4 89.6 302.4C 99.572 302.4 110.878 300.692 120 305.428C 152.564 322.337 184.142 356.843 224 350.172C 248.612 346.052 262.975 323.91 266.852 300.8C 269.217 286.705 268 271.858 268 257.6L 268 184C 268 156.362 272.031 125.23 264.678 98.4C 257.362 71.7056 233.262 54.7798 205.6 58.7426z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 222.934 58.6667C 222.578 59.0222 223.422 58.9778 223.466 58.9334C 223.822 58.5779 222.978 58.6223 222.934 58.6667z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 200 59.2L 200.8 60L 200 59.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 226.4 59.2L 227.2 60L 226.4 59.2z"/>
<path style="stroke:none; fill:#928282" d="M 227.2 59.2L 228 60L 227.2 59.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 196.8 60L 197.6 60.8L 196.8 60M 229.6 60L 230.4 60.8L 229.6 60z"/>
<path style="stroke:none; fill:#959090" d="M 193.6 60.8L 194.4 61.6L 193.6 60.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 232 60.8L 232.8 61.6L 232 60.8z"/>
<path style="stroke:none; fill:#959090" d="M 191.2 61.6L 192 62.4L 191.2 61.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 233.6 61.6L 234.4 62.4L 233.6 61.6z"/>
<path style="stroke:none; fill:#928282" d="M 188.8 62.4L 189.6 63.2L 188.8 62.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 236 62.4L 236.8 63.2L 236 62.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 187.2 63.2L 188 64L 187.2 63.2z"/>
<path style="stroke:none; fill:#928282" d="M 237.6 63.2L 238.4 64L 237.6 63.2z"/>
<path style="stroke:none; fill:#8a7474" d="M 184.8 64L 185.6 64.8L 184.8 64z"/>
<path style="stroke:none; fill:#928282" d="M 183.2 64.8L 184 65.6L 183.2 64.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 240 64.8L 240.8 65.6L 240 64.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 181.6 65.6L 182.4 66.4L 181.6 65.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 241.6 65.6L 242.4 66.4L 241.6 65.6z"/>
<path style="stroke:none; fill:#afafaf" d="M 180 66.4L 180.8 67.2L 180 66.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 178.4 67.2L 179.2 68L 178.4 67.2z"/>
<path style="stroke:none; fill:#928282" d="M 244 67.2L 244.8 68L 244 67.2z"/>
<path style="stroke:none; fill:#959090" d="M 176.8 68L 177.6 68.8L 176.8 68z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 244.8 68L 245.6 68.8L 244.8 68z"/>
<path style="stroke:none; fill:#928282" d="M 175.2 68.8L 176 69.6L 175.2 68.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 172.8 70.4L 173.6 71.2L 172.8 70.4z"/>
<path style="stroke:none; fill:#928282" d="M 248 70.4L 248.8 71.2L 248 70.4z"/>
<path style="stroke:none; fill:#959090" d="M 171.2 71.2L 172 72L 171.2 71.2z"/>
<path style="stroke:none; fill:#928282" d="M 248.8 71.2L 249.6 72L 248.8 71.2z"/>
<path style="stroke:none; fill:#959090" d="M 249.6 72L 250.4 72.8L 249.6 72z"/>
<path style="stroke:none; fill:#afafaf" d="M 168.8 72.8L 169.6 73.6L 168.8 72.8z"/>
<path style="stroke:none; fill:#928282" d="M 250.4 72.8L 251.2 73.6L 250.4 72.8z"/>
<path style="stroke:none; fill:#8a7474" d="M 251.2 73.6L 252 74.4L 251.2 73.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 166.4 74.4L 167.2 75.2L 166.4 74.4z"/>
<path style="stroke:none; fill:#959090" d="M 164.8 75.2L 165.6 76L 164.8 75.2z"/>
<path style="stroke:none; fill:#afafaf" d="M 162.4 76.8L 163.2 77.6L 162.4 76.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 253.6 76.8L 254.4 77.6L 253.6 76.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 254.4 77.6L 255.2 78.4L 254.4 77.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 160 78.4L 160.8 79.2L 160 78.4z"/>
<path style="stroke:none; fill:#928282" d="M 158.4 79.2L 159.2 80L 158.4 79.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 256 80L 256.8 80.8L 256 80z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 156 80.8L 156.8 81.6L 156 80.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 153.6 82.4L 154.4 83.2L 153.6 82.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 257.6 82.4L 258.4 83.2L 257.6 82.4z"/>
<path style="stroke:none; fill:#928282" d="M 152 83.2L 152.8 84L 152 83.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 149.6 84.8L 150.4 85.6L 149.6 84.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 147.2 86.4L 148 87.2L 147.2 86.4z"/>
<path style="stroke:none; fill:#928282" d="M 145.6 87.2L 146.4 88L 145.6 87.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 143.2 88.8L 144 89.6L 143.2 88.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 140.8 90.4L 141.6 91.2L 140.8 90.4M 261.6 90.4L 262.4 91.2L 261.6 90.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 139.2 91.2L 140 92L 139.2 91.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 262.4 92L 263.2 92.8L 262.4 92z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 136.8 92.8L 137.6 93.6L 136.8 92.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 134.4 94.4L 135.2 95.2L 134.4 94.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 263.2 94.4L 264 95.2L 263.2 94.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 132.8 95.2L 133.6 96L 132.8 95.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 132 96L 132.8 96.8L 132 96z"/>
<path style="stroke:none; fill:#959090" d="M 130.4 96.8L 131.2 97.6L 130.4 96.8z"/>
<path style="stroke:none; fill:#afafaf" d="M 264 96.8L 264.8 97.6L 264 96.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 128 98.4L 128.8 99.2L 128 98.4z"/>
<path style="stroke:none; fill:#959090" d="M 264.8 99.2L 265.6 100L 264.8 99.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 125.6 100L 126.4 100.8L 125.6 100M 264.8 100L 265.6 100.8L 264.8 100z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 124 100.8L 124.8 101.6L 124 100.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 121.6 102.4L 122.4 103.2L 121.6 102.4z"/>
<path style="stroke:none; fill:#959090" d="M 265.6 102.4L 266.4 103.2L 265.6 102.4M 120 103.2L 120.8 104L 120 103.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 265.6 103.2L 266.4 104L 265.6 103.2z"/>
<path style="stroke:none; fill:#928282" d="M 118.4 104L 119.2 104.8L 118.4 104z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 116.8 104.8L 117.6 105.6L 116.8 104.8z"/>
<path style="stroke:none; fill:#928282" d="M 113.6 105.6L 114.4 106.4L 113.6 105.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 114.4 105.6L 115.2 106.4L 114.4 105.6z"/>
<path style="stroke:none; fill:#959090" d="M 77.3334 106.666C 76.9778 107.022 77.8222 106.978 77.8666 106.934C 78.2222 106.578 77.3778 106.622 77.3334 106.666z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 78.4 106.4L 78.4 107.2L 80.8 107.2C 79.8013 106.652 79.5613 106.601 78.4 106.4z"/>
<path style="stroke:none; fill:#dbdbdb" d="M 80.8 106.4L 80.8 107.2L 110.4 107.2C 102.562 103.911 89.3192 106.4 80.8 106.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 266.666 106.934C 266.622 106.978 266.578 107.822 266.934 107.466C 266.978 107.422 267.022 106.578 266.666 106.934z"/>
<path style="stroke:none; fill:#afafaf" d="M 70.4 107.2L 70.4 108L 72.8 108C 71.8013 107.452 71.5613 107.401 70.4 107.2M 66.4 108L 67.2 108.8L 66.4 108z"/>
<path style="stroke:none; fill:#928282" d="M 62.4 108.8L 63.2 109.6L 62.4 108.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 63.2 108.8L 64 109.6L 63.2 108.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 60 109.6L 60.8 110.4L 60 109.6z"/>
<path style="stroke:none; fill:#afafaf" d="M 57.6 110.4L 58.4 111.2L 57.6 110.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 267.2 110.4L 267.2 112.8L 268 112.8C 267.799 111.638 267.748 111.398 267.2 110.4z"/>
<path style="stroke:none; fill:#959090" d="M 55.2 111.2L 56 112L 55.2 111.2z"/>
<path style="stroke:none; fill:#afafaf" d="M 53.6 112L 54.4 112.8L 53.6 112z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 48.8 114.4L 49.6 115.2L 48.8 114.4z"/>
<path style="stroke:none; fill:#afafaf" d="M 47.2 115.2L 48 116L 47.2 115.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 44.8 116.8L 45.6 117.6L 44.8 116.8z"/>
<path style="stroke:none; fill:#855757" d="M 268 116.8L 268 119.2L 268.8 119.2C 268.599 118.038 268.548 117.798 268 116.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 42.4 118.4L 43.2 119.2L 42.4 118.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 41.6 119.2L 42.4 120L 41.6 119.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 268 119.2L 268 124.8L 268.8 124.8C 268.785 122.766 268.788 121.066 268 119.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 268 124.8L 268 284L 268.8 284L 268.8 172L 268.8 140C 268.8 135.29 269.834 129.17 268 124.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 33.6 127.2L 34.4 128L 33.6 127.2z"/>
<path style="stroke:none; fill:#8a7474" d="M 32.8 128L 33.6 128.8L 32.8 128z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 31.2 130.4L 32 131.2L 31.2 130.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 30.4 132L 31.2 132.8L 30.4 132z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 28.8 134.4L 29.6 135.2L 28.8 134.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 28 136L 28.8 136.8L 28 136z"/>
<path style="stroke:none; fill:#959090" d="M 27.2 137.6L 28 138.4L 27.2 137.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 26.4 140L 27.2 140.8L 26.4 140z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 25.6 141.6L 26.4 142.4L 25.6 141.6z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 24.8 144L 25.6 144.8L 24.8 144z"/>
<path style="stroke:none; fill:#959090" d="M 24 146.4L 24.8 147.2L 24 146.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 24 147.2L 24.8 148L 24 147.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 23.2 149.6L 24 150.4L 23.2 149.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 23.2 150.4L 24 151.2L 23.2 150.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 22.6666 154.134C 22.6222 154.178 22.5778 155.022 22.9334 154.666C 22.9778 154.622 23.0222 153.778 22.6666 154.134z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 306.4 157.6L 306.4 158.4L 308.8 158.4C 307.802 157.852 307.562 157.801 306.4 157.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 21.6 158.4L 21.6 160.8L 22.4 160.8C 22.199 159.638 22.1478 159.398 21.6 158.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 303.2 158.4L 304 159.2L 303.2 158.4z"/>
<path style="stroke:none; fill:#ffffff" d="M 324 204C 315.733 212.267 300.427 222.682 296.007 233.6C 291.992 243.518 300.73 253.96 311.2 250.678C 319.381 248.114 326.887 237.113 332.8 231.2C 334.863 229.137 338.377 224.045 341.6 224.045C 344.823 224.045 348.338 229.138 350.4 231.2C 357.816 238.616 372.634 259.264 384.485 246.928C 396.244 234.687 375.62 220.42 368 212.8C 365.989 210.789 361.702 207.821 361.305 204.8C 360.937 201.997 364.677 199.328 366.4 197.6C 371.957 192.03 377.872 186.669 383.114 180.8C 391.582 171.317 385.058 157.317 372 159.371C 364.15 160.606 357.31 170.69 352 176C 349.674 178.326 344.582 185.628 340.8 184.634C 327.646 181.18 319.595 150.922 302.401 159.566C 296.047 162.759 293.5 170.526 296.912 176.8C 302.01 186.177 315.314 197.882 324 204z"/>
<path style="stroke:none; fill:#959090" d="M 312 158.4L 312.8 159.2L 312 158.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 372.534 158.666C 372.178 159.022 373.022 158.978 373.066 158.934C 373.422 158.578 372.578 158.622 372.534 158.666z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 373.6 158.4L 373.6 159.2L 376.8 159.2C 375.595 158.654 374.948 158.539 373.6 158.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 301.6 159.2L 302.4 160L 301.6 159.2z"/>
<path style="stroke:none; fill:#afafaf" d="M 313.6 159.2L 314.4 160L 313.6 159.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 369.6 159.2L 370.4 160L 369.6 159.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 379.2 159.2L 380 160L 379.2 159.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 300 160L 300.8 160.8L 300 160z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 368 160L 368.8 160.8L 368 160z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 380.8 160L 381.6 160.8L 380.8 160z"/>
<path style="stroke:none; fill:#dbdbdb" d="M 21.8666 161.334C 21.8222 161.378 21.7778 162.222 22.1334 161.866C 22.1778 161.822 22.2222 160.978 21.8666 161.334z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 299.2 160.8L 300 161.6L 299.2 160.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 316 160.8L 316.8 161.6L 316 160.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 298.4 161.6L 299.2 162.4L 298.4 161.6z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 316.8 161.6L 317.6 162.4L 316.8 161.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 297.6 162.4L 298.4 163.2L 297.6 162.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 317.6 162.4L 318.4 163.2L 317.6 162.4M 318.4 163.2L 319.2 164L 318.4 163.2M 319.2 164L 320 164.8L 319.2 164z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 296 164.8L 296.8 165.6L 296 164.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 320 164.8L 320.8 165.6L 320 164.8z"/>
<path style="stroke:none; fill:#8a7474" d="M 385.6 164.8L 386.4 165.6L 385.6 164.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 320.8 165.6L 321.6 166.4L 320.8 165.6z"/>
<path style="stroke:none; fill:#854949" d="M 20.8 166.4L 20.8 240L 21.6 240L 21.6 188.8C 21.6 182.183 23.3645 172.511 20.8 166.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 321.6 166.4L 322.4 167.2L 321.6 166.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 295.2 167.2L 296 168L 295.2 167.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 322.4 167.2L 323.2 168L 322.4 167.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 386.4 167.2L 387.2 168L 386.4 167.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 323.2 168L 324 168.8L 323.2 168M 324 168.8L 324.8 169.6L 324 168.8M 324.8 169.6L 325.6 170.4L 324.8 169.6M 325.6 170.4L 326.4 171.2L 325.6 170.4z"/>
<path style="stroke:none; fill:#855757" d="M 387.466 170.934C 387.422 170.978 387.378 171.822 387.734 171.466C 387.778 171.422 387.822 170.578 387.466 170.934z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 326.4 171.2L 327.2 172L 326.4 171.2M 327.2 172L 328 172.8L 327.2 172z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 295.2 172.8L 296 173.6L 295.2 172.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 328 172.8L 328.8 173.6L 328 172.8z"/>
<path style="stroke:none; fill:#8a7474" d="M 295.2 173.6L 296 174.4L 295.2 173.6z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 328.8 173.6L 329.6 174.4L 328.8 173.6M 329.6 174.4L 330.4 175.2L 329.6 174.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 386.4 174.4L 387.2 175.2L 386.4 174.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 330.4 175.2L 331.2 176L 330.4 175.2z"/>
<path style="stroke:none; fill:#928282" d="M 386.4 175.2L 387.2 176L 386.4 175.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 331.2 176L 332 176.8L 331.2 176M 332 176.8L 332.8 177.6L 332 176.8M 385.6 176.8L 386.4 177.6L 385.6 176.8M 332.8 177.6L 333.6 178.4L 332.8 177.6z"/>
<path style="stroke:none; fill:#8a7474" d="M 297.6 178.4L 298.4 179.2L 297.6 178.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 333.6 178.4L 334.4 179.2L 333.6 178.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 298.4 179.2L 299.2 180L 298.4 179.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 334.4 179.2L 335.2 180L 334.4 179.2M 384 179.2L 384.8 180L 384 179.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 299.2 180L 300 180.8L 299.2 180z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 335.2 180L 336 180.8L 335.2 180z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 383.2 180L 384 180.8L 383.2 180z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 300 180.8L 300.8 181.6L 300 180.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 336 180.8L 336.8 181.6L 336 180.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 382.4 180.8L 383.2 181.6L 382.4 180.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 300.8 181.6L 301.6 182.4L 300.8 181.6z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 336.8 181.6L 337.6 182.4L 336.8 181.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 381.6 181.6L 382.4 182.4L 381.6 181.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 301.6 182.4L 302.4 183.2L 301.6 182.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 337.6 182.4L 338.4 183.2L 337.6 182.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 380.8 182.4L 381.6 183.2L 380.8 182.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 302.4 183.2L 303.2 184L 302.4 183.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 338.4 183.2L 339.2 184L 338.4 183.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 380 183.2L 380.8 184L 380 183.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 303.2 184L 304 184.8L 303.2 184z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 339.2 184L 340 184.8L 339.2 184z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 379.2 184L 380 184.8L 379.2 184z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 304 184.8L 304.8 185.6L 304 184.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 340 184.8L 340.8 185.6L 340 184.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 378.4 184.8L 379.2 185.6L 378.4 184.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 304.8 185.6L 305.6 186.4L 304.8 185.6z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 340.8 185.6L 341.6 186.4L 340.8 185.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 377.6 185.6L 378.4 186.4L 377.6 185.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 305.6 186.4L 306.4 187.2L 305.6 186.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 376.8 186.4L 377.6 187.2L 376.8 186.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 306.4 187.2L 307.2 188L 306.4 187.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 376 187.2L 376.8 188L 376 187.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 307.2 188L 308 188.8L 307.2 188z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 375.2 188L 376 188.8L 375.2 188z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 308 188.8L 308.8 189.6L 308 188.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 374.4 188.8L 375.2 189.6L 374.4 188.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 308.8 189.6L 309.6 190.4L 308.8 189.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 373.6 189.6L 374.4 190.4L 373.6 189.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 309.6 190.4L 310.4 191.2L 309.6 190.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 372.8 190.4L 373.6 191.2L 372.8 190.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 310.4 191.2L 311.2 192L 310.4 191.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 372 191.2L 372.8 192L 372 191.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 311.2 192L 312 192.8L 311.2 192z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 371.2 192L 372 192.8L 371.2 192z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 312 192.8L 312.8 193.6L 312 192.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 370.4 192.8L 371.2 193.6L 370.4 192.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 312.8 193.6L 313.6 194.4L 312.8 193.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 369.6 193.6L 370.4 194.4L 369.6 193.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 313.6 194.4L 314.4 195.2L 313.6 194.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 368.8 194.4L 369.6 195.2L 368.8 194.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 314.4 195.2L 315.2 196L 314.4 195.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 368 195.2L 368.8 196L 368 195.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 315.2 196L 316 196.8L 315.2 196z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 367.2 196L 368 196.8L 367.2 196z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 316 196.8L 316.8 197.6L 316 196.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 366.4 196.8L 367.2 197.6L 366.4 196.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 316.8 197.6L 317.6 198.4L 316.8 197.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 365.6 197.6L 366.4 198.4L 365.6 197.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 317.6 198.4L 318.4 199.2L 317.6 198.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 364.8 198.4L 365.6 199.2L 364.8 198.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 318.4 199.2L 319.2 200L 318.4 199.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 364 199.2L 364.8 200L 364 199.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 319.2 200L 320 200.8L 319.2 200z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 363.2 200L 364 200.8L 363.2 200z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 320 200.8L 320.8 201.6L 320 200.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 362.4 200.8L 363.2 201.6L 362.4 200.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 320.8 201.6L 321.6 202.4L 320.8 201.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 361.6 201.6L 362.4 202.4L 361.6 201.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 321.6 202.4L 322.4 203.2L 321.6 202.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 360.8 202.4L 361.6 203.2L 360.8 202.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 322.4 203.2L 323.2 204L 322.4 203.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 360 203.2L 360.8 204L 360 203.2M 323.2 204L 324 204.8L 323.2 204z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 360 204.8L 360.8 205.6L 360 204.8M 360.8 205.6L 361.6 206.4L 360.8 205.6M 361.6 206.4L 362.4 207.2L 361.6 206.4M 362.4 207.2L 363.2 208L 362.4 207.2M 363.2 208L 364 208.8L 363.2 208M 364 208.8L 364.8 209.6L 364 208.8M 364.8 209.6L 365.6 210.4L 364.8 209.6M 365.6 210.4L 366.4 211.2L 365.6 210.4M 366.4 211.2L 367.2 212L 366.4 211.2M 367.2 212L 368 212.8L 367.2 212M 368 212.8L 368.8 213.6L 368 212.8M 368.8 213.6L 369.6 214.4L 368.8 213.6M 369.6 214.4L 370.4 215.2L 369.6 214.4M 370.4 215.2L 371.2 216L 370.4 215.2M 371.2 216L 372 216.8L 371.2 216M 372 216.8L 372.8 217.6L 372 216.8M 372.8 217.6L 373.6 218.4L 372.8 217.6M 373.6 218.4L 374.4 219.2L 373.6 218.4M 374.4 219.2L 375.2 220L 374.4 219.2M 375.2 220L 376 220.8L 375.2 220M 376 220.8L 376.8 221.6L 376 220.8M 376.8 221.6L 377.6 222.4L 376.8 221.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 341.334 222.666C 340.978 223.022 341.822 222.978 341.866 222.934C 342.222 222.578 341.378 222.622 341.334 222.666z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 377.6 222.4L 378.4 223.2L 377.6 222.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 340 223.2L 340.8 224L 340 223.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 342.4 223.2L 343.2 224L 342.4 223.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 378.4 223.2L 379.2 224L 378.4 223.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 339.2 224L 340 224.8L 339.2 224z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 343.2 224L 344 224.8L 343.2 224z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 379.2 224L 380 224.8L 379.2 224z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 338.4 224.8L 339.2 225.6L 338.4 224.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 344 224.8L 344.8 225.6L 344 224.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 380 224.8L 380.8 225.6L 380 224.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 337.6 225.6L 338.4 226.4L 337.6 225.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 344.8 225.6L 345.6 226.4L 344.8 225.6z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 380.8 225.6L 381.6 226.4L 380.8 225.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 336.8 226.4L 337.6 227.2L 336.8 226.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 345.6 226.4L 346.4 227.2L 345.6 226.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 381.6 226.4L 382.4 227.2L 381.6 226.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 336 227.2L 336.8 228L 336 227.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 346.4 227.2L 347.2 228L 346.4 227.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 382.4 227.2L 383.2 228L 382.4 227.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 335.2 228L 336 228.8L 335.2 228z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 347.2 228L 348 228.8L 347.2 228z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 383.2 228L 384 228.8L 383.2 228z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 334.4 228.8L 335.2 229.6L 334.4 228.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 348 228.8L 348.8 229.6L 348 228.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 384 228.8L 384.8 229.6L 384 228.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 333.6 229.6L 334.4 230.4L 333.6 229.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 348.8 229.6L 349.6 230.4L 348.8 229.6z"/>
<path style="stroke:none; fill:#928282" d="M 384.8 229.6L 385.6 230.4L 384.8 229.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 332.8 230.4L 333.6 231.2L 332.8 230.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 349.6 230.4L 350.4 231.2L 349.6 230.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 332 231.2L 332.8 232L 332 231.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 350.4 231.2L 351.2 232L 350.4 231.2z"/>
<path style="stroke:none; fill:#afafaf" d="M 296 232L 296.8 232.8L 296 232z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 331.2 232L 332 232.8L 331.2 232z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 351.2 232L 352 232.8L 351.2 232z"/>
<path style="stroke:none; fill:#928282" d="M 386.4 232L 387.2 232.8L 386.4 232z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 330.4 232.8L 331.2 233.6L 330.4 232.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 352 232.8L 352.8 233.6L 352 232.8z"/>
<path style="stroke:none; fill:#afafaf" d="M 295.2 233.6L 296 234.4L 295.2 233.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 329.6 233.6L 330.4 234.4L 329.6 233.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 352.8 233.6L 353.6 234.4L 352.8 233.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 328.8 234.4L 329.6 235.2L 328.8 234.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 353.6 234.4L 354.4 235.2L 353.6 234.4z"/>
<path style="stroke:none; fill:#afafaf" d="M 387.2 234.4L 388 235.2L 387.2 234.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 328 235.2L 328.8 236L 328 235.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 354.4 235.2L 355.2 236L 354.4 235.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 294.4 236L 294.4 238.4L 295.2 238.4C 294.999 237.238 294.948 236.998 294.4 236M 327.2 236L 328 236.8L 327.2 236z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 355.2 236L 356 236.8L 355.2 236z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 326.4 236.8L 327.2 237.6L 326.4 236.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 356 236.8L 356.8 237.6L 356 236.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 325.6 237.6L 326.4 238.4L 325.6 237.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 356.8 237.6L 357.6 238.4L 356.8 237.6z"/>
<path style="stroke:none; fill:#dbdbdb" d="M 294.666 238.934C 294.622 238.978 294.578 239.822 294.934 239.466C 294.978 239.422 295.022 238.578 294.666 238.934z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 324.8 238.4L 325.6 239.2L 324.8 238.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 357.6 238.4L 358.4 239.2L 357.6 238.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 324 239.2L 324.8 240L 324 239.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 358.4 239.2L 359.2 240L 358.4 239.2z"/>
<path style="stroke:none; fill:#afafaf" d="M 294.666 240.534C 294.622 240.578 294.578 241.422 294.934 241.066C 294.978 241.022 295.022 240.178 294.666 240.534z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 323.2 240L 324 240.8L 323.2 240z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 359.2 240L 360 240.8L 359.2 240z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 322.4 240.8L 323.2 241.6L 322.4 240.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 360 240.8L 360.8 241.6L 360 240.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 387.2 240.8L 388 241.6L 387.2 240.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 321.6 241.6L 322.4 242.4L 321.6 241.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 360.8 241.6L 361.6 242.4L 360.8 241.6M 387.2 241.6L 388 242.4L 387.2 241.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 320.8 242.4L 321.6 243.2L 320.8 242.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 361.6 242.4L 362.4 243.2L 361.6 242.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 295.2 243.2L 296 244L 295.2 243.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 320 243.2L 320.8 244L 320 243.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 362.4 243.2L 363.2 244L 362.4 243.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 386.4 243.2L 387.2 244L 386.4 243.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 319.2 244L 320 244.8L 319.2 244z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 363.2 244L 364 244.8L 363.2 244z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 318.4 244.8L 319.2 245.6L 318.4 244.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 364 244.8L 364.8 245.6L 364 244.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 385.6 244.8L 386.4 245.6L 385.6 244.8M 317.6 245.6L 318.4 246.4L 317.6 245.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 364.8 245.6L 365.6 246.4L 364.8 245.6M 296.8 246.4L 297.6 247.2L 296.8 246.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 316.8 246.4L 317.6 247.2L 316.8 246.4z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 365.6 246.4L 366.4 247.2L 365.6 246.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 21.6 247.2L 21.6 249.6L 22.4 249.6C 22.199 248.438 22.1478 248.198 21.6 247.2M 297.6 247.2L 298.4 248L 297.6 247.2M 316 247.2L 316.8 248L 316 247.2z"/>
<path style="stroke:none; fill:#959090" d="M 366.4 247.2L 367.2 248L 366.4 247.2z"/>
<path style="stroke:none; fill:#afafaf" d="M 298.4 248L 299.2 248.8L 298.4 248M 315.2 248L 316 248.8L 315.2 248z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 382.4 248L 383.2 248.8L 382.4 248z"/>
<path style="stroke:none; fill:#928282" d="M 299.2 248.8L 300 249.6L 299.2 248.8M 314.4 248.8L 315.2 249.6L 314.4 248.8z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 368.8 248.8L 369.6 249.6L 368.8 248.8z"/>
<path style="stroke:none; fill:#876868" d="M 21.8666 250.134C 21.8222 250.178 21.7778 251.022 22.1334 250.666C 22.1778 250.622 22.2222 249.778 21.8666 250.134z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 300.8 249.6L 301.6 250.4L 300.8 249.6M 312.8 249.6L 313.6 250.4L 312.8 249.6z"/>
<path style="stroke:none; fill:#afafaf" d="M 370.4 249.6L 371.2 250.4L 370.4 249.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 379.2 249.6L 380 250.4L 379.2 249.6z"/>
<path style="stroke:none; fill:#8a7474" d="M 380 249.6L 380.8 250.4L 380 249.6z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 302.4 250.4L 303.2 251.2L 302.4 250.4M 311.2 250.4L 312 251.2L 311.2 250.4M 373.334 250.666C 372.978 251.022 373.822 250.978 373.866 250.934C 374.222 250.578 373.378 250.622 373.334 250.666z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 374.4 250.4L 374.4 251.2L 377.6 251.2C 376.395 250.654 375.748 250.539 374.4 250.4z"/>
<path style="stroke:none; fill:#928282" d="M 305.334 251.466C 304.978 251.822 305.822 251.778 305.866 251.734C 306.222 251.378 305.378 251.422 305.334 251.466z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 306.934 251.466C 306.578 251.822 307.422 251.778 307.466 251.734C 307.822 251.378 306.978 251.422 306.934 251.466z"/>
<path style="stroke:none; fill:#876868" d="M 308.534 251.466C 308.178 251.822 309.022 251.778 309.066 251.734C 309.422 251.378 308.578 251.422 308.534 251.466z"/>
<path style="stroke:none; fill:#959090" d="M 22.6666 254.934C 22.6222 254.978 22.5778 255.822 22.9334 255.466C 22.9778 255.422 23.0222 254.578 22.6666 254.934z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 23.2 258.4L 24 259.2L 23.2 258.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 23.2 259.2L 24 260L 23.2 259.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 24 261.6L 24.8 262.4L 24 261.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 24.8 264L 25.6 264.8L 24.8 264z"/>
<path style="stroke:none; fill:#8a7474" d="M 24.8 264.8L 25.6 265.6L 24.8 264.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 25.6 266.4L 26.4 267.2L 25.6 266.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 26.4 268.8L 27.2 269.6L 26.4 268.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 27.2 270.4L 28 271.2L 27.2 270.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 29.6 275.2L 30.4 276L 29.6 275.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 30.4 276.8L 31.2 277.6L 30.4 276.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 32 279.2L 32.8 280L 32 279.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 34.4 282.4L 35.2 283.2L 34.4 282.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 35.2 283.2L 36 284L 35.2 283.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 36 284L 36.8 284.8L 36 284z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 268 284L 268 288.8L 268.8 288.8C 268.762 286.998 268.699 285.642 268 284z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 36.8 284.8L 37.6 285.6L 36.8 284.8M 39.2 287.2L 40 288L 39.2 287.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 40 288L 40.8 288.8L 40 288z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 40.8 288.8L 41.6 289.6L 40.8 288.8z"/>
<path style="stroke:none; fill:#8a7474" d="M 268.266 289.334C 268.222 289.378 268.178 290.222 268.534 289.866C 268.578 289.822 268.622 288.978 268.266 289.334z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 44 291.2L 44.8 292L 44 291.2M 46.4 292.8L 47.2 293.6L 46.4 292.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 48 293.6L 48.8 294.4L 48 293.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 267.2 295.2L 267.2 297.6L 268 297.6C 267.799 296.438 267.748 296.198 267.2 295.2M 54.4 296.8L 55.2 297.6L 54.4 296.8z"/>
<path style="stroke:none; fill:#8a7474" d="M 56 297.6L 56.8 298.4L 56 297.6z"/>
<path style="stroke:none; fill:#959090" d="M 58.4 298.4L 59.2 299.2L 58.4 298.4z"/>
<path style="stroke:none; fill:#928282" d="M 60.8 299.2L 61.6 300L 60.8 299.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 61.6 299.2L 62.4 300L 61.6 299.2z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 64 300L 64.8 300.8L 64 300z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 64.8 300L 65.6 300.8L 64.8 300M 68.5334 301.066C 68.1778 301.422 69.0222 301.378 69.0666 301.334C 69.4222 300.978 68.5778 301.022 68.5334 301.066z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 266.666 301.334C 266.622 301.378 266.578 302.222 266.934 301.866C 266.978 301.822 267.022 300.978 266.666 301.334z"/>
<path style="stroke:none; fill:#afafaf" d="M 72.8 301.6L 72.8 302.4L 75.2 302.4C 74.2014 301.852 73.9612 301.801 72.8 301.6z"/>
<path style="stroke:none; fill:#855757" d="M 81.6 302.4L 81.6 303.2L 84.8 303.2C 83.5952 302.654 82.948 302.539 81.6 302.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 84.8 302.4L 84.8 303.2L 111.2 303.2C 104.125 300.231 92.4808 302.4 84.8 302.4z"/>
<path style="stroke:none; fill:#afafaf" d="M 111.2 302.4L 111.2 303.2L 113.6 303.2C 112.602 302.652 112.362 302.601 111.2 302.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 266.4 302.4L 267.2 303.2L 266.4 302.4z"/>
<path style="stroke:none; fill:#928282" d="M 115.2 303.2L 116 304L 115.2 303.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 116 303.2L 116.8 304L 116 303.2z"/>
<path style="stroke:none; fill:#959090" d="M 117.6 304L 118.4 304.8L 117.6 304z"/>
<path style="stroke:none; fill:#928282" d="M 119.2 304.8L 120 305.6L 119.2 304.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 265.6 304.8L 266.4 305.6L 265.6 304.8z"/>
<path style="stroke:none; fill:#959090" d="M 120.8 305.6L 121.6 306.4L 120.8 305.6z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 265.6 305.6L 266.4 306.4L 265.6 305.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 122.4 306.4L 123.2 307.2L 122.4 306.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 124.8 308L 125.6 308.8L 124.8 308z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 264.8 308.8L 265.6 309.6L 264.8 308.8z"/>
<path style="stroke:none; fill:#928282" d="M 127.2 309.6L 128 310.4L 127.2 309.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 128.8 310.4L 129.6 311.2L 128.8 310.4z"/>
<path style="stroke:none; fill:#afafaf" d="M 264 311.2L 264.8 312L 264 311.2M 131.2 312L 132 312.8L 131.2 312z"/>
<path style="stroke:none; fill:#959090" d="M 133.6 313.6L 134.4 314.4L 133.6 313.6z"/>
<path style="stroke:none; fill:#afafaf" d="M 263.2 313.6L 264 314.4L 263.2 313.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 135.2 314.4L 136 315.2L 135.2 314.4z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 137.6 316L 138.4 316.8L 137.6 316z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 262.4 316L 263.2 316.8L 262.4 316z"/>
<path style="stroke:none; fill:#959090" d="M 140 317.6L 140.8 318.4L 140 317.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 261.6 317.6L 262.4 318.4L 261.6 317.6M 141.6 318.4L 142.4 319.2L 141.6 318.4z"/>
<path style="stroke:none; fill:#afafaf" d="M 144 320L 144.8 320.8L 144 320z"/>
<path style="stroke:none; fill:#8a7474" d="M 260.8 320L 261.6 320.8L 260.8 320z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 146.4 321.6L 147.2 322.4L 146.4 321.6z"/>
<path style="stroke:none; fill:#8a7474" d="M 260 321.6L 260.8 322.4L 260 321.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 148 322.4L 148.8 323.2L 148 322.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 148.8 323.2L 149.6 324L 148.8 323.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 150.4 324L 151.2 324.8L 150.4 324z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 152.8 325.6L 153.6 326.4L 152.8 325.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 257.6 325.6L 258.4 326.4L 257.6 325.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 154.4 326.4L 155.2 327.2L 154.4 326.4z"/>
<path style="stroke:none; fill:#928282" d="M 256.8 327.2L 257.6 328L 256.8 327.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 156.8 328L 157.6 328.8L 156.8 328z"/>
<path style="stroke:none; fill:#959090" d="M 159.2 329.6L 160 330.4L 159.2 329.6z"/>
<path style="stroke:none; fill:#8a7474" d="M 255.2 329.6L 256 330.4L 255.2 329.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 160.8 330.4L 161.6 331.2L 160.8 330.4z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 254.4 330.4L 255.2 331.2L 254.4 330.4z"/>
<path style="stroke:none; fill:#928282" d="M 161.6 331.2L 162.4 332L 161.6 331.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 163.2 332L 164 332.8L 163.2 332z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 165.6 333.6L 166.4 334.4L 165.6 333.6z"/>
<path style="stroke:none; fill:#959090" d="M 252 333.6L 252.8 334.4L 252 333.6z"/>
<path style="stroke:none; fill:#afafaf" d="M 251.2 334.4L 252 335.2L 251.2 334.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 168 335.2L 168.8 336L 168 335.2z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 250.4 335.2L 251.2 336L 250.4 335.2M 169.6 336L 170.4 336.8L 169.6 336M 249.6 336L 250.4 336.8L 249.6 336M 248.8 336.8L 249.6 337.6L 248.8 336.8z"/>
<path style="stroke:none; fill:#9d9a9a" d="M 172 337.6L 172.8 338.4L 172 337.6z"/>
<path style="stroke:none; fill:#afafaf" d="M 248 337.6L 248.8 338.4L 248 337.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 173.6 338.4L 174.4 339.2L 173.6 338.4z"/>
<path style="stroke:none; fill:#959090" d="M 247.2 338.4L 248 339.2L 247.2 338.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 246.4 339.2L 247.2 340L 246.4 339.2z"/>
<path style="stroke:none; fill:#959090" d="M 176 340L 176.8 340.8L 176 340M 177.6 340.8L 178.4 341.6L 177.6 340.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 244 340.8L 244.8 341.6L 244 340.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 179.2 341.6L 180 342.4L 179.2 341.6z"/>
<path style="stroke:none; fill:#959090" d="M 243.2 341.6L 244 342.4L 243.2 341.6z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 180.8 342.4L 181.6 343.2L 180.8 342.4M 182.4 343.2L 183.2 344L 182.4 343.2z"/>
<path style="stroke:none; fill:#959090" d="M 240.8 343.2L 241.6 344L 240.8 343.2z"/>
<path style="stroke:none; fill:#928282" d="M 184 344L 184.8 344.8L 184 344z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 239.2 344L 240 344.8L 239.2 344z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 186.4 344.8L 187.2 345.6L 186.4 344.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 188 345.6L 188.8 346.4L 188 345.6z"/>
<path style="stroke:none; fill:#bdbdbd" d="M 190.4 346.4L 191.2 347.2L 190.4 346.4z"/>
<path style="stroke:none; fill:#8a7474" d="M 192 347.2L 192.8 348L 192 347.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 192.8 347.2L 193.6 348L 192.8 347.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 232.8 347.2L 233.6 348L 232.8 347.2z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 195.2 348L 196 348.8L 195.2 348z"/>
<path style="stroke:none; fill:#959090" d="M 231.2 348L 232 348.8L 231.2 348M 197.6 348.8L 198.4 349.6L 197.6 348.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 198.4 348.8L 199.2 349.6L 198.4 348.8M 228 348.8L 228.8 349.6L 228 348.8z"/>
<path style="stroke:none; fill:#928282" d="M 228.8 348.8L 229.6 349.6L 228.8 348.8z"/>
<path style="stroke:none; fill:#aaaaaa" d="M 201.6 349.6L 202.4 350.4L 201.6 349.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 224.8 349.6L 225.6 350.4L 224.8 349.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 225.6 349.6L 226.4 350.4L 225.6 349.6M 205.6 350.4L 205.6 351.2L 208 351.2C 207.002 350.652 206.762 350.601 205.6 350.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 219.2 350.4L 219.2 351.2L 221.6 351.2C 220.602 350.652 220.361 350.601 219.2 350.4z"/>
<path style="stroke:none; fill:#855757" d="M 222.134 350.666C 221.778 351.022 222.622 350.978 222.666 350.934C 223.022 350.578 222.178 350.622 222.134 350.666z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 41 KiB

330
svg/next.svg Normal file
View File

@ -0,0 +1,330 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#9b3b3b" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 60.8 25.6L 60.8 26.4L 63.2 26.4C 62.2013 25.8522 61.9613 25.801 60.8 25.6z"/>
<path style="stroke:none; fill:#e9e9e9" d="M 63.2 25.6L 63.2 26.4L 67.2 26.4C 65.7848 25.7769 64.7712 25.6701 63.2 25.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 67.2 25.6L 67.2 26.4L 70.4 26.4C 69.1951 25.8536 68.5482 25.7393 67.2 25.6z"/>
<path style="stroke:none; fill:#855c5c" d="M 70.9334 25.8666C 70.5778 26.2222 71.4222 26.1778 71.4666 26.1334C 71.8222 25.7778 70.9778 25.8222 70.9334 25.8666z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 314.934 25.8666C 314.578 26.2222 315.422 26.1778 315.466 26.1334C 315.822 25.7778 314.978 25.8222 314.934 25.8666z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 316 25.6L 316 26.4L 318.4 26.4C 317.402 25.8522 317.162 25.801 316 25.6z"/>
<path style="stroke:none; fill:#ffffff" d="M 318.4 25.9395C 313.17 26.6346 308.016 27.2394 303.2 29.5852C 272.1 44.7333 281.6 91.72 281.6 120L 281.6 293.6L 281.6 335.2C 281.6 345.375 281.642 356.697 287.274 365.6C 301.01 387.311 330.234 385.898 352.8 383.053C 393.705 377.895 384 321.294 384 292.8L 384 121.6L 384 76.8C 384 66.6682 384.386 55.7142 379.698 46.4C 368.59 24.326 340.042 23.063 318.4 25.9395z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 346.4 25.6L 346.4 26.4L 350.4 26.4C 348.985 25.7769 347.971 25.6701 346.4 25.6z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 56.8 26.4L 57.6 27.2L 56.8 26.4z"/>
<path style="stroke:none; fill:#ffffff" d="M 57.6 26.7716C 20.039 33.5438 25.6 76.663 25.6 104.8C 25.6 183.479 22.1899 263.006 25.6315 341.6C 26.7802 367.832 46.8506 386.816 73.6 382.96C 93.2808 380.122 109.487 358.44 123.2 345.672C 157.147 314.062 192.526 283.724 225.6 251.202C 242.062 235.015 259.589 221.713 254.829 196C 251.934 180.358 238.905 170.886 228 160.728L 164.8 102.328L 112 53.5685C 96.284 38.5663 81.3096 22.4968 57.6 26.7716z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 74.4 26.4L 75.2 27.2L 74.4 26.4z"/>
<path style="stroke:none; fill:#918080" d="M 75.2 26.4L 76 27.2L 75.2 26.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 310.4 26.4L 311.2 27.2L 310.4 26.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 311.2 26.4L 312 27.2L 311.2 26.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 354.4 26.4L 355.2 27.2L 354.4 26.4M 53.6 27.2L 54.4 28L 53.6 27.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 77.6 27.2L 78.4 28L 77.6 27.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 308 27.2L 308.8 28L 308 27.2M 356.8 27.2L 357.6 28L 356.8 27.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 51.2 28L 52 28.8L 51.2 28z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 80 28L 80.8 28.8L 80 28z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 305.6 28L 306.4 28.8L 305.6 28M 359.2 28L 360 28.8L 359.2 28z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 49.6 28.8L 50.4 29.6L 49.6 28.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 81.6 28.8L 82.4 29.6L 81.6 28.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 48 29.6L 48.8 30.4L 48 29.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 46.4 30.4L 47.2 31.2L 46.4 30.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 300.8 30.4L 301.6 31.2L 300.8 30.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 44.8 31.2L 45.6 32L 44.8 31.2z"/>
<path style="stroke:none; fill:#bababa" d="M 86.4 31.2L 87.2 32L 86.4 31.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 299.2 31.2L 300 32L 299.2 31.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 365.6 31.2L 366.4 32L 365.6 31.2z"/>
<path style="stroke:none; fill:#8d7373" d="M 88 32L 88.8 32.8L 88 32z"/>
<path style="stroke:none; fill:#bababa" d="M 42.4 32.8L 43.2 33.6L 42.4 32.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 88.8 32.8L 89.6 33.6L 88.8 32.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 296.8 32.8L 297.6 33.6L 296.8 32.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 368 32.8L 368.8 33.6L 368 32.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 296 33.6L 296.8 34.4L 296 33.6M 368.8 33.6L 369.6 34.4L 368.8 33.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 91.2 34.4L 92 35.2L 91.2 34.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 39.2 35.2L 40 36L 39.2 35.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 92 35.2L 92.8 36L 92 35.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 38.4 36L 39.2 36.8L 38.4 36z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 92.8 36L 93.6 36.8L 92.8 36z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 37.6 36.8L 38.4 37.6L 37.6 36.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 93.6 36.8L 94.4 37.6L 93.6 36.8z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 36.8 37.6L 37.6 38.4L 36.8 37.6M 36 38.4L 36.8 39.2L 36 38.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 35.2 39.2L 36 40L 35.2 39.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 289.6 40L 290.4 40.8L 289.6 40M 375.2 40L 376 40.8L 375.2 40z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 288.8 40.8L 289.6 41.6L 288.8 40.8M 376 40.8L 376.8 41.6L 376 40.8z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 32.8 42.4L 33.6 43.2L 32.8 42.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 100 42.4L 100.8 43.2L 100 42.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 100.8 43.2L 101.6 44L 100.8 43.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 287.2 43.2L 288 44L 287.2 43.2M 377.6 43.2L 378.4 44L 377.6 43.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 101.6 44L 102.4 44.8L 101.6 44M 31.2 44.8L 32 45.6L 31.2 44.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 102.4 44.8L 103.2 45.6L 102.4 44.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 103.2 45.6L 104 46.4L 103.2 45.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 104 46.4L 104.8 47.2L 104 46.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 28.8 49.6L 29.6 50.4L 28.8 49.6z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 284 49.6L 284.8 50.4L 284 49.6M 380.8 49.6L 381.6 50.4L 380.8 49.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 28 51.2L 28.8 52L 28 51.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 110.4 52L 111.2 52.8L 110.4 52z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 283.2 52L 284 52.8L 283.2 52z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 381.6 52L 382.4 52.8L 381.6 52z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 111.2 52.8L 112 53.6L 111.2 52.8z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 27.2 53.6L 28 54.4L 27.2 53.6M 112 53.6L 112.8 54.4L 112 53.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 112.8 54.4L 113.6 55.2L 112.8 54.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 282.4 54.4L 283.2 55.2L 282.4 54.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 382.4 54.4L 383.2 55.2L 382.4 54.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 113.6 55.2L 114.4 56L 113.6 55.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 282.4 55.2L 283.2 56L 282.4 55.2M 382.4 55.2L 383.2 56L 382.4 55.2z"/>
<path style="stroke:none; fill:#918080" d="M 26.4 56L 27.2 56.8L 26.4 56z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 114.4 56L 115.2 56.8L 114.4 56z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 26.4 56.8L 27.2 57.6L 26.4 56.8z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 281.866 58.9334C 281.822 58.9778 281.778 59.8222 282.134 59.4666C 282.178 59.4222 282.222 58.5777 281.866 58.9334z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 383.466 58.9334C 383.422 58.9778 383.378 59.8222 383.734 59.4666C 383.778 59.4222 383.822 58.5777 383.466 58.9334z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 25.6 60L 25.6 62.4L 26.4 62.4C 26.199 61.2386 26.1478 60.9987 25.6 60z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 281.6 60L 281.6 62.4L 282.4 62.4C 282.199 61.2387 282.148 60.9987 281.6 60M 383.2 60L 383.2 62.4L 384 62.4C 383.799 61.2387 383.748 60.9987 383.2 60z"/>
<path style="stroke:none; fill:#948e8e" d="M 120.8 61.6L 121.6 62.4L 120.8 61.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 25.6 62.4L 25.6 64.8L 26.4 64.8C 26.199 63.6386 26.1478 63.3987 25.6 62.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 121.6 62.4L 122.4 63.2L 121.6 62.4z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 122.4 63.2L 123.2 64L 122.4 63.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 123.2 64L 124 64.8L 123.2 64z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 124 64.8L 124.8 65.6L 124 64.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 124.8 65.6L 125.6 66.4L 124.8 65.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 131.2 71.2L 132 72L 131.2 71.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 132 72L 132.8 72.8L 132 72z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 132.8 72.8L 133.6 73.6L 132.8 72.8z"/>
<path style="stroke:none; fill:#bababa" d="M 133.6 73.6L 134.4 74.4L 133.6 73.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 134.4 74.4L 135.2 75.2L 134.4 74.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 135.2 75.2L 136 76L 135.2 75.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 141.6 80.8L 142.4 81.6L 141.6 80.8z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 142.4 81.6L 143.2 82.4L 142.4 81.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 143.2 82.4L 144 83.2L 143.2 82.4z"/>
<path style="stroke:none; fill:#bababa" d="M 144 83.2L 144.8 84L 144 83.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 144.8 84L 145.6 84.8L 144.8 84z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 145.6 84.8L 146.4 85.6L 145.6 84.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 152 90.4L 152.8 91.2L 152 90.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 152.8 91.2L 153.6 92L 152.8 91.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 153.6 92L 154.4 92.8L 153.6 92z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 154.4 92.8L 155.2 93.6L 154.4 92.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 155.2 93.6L 156 94.4L 155.2 93.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 156 94.4L 156.8 95.2L 156 94.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 162.4 100L 163.2 100.8L 162.4 100z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 163.2 100.8L 164 101.6L 163.2 100.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 164 101.6L 164.8 102.4L 164 101.6z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 164.8 102.4L 165.6 103.2L 164.8 102.4z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 165.6 103.2L 166.4 104L 165.6 103.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 166.4 104L 167.2 104.8L 166.4 104z"/>
<path style="stroke:none; fill:#948e8e" d="M 172.8 109.6L 173.6 110.4L 172.8 109.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 173.6 110.4L 174.4 111.2L 173.6 110.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 174.4 111.2L 175.2 112L 174.4 111.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 175.2 112L 176 112.8L 175.2 112z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 176 112.8L 176.8 113.6L 176 112.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 176.8 113.6L 177.6 114.4L 176.8 113.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 183.2 119.2L 184 120L 183.2 119.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 184 120L 184.8 120.8L 184 120z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 184.8 120.8L 185.6 121.6L 184.8 120.8z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 185.6 121.6L 186.4 122.4L 185.6 121.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 186.4 122.4L 187.2 123.2L 186.4 122.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 187.2 123.2L 188 124L 187.2 123.2z"/>
<path style="stroke:none; fill:#918080" d="M 193.6 128.8L 194.4 129.6L 193.6 128.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 194.4 129.6L 195.2 130.4L 194.4 129.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 195.2 130.4L 196 131.2L 195.2 130.4z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 196 131.2L 196.8 132L 196 131.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 196.8 132L 197.6 132.8L 196.8 132z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 197.6 132.8L 198.4 133.6L 197.6 132.8z"/>
<path style="stroke:none; fill:#918080" d="M 204 138.4L 204.8 139.2L 204 138.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 204.8 139.2L 205.6 140L 204.8 139.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 205.6 140L 206.4 140.8L 205.6 140z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 206.4 140.8L 207.2 141.6L 206.4 140.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 207.2 141.6L 208 142.4L 207.2 141.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 208 142.4L 208.8 143.2L 208 142.4z"/>
<path style="stroke:none; fill:#8d7373" d="M 214.4 148L 215.2 148.8L 214.4 148z"/>
<path style="stroke:none; fill:#948e8e" d="M 215.2 148.8L 216 149.6L 215.2 148.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 216 149.6L 216.8 150.4L 216 149.6z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 216.8 150.4L 217.6 151.2L 216.8 150.4z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 217.6 151.2L 218.4 152L 217.6 151.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 218.4 152L 219.2 152.8L 218.4 152z"/>
<path style="stroke:none; fill:#8d7373" d="M 224.8 157.6L 225.6 158.4L 224.8 157.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 225.6 158.4L 226.4 159.2L 225.6 158.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 226.4 159.2L 227.2 160L 226.4 159.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 227.2 160L 228 160.8L 227.2 160z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 228 160.8L 228.8 161.6L 228 160.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 228.8 161.6L 229.6 162.4L 228.8 161.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 229.6 162.4L 230.4 163.2L 229.6 162.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 236 168L 236.8 168.8L 236 168z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 236.8 168.8L 237.6 169.6L 236.8 168.8z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 237.6 169.6L 238.4 170.4L 237.6 169.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 238.4 170.4L 239.2 171.2L 238.4 170.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 239.2 171.2L 240 172L 239.2 171.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 240 172L 240.8 172.8L 240 172z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 245.6 177.6L 246.4 178.4L 245.6 177.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 246.4 178.4L 247.2 179.2L 246.4 178.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 248 180.8L 248.8 181.6L 248 180.8z"/>
<path style="stroke:none; fill:#8d7373" d="M 248.8 181.6L 249.6 182.4L 248.8 181.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 249.6 183.2L 250.4 184L 249.6 183.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 250.4 184.8L 251.2 185.6L 250.4 184.8M 251.2 186.4L 252 187.2L 251.2 186.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 252 188L 252.8 188.8L 252 188z"/>
<path style="stroke:none; fill:#948e8e" d="M 252.8 189.6L 253.6 190.4L 252.8 189.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 253.6 192L 254.4 192.8L 253.6 192z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 254.4 195.2L 255.2 196L 254.4 195.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 255.2 199.2L 255.2 202.4L 256 202.4C 255.861 201.052 255.746 200.405 255.2 199.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 255.466 206.134C 255.422 206.178 255.378 207.022 255.734 206.666C 255.778 206.622 255.822 205.778 255.466 206.134z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 255.2 207.2L 255.2 209.6L 256 209.6C 255.799 208.438 255.748 208.198 255.2 207.2z"/>
<path style="stroke:none; fill:#855c5c" d="M 255.466 210.134C 255.422 210.178 255.378 211.022 255.734 210.666C 255.778 210.622 255.822 209.778 255.466 210.134z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 254.4 213.6L 255.2 214.4L 254.4 213.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 253.6 216.8L 254.4 217.6L 253.6 216.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 252.8 219.2L 253.6 220L 252.8 219.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 252 220.8L 252.8 221.6L 252 220.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 251.2 222.4L 252 223.2L 251.2 222.4M 250.4 224L 251.2 224.8L 250.4 224z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 249.6 225.6L 250.4 226.4L 249.6 225.6z"/>
<path style="stroke:none; fill:#8d7373" d="M 248.8 227.2L 249.6 228L 248.8 227.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 248 228L 248.8 228.8L 248 228z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 246.4 230.4L 247.2 231.2L 246.4 230.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 245.6 231.2L 246.4 232L 245.6 231.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 240 236.8L 240.8 237.6L 240 236.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 239.2 237.6L 240 238.4L 239.2 237.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 238.4 238.4L 239.2 239.2L 238.4 238.4z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 237.6 239.2L 238.4 240L 237.6 239.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 236.8 240L 237.6 240.8L 236.8 240z"/>
<path style="stroke:none; fill:#948e8e" d="M 236 240.8L 236.8 241.6L 236 240.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 229.6 246.4L 230.4 247.2L 229.6 246.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 228.8 247.2L 229.6 248L 228.8 247.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 228 248L 228.8 248.8L 228 248z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 227.2 248.8L 228 249.6L 227.2 248.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 226.4 249.6L 227.2 250.4L 226.4 249.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 225.6 250.4L 226.4 251.2L 225.6 250.4z"/>
<path style="stroke:none; fill:#8d7373" d="M 224.8 251.2L 225.6 252L 224.8 251.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 218.4 256.8L 219.2 257.6L 218.4 256.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 217.6 257.6L 218.4 258.4L 217.6 257.6z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 216.8 258.4L 217.6 259.2L 216.8 258.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 216 259.2L 216.8 260L 216 259.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 215.2 260L 216 260.8L 215.2 260z"/>
<path style="stroke:none; fill:#8d7373" d="M 214.4 260.8L 215.2 261.6L 214.4 260.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 208 266.4L 208.8 267.2L 208 266.4z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 207.2 267.2L 208 268L 207.2 267.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 206.4 268L 207.2 268.8L 206.4 268z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 205.6 268.8L 206.4 269.6L 205.6 268.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 204.8 269.6L 205.6 270.4L 204.8 269.6z"/>
<path style="stroke:none; fill:#918080" d="M 204 270.4L 204.8 271.2L 204 270.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 197.6 276L 198.4 276.8L 197.6 276z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 196.8 276.8L 197.6 277.6L 196.8 276.8z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 196 277.6L 196.8 278.4L 196 277.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 195.2 278.4L 196 279.2L 195.2 278.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 194.4 279.2L 195.2 280L 194.4 279.2z"/>
<path style="stroke:none; fill:#918080" d="M 193.6 280L 194.4 280.8L 193.6 280z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 187.2 285.6L 188 286.4L 187.2 285.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 186.4 286.4L 187.2 287.2L 186.4 286.4z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 185.6 287.2L 186.4 288L 185.6 287.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 184.8 288L 185.6 288.8L 184.8 288z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 184 288.8L 184.8 289.6L 184 288.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 183.2 289.6L 184 290.4L 183.2 289.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 176.8 295.2L 177.6 296L 176.8 295.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 176 296L 176.8 296.8L 176 296z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 175.2 296.8L 176 297.6L 175.2 296.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 174.4 297.6L 175.2 298.4L 174.4 297.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 173.6 298.4L 174.4 299.2L 173.6 298.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 172.8 299.2L 173.6 300L 172.8 299.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 166.4 304.8L 167.2 305.6L 166.4 304.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 165.6 305.6L 166.4 306.4L 165.6 305.6z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 164.8 306.4L 165.6 307.2L 164.8 306.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 164 307.2L 164.8 308L 164 307.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 163.2 308L 164 308.8L 163.2 308z"/>
<path style="stroke:none; fill:#948e8e" d="M 162.4 308.8L 163.2 309.6L 162.4 308.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 156 314.4L 156.8 315.2L 156 314.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 155.2 315.2L 156 316L 155.2 315.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 154.4 316L 155.2 316.8L 154.4 316z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 153.6 316.8L 154.4 317.6L 153.6 316.8z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 152.8 317.6L 153.6 318.4L 152.8 317.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 152 318.4L 152.8 319.2L 152 318.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 145.6 324L 146.4 324.8L 145.6 324z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 144.8 324.8L 145.6 325.6L 144.8 324.8z"/>
<path style="stroke:none; fill:#bababa" d="M 144 325.6L 144.8 326.4L 144 325.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 143.2 326.4L 144 327.2L 143.2 326.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 142.4 327.2L 143.2 328L 142.4 327.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 141.6 328L 142.4 328.8L 141.6 328z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 135.2 333.6L 136 334.4L 135.2 333.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 134.4 334.4L 135.2 335.2L 134.4 334.4z"/>
<path style="stroke:none; fill:#bababa" d="M 133.6 335.2L 134.4 336L 133.6 335.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 132.8 336L 133.6 336.8L 132.8 336z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 132 336.8L 132.8 337.6L 132 336.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 131.2 337.6L 132 338.4L 131.2 337.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 124.8 343.2L 125.6 344L 124.8 343.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 124 344L 124.8 344.8L 124 344z"/>
<path style="stroke:none; fill:#dddddd" d="M 25.6 344.8L 25.6 347.2L 26.4 347.2C 26.199 346.038 26.1478 345.798 25.6 344.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 123.2 344.8L 124 345.6L 123.2 344.8z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 122.4 345.6L 123.2 346.4L 122.4 345.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 121.6 346.4L 122.4 347.2L 121.6 346.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 281.6 346.4L 281.6 348.8L 282.4 348.8C 282.199 347.638 282.148 347.398 281.6 346.4M 383.466 346.934C 383.422 346.978 383.378 347.822 383.734 347.466C 383.778 347.422 383.822 346.578 383.466 346.934z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 25.6 347.2L 25.6 349.6L 26.4 349.6C 26.199 348.438 26.1478 348.198 25.6 347.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 120.8 347.2L 121.6 348L 120.8 347.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 383.2 348L 383.2 350.4L 384 350.4C 383.799 349.238 383.748 348.998 383.2 348z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 281.6 348.8L 281.6 351.2L 282.4 351.2C 282.199 350.038 282.148 349.798 281.6 348.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 26.4 352L 27.2 352.8L 26.4 352z"/>
<path style="stroke:none; fill:#918080" d="M 26.4 352.8L 27.2 353.6L 26.4 352.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 114.4 352.8L 115.2 353.6L 114.4 352.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 113.6 353.6L 114.4 354.4L 113.6 353.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 282.4 353.6L 283.2 354.4L 282.4 353.6M 382.4 353.6L 383.2 354.4L 382.4 353.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 112.8 354.4L 113.6 355.2L 112.8 354.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 282.4 354.4L 283.2 355.2L 282.4 354.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 382.4 354.4L 383.2 355.2L 382.4 354.4z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 27.2 355.2L 28 356L 27.2 355.2M 112 355.2L 112.8 356L 112 355.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 111.2 356L 112 356.8L 111.2 356z"/>
<path style="stroke:none; fill:#948e8e" d="M 110.4 356.8L 111.2 357.6L 110.4 356.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 283.2 356.8L 284 357.6L 283.2 356.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 381.6 356.8L 382.4 357.6L 381.6 356.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 28 357.6L 28.8 358.4L 28 357.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 28.8 359.2L 29.6 360L 28.8 359.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 284 359.2L 284.8 360L 284 359.2M 380.8 359.2L 381.6 360L 380.8 359.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 30.4 362.4L 31.2 363.2L 30.4 362.4M 104 362.4L 104.8 363.2L 104 362.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 103.2 363.2L 104 364L 103.2 363.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 31.2 364L 32 364.8L 31.2 364z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 102.4 364L 103.2 364.8L 102.4 364z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 101.6 364.8L 102.4 365.6L 101.6 364.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 100.8 365.6L 101.6 366.4L 100.8 365.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 287.2 365.6L 288 366.4L 287.2 365.6M 377.6 365.6L 378.4 366.4L 377.6 365.6z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 32.8 366.4L 33.6 367.2L 32.8 366.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 100 366.4L 100.8 367.2L 100 366.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 288.8 368L 289.6 368.8L 288.8 368M 376 368L 376.8 368.8L 376 368z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 289.6 368.8L 290.4 369.6L 289.6 368.8M 375.2 368.8L 376 369.6L 375.2 368.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 35.2 369.6L 36 370.4L 35.2 369.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 36 370.4L 36.8 371.2L 36 370.4z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 36.8 371.2L 37.6 372L 36.8 371.2z"/>
<path style="stroke:none; fill:#bababa" d="M 37.6 372L 38.4 372.8L 37.6 372z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 93.6 372L 94.4 372.8L 93.6 372z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 38.4 372.8L 39.2 373.6L 38.4 372.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 92.8 372.8L 93.6 373.6L 92.8 372.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 39.2 373.6L 40 374.4L 39.2 373.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 92 373.6L 92.8 374.4L 92 373.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 91.2 374.4L 92 375.2L 91.2 374.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 296 375.2L 296.8 376L 296 375.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 368.8 375.2L 369.6 376L 368.8 375.2z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 42.4 376L 43.2 376.8L 42.4 376z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 88.8 376L 89.6 376.8L 88.8 376z"/>
<path style="stroke:none; fill:#948e8e" d="M 296.8 376L 297.6 376.8L 296.8 376z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 368 376L 368.8 376.8L 368 376z"/>
<path style="stroke:none; fill:#8d7373" d="M 88 376.8L 88.8 377.6L 88 376.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 44.8 377.6L 45.6 378.4L 44.8 377.6z"/>
<path style="stroke:none; fill:#bababa" d="M 86.4 377.6L 87.2 378.4L 86.4 377.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 299.2 377.6L 300 378.4L 299.2 377.6z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 365.6 377.6L 366.4 378.4L 365.6 377.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 46.4 378.4L 47.2 379.2L 46.4 378.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 84.8 378.4L 85.6 379.2L 84.8 378.4M 300.8 378.4L 301.6 379.2L 300.8 378.4M 48 379.2L 48.8 380L 48 379.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 49.6 380L 50.4 380.8L 49.6 380z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 81.6 380L 82.4 380.8L 81.6 380z"/>
<path style="stroke:none; fill:#948e8e" d="M 51.2 380.8L 52 381.6L 51.2 380.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 80 380.8L 80.8 381.6L 80 380.8z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 305.6 380.8L 306.4 381.6L 305.6 380.8M 359.2 380.8L 360 381.6L 359.2 380.8z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 53.6 381.6L 54.4 382.4L 53.6 381.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 77.6 381.6L 78.4 382.4L 77.6 381.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 308 381.6L 308.8 382.4L 308 381.6M 356.8 381.6L 357.6 382.4L 356.8 381.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 56.8 382.4L 57.6 383.2L 56.8 382.4z"/>
<path style="stroke:none; fill:#b3b3b3" d="M 74.4 382.4L 75.2 383.2L 74.4 382.4z"/>
<path style="stroke:none; fill:#8d7373" d="M 75.2 382.4L 76 383.2L 75.2 382.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 310.4 382.4L 311.2 383.2L 310.4 382.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 311.2 382.4L 312 383.2L 311.2 382.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 354.4 382.4L 355.2 383.2L 354.4 382.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 60.8 383.2L 60.8 384L 63.2 384C 62.2014 383.452 61.9613 383.401 60.8 383.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 63.2 383.2L 63.2 384L 68 384C 66.3583 383.301 65.0022 383.238 63.2 383.2z"/>
<path style="stroke:none; fill:#bababa" d="M 68 383.2L 68 384L 70.4 384C 69.4014 383.452 69.1613 383.401 68 383.2z"/>
<path style="stroke:none; fill:#855c5c" d="M 70.9334 383.466C 70.5778 383.822 71.4222 383.778 71.4666 383.734C 71.8222 383.378 70.9778 383.422 70.9334 383.466z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 314.934 383.466C 314.578 383.822 315.422 383.778 315.466 383.734C 315.822 383.378 314.978 383.422 314.934 383.466z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 316 383.2L 316 384L 318.4 384C 317.402 383.452 317.162 383.401 316 383.2M 346.4 383.2L 346.4 384L 350.4 384C 348.985 383.377 347.971 383.27 346.4 383.2z"/>
<path style="stroke:none; fill:#918080" d="M 350.4 383.2L 351.2 384L 350.4 383.2z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

172
svg/open.svg Normal file
View File

@ -0,0 +1,172 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#9b3b3b" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#959090" d="M 65.3334 68.2666C 64.9778 68.6222 65.8222 68.5778 65.8666 68.5334C 66.2222 68.1778 65.3778 68.2223 65.3334 68.2666z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 66.4 68L 66.4 68.8L 153.6 68.8C 146.532 65.8341 134.868 68 127.2 68L 66.4 68z"/>
<path style="stroke:none; fill:#8d7676" d="M 60 68.8L 60.8 69.6L 60 68.8z"/>
<path style="stroke:none; fill:#dcdcdc" d="M 61.3334 69.0667C 60.9778 69.4222 61.8222 69.3778 61.8666 69.3334C 62.2222 68.9778 61.3778 69.0222 61.3334 69.0667z"/>
<path style="stroke:none; fill:#ffffff" d="M 340.8 152.8C 340.8 133.94 341.356 114.185 320.8 105.501C 309.718 100.819 295.011 103.2 283.2 103.2L 221.6 103.2C 211.811 103.2 200.867 104.585 191.2 103.082C 186.553 102.358 183.135 97.5352 180 94.4C 172.542 86.9416 163.853 74.3487 154.4 69.6223C 147.543 66.1938 134.012 68.8 126.4 68.8L 79.2 68.8C 65.2018 68.8 51.6238 68.7335 42.0142 80.8032C 29.917 95.9968 34.4 120.222 34.4 138.4L 34.4 277.6C 34.4 297.27 30.0967 322.139 48.8 335.023C 61.954 344.085 80.848 340.8 96 340.8L 200.8 340.8L 288.8 340.8C 312.051 340.8 334.282 339.804 346.184 316C 351.707 304.954 353.204 291.139 356.104 279.2C 361.542 256.81 367.465 234.492 372.461 212C 375.299 199.22 377.364 185.587 365.597 176.423C 354.406 167.707 335.705 171.2 322.4 171.2L 218.4 171.2L 137.6 171.2C 128.518 171.2 112.429 174.346 104.118 170.718C 100.33 169.063 100.93 159.41 101.854 156.047C 103.196 151.162 111.361 152.8 115.2 152.8L 158.4 152.8L 340.8 152.8z"/>
<path style="stroke:none; fill:#aeaeae" d="M 57.6 69.6L 58.4 70.4L 57.6 69.6z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 55.2 70.4L 56 71.2L 55.2 70.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 53.6 71.2L 54.4 72L 53.6 71.2M 52 72L 52.8 72.8L 52 72z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 50.4 72.8L 51.2 73.6L 50.4 72.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 48 74.4L 48.8 75.2L 48 74.4z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 47.2 75.2L 48 76L 47.2 75.2z"/>
<path style="stroke:none; fill:#8d7676" d="M 44 77.6L 44.8 78.4L 44 77.6M 43.2 78.4L 44 79.2L 43.2 78.4z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 40.8 81.6L 41.6 82.4L 40.8 81.6z"/>
<path style="stroke:none; fill:#959090" d="M 40 82.4L 40.8 83.2L 40 82.4z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 39.2 84L 40 84.8L 39.2 84z"/>
<path style="stroke:none; fill:#8d7676" d="M 38.4 84.8L 39.2 85.6L 38.4 84.8z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 37.6 86.4L 38.4 87.2L 37.6 86.4z"/>
<path style="stroke:none; fill:#959090" d="M 36.8 88L 37.6 88.8L 36.8 88z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 36 90.4L 36.8 91.2L 36 90.4z"/>
<path style="stroke:none; fill:#8d7676" d="M 35.2 92L 36 92.8L 35.2 92z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 35.2 92.8L 36 93.6L 35.2 92.8z"/>
<path style="stroke:none; fill:#8d7676" d="M 34.4 95.2L 35.2 96L 34.4 95.2z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 34.6666 96.5336C 34.6222 96.5776 34.5778 97.4224 34.9334 97.0664C 34.9778 97.0224 35.0222 96.1776 34.6666 96.5336z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 33.6 100.8L 33.6 308L 34.4 308L 34.4 161.6L 34.4 120C 34.4 114.227 35.8417 106.142 33.6 100.8z"/>
<path style="stroke:none; fill:#ebebeb" d="M 188 102.4L 188 103.2L 308 103.2C 298.645 99.2744 282.184 102.4 272 102.4L 188 102.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 308 102.4L 308 103.2L 311.2 103.2C 309.995 102.654 309.348 102.539 308 102.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 311.2 102.4L 312 103.2L 311.2 102.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 314.4 103.2L 315.2 104L 314.4 103.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 315.2 103.2L 316 104L 315.2 103.2z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 317.6 104L 318.4 104.8L 317.6 104z"/>
<path style="stroke:none; fill:#aeaeae" d="M 320 104.8L 320.8 105.6L 320 104.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 321.6 105.6L 322.4 106.4L 321.6 105.6M 323.2 106.4L 324 107.2L 323.2 106.4z"/>
<path style="stroke:none; fill:#959090" d="M 324.8 107.2L 325.6 108L 324.8 107.2z"/>
<path style="stroke:none; fill:#8d7676" d="M 327.2 108.8L 328 109.6L 327.2 108.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 328 109.6L 328.8 110.4L 328 109.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 328.8 110.4L 329.6 111.2L 328.8 110.4z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 332.8 114.4L 333.6 115.2L 332.8 114.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 333.6 115.2L 334.4 116L 333.6 115.2z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 335.2 117.6L 336 118.4L 335.2 117.6z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 336.8 120L 337.6 120.8L 336.8 120z"/>
<path style="stroke:none; fill:#959090" d="M 337.6 121.6L 338.4 122.4L 337.6 121.6z"/>
<path style="stroke:none; fill:#8d7676" d="M 338.4 123.2L 339.2 124L 338.4 123.2z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 338.4 124L 339.2 124.8L 338.4 124z"/>
<path style="stroke:none; fill:#959090" d="M 339.2 125.6L 340 126.4L 339.2 125.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 340.266 129.334C 340.222 129.378 340.178 130.222 340.534 129.866C 340.578 129.822 340.622 128.978 340.266 129.334z"/>
<path style="stroke:none; fill:#928282" d="M 341.066 133.334C 341.022 133.378 340.978 134.222 341.334 133.866C 341.378 133.822 341.422 132.978 341.066 133.334z"/>
<path style="stroke:none; fill:#aeaeae" d="M 340.8 134.4L 340.8 153.6L 341.6 153.6C 341.6 147.814 343.045 139.75 340.8 134.4z"/>
<path style="stroke:none; fill:#ebebeb" d="M 102.4 152.8L 102.4 153.6L 340.8 153.6C 334.88 151.116 325.606 152.8 319.2 152.8L 270.4 152.8L 102.4 152.8M 101.6 153.6L 101.6 170.4L 102.4 170.4C 102.4 165.251 103.6 158.367 101.6 153.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 102.4 170.4L 102.4 171.2L 350.4 171.2C 344.289 168.635 334.617 170.4 328 170.4L 277.6 170.4L 102.4 170.4z"/>
<path style="stroke:none; fill:#8d7676" d="M 350.934 170.666C 350.578 171.022 351.422 170.978 351.466 170.934C 351.822 170.578 350.978 170.622 350.934 170.666z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 354.934 171.466C 354.578 171.822 355.422 171.778 355.466 171.734C 355.822 171.378 354.978 171.422 354.934 171.466z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 357.6 172L 358.4 172.8L 357.6 172z"/>
<path style="stroke:none; fill:#8d7676" d="M 358.4 172L 359.2 172.8L 358.4 172z"/>
<path style="stroke:none; fill:#aeaeae" d="M 360 172.8L 360.8 173.6L 360 172.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 361.6 173.6L 362.4 174.4L 361.6 173.6z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 363.2 174.4L 364 175.2L 363.2 174.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 364 175.2L 364.8 176L 364 175.2z"/>
<path style="stroke:none; fill:#928282" d="M 365.6 176L 366.4 176.8L 365.6 176z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 366.4 176.8L 367.2 177.6L 366.4 176.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 367.2 177.6L 368 178.4L 367.2 177.6M 368 178.4L 368.8 179.2L 368 178.4z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 368.8 179.2L 369.6 180L 368.8 179.2z"/>
<path style="stroke:none; fill:#8d7676" d="M 369.6 180L 370.4 180.8L 369.6 180z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 370.4 181.6L 371.2 182.4L 370.4 181.6z"/>
<path style="stroke:none; fill:#928282" d="M 371.2 182.4L 372 183.2L 371.2 182.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 372 184L 372.8 184.8L 372 184z"/>
<path style="stroke:none; fill:#959090" d="M 372.8 185.6L 373.6 186.4L 372.8 185.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 373.6 188L 374.4 188.8L 373.6 188z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 374.4 191.2L 374.4 193.6L 375.2 193.6C 374.999 192.438 374.948 192.198 374.4 191.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 374.4 199.2L 374.4 201.6L 375.2 201.6C 374.999 200.438 374.948 200.198 374.4 199.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 374.4 201.6L 375.2 202.4L 374.4 201.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 373.6 204.8L 374.4 205.6L 373.6 204.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 373.6 205.6L 374.4 206.4L 373.6 205.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 372.8 208L 373.6 208.8L 372.8 208z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 372.8 208.8L 373.6 209.6L 372.8 208.8M 372 212L 372.8 212.8L 372 212z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 371.2 215.2L 372 216L 371.2 215.2M 370.4 218.4L 371.2 219.2L 370.4 218.4z"/>
<path style="stroke:none; fill:#8d7676" d="M 370.4 219.2L 371.2 220L 370.4 219.2z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 369.6 221.6L 370.4 222.4L 369.6 221.6z"/>
<path style="stroke:none; fill:#928282" d="M 369.6 222.4L 370.4 223.2L 369.6 222.4z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 368.8 224.8L 369.6 225.6L 368.8 224.8z"/>
<path style="stroke:none; fill:#959090" d="M 368.8 225.6L 369.6 226.4L 368.8 225.6z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 368 228L 368.8 228.8L 368 228z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 368 228.8L 368.8 229.6L 368 228.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 367.466 231.734C 367.422 231.778 367.378 232.622 367.734 232.266C 367.778 232.222 367.822 231.378 367.466 231.734M 366.4 235.2L 367.2 236L 366.4 235.2z"/>
<path style="stroke:none; fill:#aeaeae" d="M 365.6 238.4L 366.4 239.2L 365.6 238.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 364.8 241.6L 365.6 242.4L 364.8 241.6z"/>
<path style="stroke:none; fill:#8d7676" d="M 364.8 242.4L 365.6 243.2L 364.8 242.4z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 364 244.8L 364.8 245.6L 364 244.8z"/>
<path style="stroke:none; fill:#928282" d="M 364 245.6L 364.8 246.4L 364 245.6z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 363.2 248L 364 248.8L 363.2 248z"/>
<path style="stroke:none; fill:#959090" d="M 363.2 248.8L 364 249.6L 363.2 248.8z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 362.4 251.2L 363.2 252L 362.4 251.2z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 362.4 252L 363.2 252.8L 362.4 252z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 361.866 254.934C 361.822 254.978 361.778 255.822 362.134 255.466C 362.178 255.422 362.222 254.578 361.866 254.934z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 360.8 258.4L 361.6 259.2L 360.8 258.4z"/>
<path style="stroke:none; fill:#aeaeae" d="M 360 261.6L 360.8 262.4L 360 261.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 359.2 264.8L 360 265.6L 359.2 264.8z"/>
<path style="stroke:none; fill:#8d7676" d="M 359.2 265.6L 360 266.4L 359.2 265.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 358.4 268L 359.2 268.8L 358.4 268z"/>
<path style="stroke:none; fill:#928282" d="M 358.4 268.8L 359.2 269.6L 358.4 268.8z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 357.6 271.2L 358.4 272L 357.6 271.2z"/>
<path style="stroke:none; fill:#959090" d="M 357.6 272L 358.4 272.8L 357.6 272z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 356.8 274.4L 357.6 275.2L 356.8 274.4z"/>
<path style="stroke:none; fill:#959090" d="M 356.8 275.2L 357.6 276L 356.8 275.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 356 277.6L 356.8 278.4L 356 277.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 356 278.4L 356.8 279.2L 356 278.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 355.2 280.8L 356 281.6L 355.2 280.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 355.2 281.6L 356 282.4L 355.2 281.6z"/>
<path style="stroke:none; fill:#aeaeae" d="M 354.4 284.8L 355.2 285.6L 354.4 284.8M 353.6 288L 354.4 288.8L 353.6 288z"/>
<path style="stroke:none; fill:#8d7676" d="M 353.6 288.8L 354.4 289.6L 353.6 288.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 352.8 291.2L 353.6 292L 352.8 291.2z"/>
<path style="stroke:none; fill:#928282" d="M 352.8 292L 353.6 292.8L 352.8 292z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 352 294.4L 352.8 295.2L 352 294.4z"/>
<path style="stroke:none; fill:#928282" d="M 352 295.2L 352.8 296L 352 295.2z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 351.2 297.6L 352 298.4L 351.2 297.6z"/>
<path style="stroke:none; fill:#959090" d="M 351.2 298.4L 352 299.2L 351.2 298.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 350.666 301.334C 350.622 301.378 350.578 302.222 350.934 301.866C 350.978 301.822 351.022 300.978 350.666 301.334z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 349.866 304.534C 349.822 304.578 349.778 305.422 350.134 305.066C 350.178 305.022 350.222 304.178 349.866 304.534z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 348.8 307.2L 349.6 308L 348.8 307.2z"/>
<path style="stroke:none; fill:#855555" d="M 33.8666 308.534C 33.8222 308.578 33.7778 309.422 34.1334 309.066C 34.1778 309.022 34.2222 308.178 33.8666 308.534z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 348.8 308L 349.6 308.8L 348.8 308z"/>
<path style="stroke:none; fill:#aeaeae" d="M 348 310.4L 348.8 311.2L 348 310.4z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 34.4 311.2L 34.4 313.6L 35.2 313.6C 34.999 312.438 34.9478 312.198 34.4 311.2z"/>
<path style="stroke:none; fill:#928282" d="M 347.2 312.8L 348 313.6L 347.2 312.8z"/>
<path style="stroke:none; fill:#8d7676" d="M 34.4 313.6L 35.2 314.4L 34.4 313.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 346.4 314.4L 347.2 315.2L 346.4 314.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 35.2 316L 36 316.8L 35.2 316z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 345.6 316L 346.4 316.8L 345.6 316z"/>
<path style="stroke:none; fill:#8d7676" d="M 35.2 316.8L 36 317.6L 35.2 316.8z"/>
<path style="stroke:none; fill:#959090" d="M 344.8 317.6L 345.6 318.4L 344.8 317.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 36 318.4L 36.8 319.2L 36 318.4M 343.2 320L 344 320.8L 343.2 320z"/>
<path style="stroke:none; fill:#959090" d="M 36.8 320.8L 37.6 321.6L 36.8 320.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 37.6 322.4L 38.4 323.2L 37.6 322.4z"/>
<path style="stroke:none; fill:#959090" d="M 341.6 322.4L 342.4 323.2L 341.6 322.4z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 340.8 323.2L 341.6 324L 340.8 323.2z"/>
<path style="stroke:none; fill:#928282" d="M 38.4 324L 39.2 324.8L 38.4 324z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 39.2 324.8L 40 325.6L 39.2 324.8z"/>
<path style="stroke:none; fill:#959090" d="M 40 326.4L 40.8 327.2L 40 326.4z"/>
<path style="stroke:none; fill:#c2c2c2" d="M 40.8 327.2L 41.6 328L 40.8 327.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 333.6 330.4L 334.4 331.2L 333.6 330.4z"/>
<path style="stroke:none; fill:#8d7676" d="M 44 331.2L 44.8 332L 44 331.2z"/>
<path style="stroke:none; fill:#aeaeae" d="M 332.8 331.2L 333.6 332L 332.8 331.2z"/>
<path style="stroke:none; fill:#8d7676" d="M 332 332L 332.8 332.8L 332 332z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 47.2 333.6L 48 334.4L 47.2 333.6z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 329.6 333.6L 330.4 334.4L 329.6 333.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 48 334.4L 48.8 335.2L 48 334.4z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 328 334.4L 328.8 335.2L 328 334.4z"/>
<path style="stroke:none; fill:#8d7676" d="M 327.2 335.2L 328 336L 327.2 335.2z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 50.4 336L 51.2 336.8L 50.4 336z"/>
<path style="stroke:none; fill:#928282" d="M 325.6 336L 326.4 336.8L 325.6 336z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 52 336.8L 52.8 337.6L 52 336.8z"/>
<path style="stroke:none; fill:#959090" d="M 324 336.8L 324.8 337.6L 324 336.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 53.6 337.6L 54.4 338.4L 53.6 337.6z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 321.6 337.6L 322.4 338.4L 321.6 337.6z"/>
<path style="stroke:none; fill:#9e9d9d" d="M 55.2 338.4L 56 339.2L 55.2 338.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 320 338.4L 320.8 339.2L 320 338.4z"/>
<path style="stroke:none; fill:#aeaeae" d="M 57.6 339.2L 58.4 340L 57.6 339.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 317.6 339.2L 318.4 340L 317.6 339.2z"/>
<path style="stroke:none; fill:#928282" d="M 60 340L 60.8 340.8L 60 340z"/>
<path style="stroke:none; fill:#dcdcdc" d="M 61.3334 340.266C 60.9778 340.622 61.8222 340.578 61.8666 340.534C 62.2222 340.178 61.3778 340.222 61.3334 340.266z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 312.8 340L 312.8 340.8L 315.2 340.8C 314.202 340.252 313.962 340.201 312.8 340z"/>
<path style="stroke:none; fill:#959090" d="M 64 340.8L 64 341.6L 67.2 341.6C 65.9951 341.054 65.3482 340.939 64 340.8z"/>
<path style="stroke:none; fill:#c9c9c9" d="M 67.2 340.8L 67.2 341.6L 308 341.6C 302.08 339.116 292.806 340.8 286.4 340.8L 237.6 340.8L 67.2 340.8z"/>
<path style="stroke:none; fill:#959090" d="M 308 340.8L 308 341.6L 311.2 341.6C 309.995 341.054 309.348 340.939 308 340.8z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

250
svg/pause_active.svg Normal file
View File

@ -0,0 +1,250 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#ffffff" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#ebdede" d="M 384 3.20001L 384 4L 391.2 4C 388.888 3.02966 386.501 3.20139 384 3.20001z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 391.2 3.20001L 391.2 4L 396 4C 394.358 3.30063 393.002 3.23776 391.2 3.20001z"/>
<path style="stroke:none; fill:#c59292" d="M 396 3.20001L 396 4L 401.6 4C 399.734 3.21237 398.034 3.215 396 3.20001z"/>
<path style="stroke:none; fill:#ad6161" d="M 402.134 3.46667C 401.778 3.82217 402.622 3.7778 402.666 3.73334C 403.022 3.37778 402.178 3.42227 402.134 3.46667z"/>
<path style="stroke:none; fill:#ebdede" d="M 316 4L 316 4.80002L 323.2 4.80002C 320.888 3.82965 318.501 4.00137 316 4z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 323.2 4L 323.2 4.80002L 328 4.80002C 326.358 4.10062 325.002 4.03778 323.2 4z"/>
<path style="stroke:none; fill:#c59292" d="M 328 4L 328 4.80002L 332 4.80002C 330.585 4.17688 329.571 4.07007 328 4z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 332 4L 332 4.80002L 334.4 4.80002C 333.402 4.25214 333.162 4.20099 332 4z"/>
<path style="stroke:none; fill:#9b3b3b" d="M 4 403.2C 138.13 403.2 272.259 405.6 406.4 405.6C 405.292 271.762 403.2 137.898 403.2 4C 304.225 4 205.33 7.20001 106.4 7.20001L 32 8C 26.4538 8 10.7036 5.31931 6.88271 9.85434C 2.76506 14.7415 5.6 30.5769 5.6 36.8L 4.8 112L 4 403.2z"/>
<path style="stroke:none; fill:#ebdede" d="M 250.4 4.80002L 250.4 5.60001L 256.8 5.60001C 254.71 4.72183 252.669 4.80576 250.4 4.80002z"/>
<path style="stroke:none; fill:#d3abab" d="M 256.8 4.80002L 256.8 5.60001L 263.2 5.60001C 261.11 4.72183 259.069 4.80576 256.8 4.80002z"/>
<path style="stroke:none; fill:#c59292" d="M 263.2 4.80002L 263.2 5.60001L 265.6 5.60001C 264.602 5.05212 264.362 5.00098 263.2 4.80002z"/>
<path style="stroke:none; fill:#ad6161" d="M 265.6 4.80002L 265.6 5.60001L 268 5.60001C 267.002 5.05215 266.762 5.00098 265.6 4.80002z"/>
<path style="stroke:none; fill:#ebdede" d="M 180.8 5.60001L 180.8 6.39999L 189.6 6.39999C 186.854 5.24777 183.76 5.60001 180.8 5.60001z"/>
<path style="stroke:none; fill:#d3abab" d="M 189.6 5.60001L 189.6 6.39999L 195.2 6.39999C 193.334 5.6124 191.634 5.61499 189.6 5.60001z"/>
<path style="stroke:none; fill:#c59292" d="M 195.2 5.60001L 195.2 6.39999L 197.6 6.39999C 196.602 5.85214 196.362 5.80099 195.2 5.60001z"/>
<path style="stroke:none; fill:#ad6161" d="M 197.6 5.60001L 197.6 6.39999L 200 6.39999C 199.002 5.85214 198.762 5.80099 197.6 5.60001z"/>
<path style="stroke:none; fill:#ebdede" d="M 113.6 6.39999L 113.6 7.20001L 120 7.20001C 117.91 6.32184 115.868 6.40576 113.6 6.39999z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 120 6.39999L 120 7.20001L 124.8 7.20001C 123.158 6.50061 121.802 6.43777 120 6.39999z"/>
<path style="stroke:none; fill:#c59292" d="M 124.8 6.39999L 124.8 7.20001L 128.8 7.20001C 127.385 6.57684 126.371 6.47009 124.8 6.39999z"/>
<path style="stroke:none; fill:#ad6161" d="M 128.8 6.39999L 128.8 7.20001L 132.8 7.20001C 131.385 6.57687 130.371 6.47009 128.8 6.39999z"/>
<path style="stroke:none; fill:#ebdede" d="M 45.6 7.20001L 45.6 8L 52 8C 49.9098 7.12186 47.8684 7.20578 45.6 7.20001z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 52 7.20001L 52 8L 56 8C 54.5848 7.37686 53.5712 7.27008 52 7.20001z"/>
<path style="stroke:none; fill:#d3abab" d="M 56 7.20001L 56 8L 60 8C 58.5848 7.37686 57.5712 7.27008 56 7.20001z"/>
<path style="stroke:none; fill:#c59292" d="M 60 7.20001L 60 8L 62.4 8C 61.4014 7.45215 61.1613 7.40097 60 7.20001z"/>
<path style="stroke:none; fill:#ad6161" d="M 62.4 7.20001L 62.4 8L 77.6 8C 73.2246 6.16403 67.121 7.20001 62.4 7.20001z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 5.6 9.60001L 6.4 10.4L 5.6 9.60001z"/>
<path style="stroke:none; fill:#d3abab" d="M 4.8 10.4L 4.8 50.4L 5.6 50.4C 5.6 39.1606 9.12696 20.7117 4.8 10.4z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 91.2 44.8L 91.2 45.6L 93.6 45.6C 92.6016 45.0522 92.3616 45.001 91.2 44.8z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 93.6 44.8L 93.6 45.6L 96 45.6C 95.0016 45.0522 94.7616 45.001 93.6 44.8z"/>
<path style="stroke:none; fill:#ffffff" d="M 96 45.2111C 75.6388 46.4915 52.8599 54.1339 44.0339 74.4C 40.2003 83.2024 40.8 93.0216 40.8 102.4L 40.8 144L 40.8 268C 40.8 286.842 36.9245 310.728 42.8161 328.8C 49.7405 350.04 77.1459 362.999 98.536 361.828C 119.955 360.656 143.325 351.408 152.098 330.4C 155.345 322.628 154.4 313.826 154.4 305.6L 154.4 262.4L 154.4 136.8C 154.4 118.867 158.621 94.6528 152.719 77.6C 145.028 55.376 118.277 43.8102 96 45.2111z"/>
<path style="stroke:none; fill:#ebdede" d="M 98.4 44.8L 98.4 45.6L 100.8 45.6C 99.8016 45.0522 99.5616 45.001 98.4 44.8z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 100.8 44.8L 100.8 45.6L 104 45.6C 102.795 45.0536 102.148 44.9393 100.8 44.8M 304.8 44.8L 304.8 45.6L 310.4 45.6C 308.534 44.8124 306.834 44.815 304.8 44.8z"/>
<path style="stroke:none; fill:#ffffff" d="M 311.2 362.4L 312 362.4C 317.414 359.39 325.15 360.212 331.2 358.78C 345.047 355.505 359.11 345.861 365.208 332.8C 369.3 324.036 368.8 314.226 368.8 304.8L 368.8 264L 368.8 138.4C 368.8 119.558 372.675 95.672 366.784 77.6C 360.403 58.0279 339.21 47.6881 320 45.7364C 296.418 43.3406 268.988 51.4431 258.226 74.4C 254.43 82.4976 255.2 91.296 255.2 100L 255.2 140L 255.2 271.2L 255.2 308C 255.2 315.518 254.536 323.299 257.502 330.4C 263.625 345.062 277.072 354.338 292 358.575C 297.59 360.162 306.717 359.003 311.2 362.4z"/>
<path style="stroke:none; fill:#ebdede" d="M 312.8 44.8L 312.8 45.6L 315.2 45.6C 314.202 45.0522 313.962 45.001 312.8 44.8z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 315.2 44.8L 315.2 45.6L 318.4 45.6C 317.195 45.0536 316.548 44.9393 315.2 44.8z"/>
<path style="stroke:none; fill:#a99191" d="M 84.5336 45.8666C 84.1776 46.2222 85.0224 46.1778 85.0664 46.1334C 85.4224 45.7777 84.5776 45.8222 84.5336 45.8666z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 85.6 45.6L 85.6 46.4L 88 46.4C 87.0016 45.8522 86.7616 45.801 85.6 45.6z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 108 45.6L 108 46.4L 110.4 46.4C 109.402 45.8522 109.162 45.801 108 45.6z"/>
<path style="stroke:none; fill:#ad6161" d="M 110.934 45.8666C 110.578 46.2223 111.422 46.1777 111.466 46.1334C 111.822 45.7779 110.978 45.8222 110.934 45.8666z"/>
<path style="stroke:none; fill:#c59292" d="M 298.134 45.8666C 297.778 46.2222 298.622 46.1779 298.666 46.1334C 299.022 45.7778 298.178 45.8223 298.134 45.8666z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 299.2 45.6L 299.2 46.4L 301.6 46.4C 300.602 45.8522 300.362 45.801 299.2 45.6z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 321.6 45.6L 321.6 46.4L 324 46.4C 323.002 45.8522 322.762 45.801 321.6 45.6z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 324.534 45.8666C 324.178 46.2222 325.022 46.1779 325.066 46.1334C 325.422 45.7778 324.578 45.8222 324.534 45.8666z"/>
<path style="stroke:none; fill:#927d7d" d="M 80 46.4L 80.8 47.2L 80 46.4z"/>
<path style="stroke:none; fill:#ebdede" d="M 80.8 46.4L 80.8 47.2L 84 47.2C 82.7952 46.6536 82.148 46.5393 80.8 46.4M 112 46.4L 112 47.2L 114.4 47.2C 113.402 46.6522 113.162 46.601 112 46.4z"/>
<path style="stroke:none; fill:#a99191" d="M 114.4 46.4L 115.2 47.2L 114.4 46.4M 294.4 46.4L 295.2 47.2L 294.4 46.4z"/>
<path style="stroke:none; fill:#ebdede" d="M 295.2 46.4L 295.2 47.2L 297.6 47.2C 296.602 46.6522 296.362 46.601 295.2 46.4M 325.6 46.4L 325.6 47.2L 328.8 47.2C 327.595 46.6535 326.948 46.5393 325.6 46.4z"/>
<path style="stroke:none; fill:#927d7d" d="M 328.8 46.4L 329.6 47.2L 328.8 46.4z"/>
<path style="stroke:none; fill:#a99191" d="M 77.6 47.2L 78.4 48L 77.6 47.2z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 116.8 47.2L 117.6 48L 116.8 47.2M 292 47.2L 292.8 48L 292 47.2z"/>
<path style="stroke:none; fill:#a99191" d="M 331.2 47.2L 332 48L 331.2 47.2z"/>
<path style="stroke:none; fill:#aea9a9" d="M 75.2 48L 76 48.8L 75.2 48z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 119.2 48L 120 48.8L 119.2 48M 289.6 48L 290.4 48.8L 289.6 48z"/>
<path style="stroke:none; fill:#aea9a9" d="M 333.6 48L 334.4 48.8L 333.6 48z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 73.3334 49.0667C 72.9778 49.4221 73.8222 49.3778 73.8666 49.3334C 74.2223 48.9777 73.3778 49.0222 73.3334 49.0667z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 121.334 49.0667C 120.978 49.4223 121.822 49.3777 121.866 49.3334C 122.222 48.9779 121.378 49.0222 121.334 49.0667z"/>
<path style="stroke:none; fill:#927d7d" d="M 122.4 48.8L 123.2 49.6L 122.4 48.8M 286.4 48.8L 287.2 49.6L 286.4 48.8z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 287.734 49.0667C 287.378 49.4222 288.222 49.3778 288.266 49.3334C 288.622 48.9778 287.778 49.0222 287.734 49.0667z"/>
<path style="stroke:none; fill:#d3abab" d="M 335.734 49.0667C 335.378 49.4222 336.222 49.3778 336.266 49.3334C 336.622 48.9778 335.778 49.0222 335.734 49.0667z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 70.4 49.6L 71.2 50.4L 70.4 49.6z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 124 49.6L 124.8 50.4L 124 49.6M 284.8 49.6L 285.6 50.4L 284.8 49.6z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 338.4 49.6L 339.2 50.4L 338.4 49.6z"/>
<path style="stroke:none; fill:#c59292" d="M 4.8 50.4L 4.8 64.8L 5.6 64.8C 5.6 60.2942 6.55314 54.5779 4.8 50.4z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 68.8 50.4L 69.6 51.2L 68.8 50.4z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 125.6 50.4L 126.4 51.2L 125.6 50.4M 283.2 50.4L 284 51.2L 283.2 50.4z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 340 50.4L 340.8 51.2L 340 50.4z"/>
<path style="stroke:none; fill:#c59292" d="M 67.2 51.2L 68 52L 67.2 51.2z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 127.2 51.2L 128 52L 127.2 51.2M 281.6 51.2L 282.4 52L 281.6 51.2z"/>
<path style="stroke:none; fill:#c59292" d="M 341.6 51.2L 342.4 52L 341.6 51.2z"/>
<path style="stroke:none; fill:#ebdede" d="M 66.1334 52.2666C 65.7778 52.6222 66.6222 52.5778 66.6666 52.5334C 67.0222 52.1778 66.1778 52.2223 66.1334 52.2666z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 342.934 52.2666C 342.578 52.6222 343.422 52.5779 343.466 52.5334C 343.822 52.1778 342.978 52.2223 342.934 52.2666z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 64 52.8L 64.8 53.6L 64 52.8z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 130.4 52.8L 131.2 53.6L 130.4 52.8M 278.4 52.8L 279.2 53.6L 278.4 52.8z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 344.8 52.8L 345.6 53.6L 344.8 52.8z"/>
<path style="stroke:none; fill:#a99191" d="M 132 53.6L 132.8 54.4L 132 53.6M 276.8 53.6L 277.6 54.4L 276.8 53.6z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 61.6 54.4L 62.4 55.2L 61.6 54.4z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 133.6 54.4L 134.4 55.2L 133.6 54.4M 275.2 54.4L 276 55.2L 275.2 54.4z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 347.2 54.4L 348 55.2L 347.2 54.4z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 60 55.2L 60.8 56L 60 55.2z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 134.4 55.2L 135.2 56L 134.4 55.2M 274.4 55.2L 275.2 56L 274.4 55.2z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 348.8 55.2L 349.6 56L 348.8 55.2z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 59.2 56L 60 56.8L 59.2 56M 349.6 56L 350.4 56.8L 349.6 56z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 57.6 56.8L 58.4 57.6L 57.6 56.8z"/>
<path style="stroke:none; fill:#aea9a9" d="M 136.8 56.8L 137.6 57.6L 136.8 56.8M 272 56.8L 272.8 57.6L 272 56.8z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 351.2 56.8L 352 57.6L 351.2 56.8z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 56.8 57.6L 57.6 58.4L 56.8 57.6M 352 57.6L 352.8 58.4L 352 57.6z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 56 58.4L 56.8 59.2L 56 58.4M 352.8 58.4L 353.6 59.2L 352.8 58.4M 55.2 59.2L 56 60L 55.2 59.2M 353.6 59.2L 354.4 60L 353.6 59.2z"/>
<path style="stroke:none; fill:#a99191" d="M 140.8 60L 141.6 60.8L 140.8 60z"/>
<path style="stroke:none; fill:#aea9a9" d="M 268 60L 268.8 60.8L 268 60M 141.6 60.8L 142.4 61.6L 141.6 60.8M 267.2 60.8L 268 61.6L 267.2 60.8z"/>
<path style="stroke:none; fill:#a99191" d="M 142.4 61.6L 143.2 62.4L 142.4 61.6M 266.4 61.6L 267.2 62.4L 266.4 61.6M 143.2 62.4L 144 63.2L 143.2 62.4M 265.6 62.4L 266.4 63.2L 265.6 62.4M 144 63.2L 144.8 64L 144 63.2M 264.8 63.2L 265.6 64L 264.8 63.2z"/>
<path style="stroke:none; fill:#8d6363" d="M 144.8 64L 145.6 64.8L 144.8 64M 264 64L 264.8 64.8L 264 64z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 4.8 64.8L 4.8 75.2L 5.6 75.2C 5.6 71.7893 6.1289 67.967 4.8 64.8z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 49.6 64.8L 50.4 65.6L 49.6 64.8z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 359.2 64.8L 360 65.6L 359.2 64.8z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 48.8 65.6L 49.6 66.4L 48.8 65.6z"/>
<path style="stroke:none; fill:#aea9a9" d="M 360 65.6L 360.8 66.4L 360 65.6z"/>
<path style="stroke:none; fill:#927d7d" d="M 48 66.4L 48.8 67.2L 48 66.4z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 146.4 66.4L 147.2 67.2L 146.4 66.4M 262.4 66.4L 263.2 67.2L 262.4 66.4z"/>
<path style="stroke:none; fill:#927d7d" d="M 360.8 66.4L 361.6 67.2L 360.8 66.4z"/>
<path style="stroke:none; fill:#a99191" d="M 147.2 67.2L 148 68L 147.2 67.2M 261.6 67.2L 262.4 68L 261.6 67.2M 46.4 68.8L 47.2 69.6L 46.4 68.8M 362.4 68.8L 363.2 69.6L 362.4 68.8z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 148.8 69.6L 149.6 70.4L 148.8 69.6M 260 69.6L 260.8 70.4L 260 69.6z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 45.6 70.4L 46.4 71.2L 45.6 70.4M 363.2 70.4L 364 71.2L 363.2 70.4z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 149.6 71.2L 150.4 72L 149.6 71.2M 259.2 71.2L 260 72L 259.2 71.2M 150.4 72.8L 151.2 73.6L 150.4 72.8M 258.4 72.8L 259.2 73.6L 258.4 72.8M 151.2 74.4L 152 75.2L 151.2 74.4M 257.6 74.4L 258.4 75.2L 257.6 74.4z"/>
<path style="stroke:none; fill:#ad6161" d="M 4.8 75.2L 4.8 83.2L 5.6 83.2C 5.5997 80.4688 5.8619 77.7307 4.8 75.2z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 43.2 75.2L 44 76L 43.2 75.2M 365.6 75.2L 366.4 76L 365.6 75.2z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 152 76L 152.8 76.8L 152 76M 256.8 76L 257.6 76.8L 256.8 76z"/>
<path style="stroke:none; fill:#927d7d" d="M 42.4 76.8L 43.2 77.6L 42.4 76.8M 366.4 76.8L 367.2 77.6L 366.4 76.8z"/>
<path style="stroke:none; fill:#ebdede" d="M 403.2 77.6L 403.2 84L 404 84C 403.994 81.7312 404.078 79.6902 403.2 77.6z"/>
<path style="stroke:none; fill:#927d7d" d="M 152.8 78.4L 153.6 79.2L 152.8 78.4M 256 78.4L 256.8 79.2L 256 78.4M 41.6 79.2L 42.4 80L 41.6 79.2M 367.2 79.2L 368 80L 367.2 79.2z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 41.6 80L 42.4 80.8L 41.6 80M 367.2 80L 368 80.8L 367.2 80z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 153.6 81.6L 154.4 82.4L 153.6 81.6M 255.2 81.6L 256 82.4L 255.2 81.6z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 153.6 82.4L 154.4 83.2L 153.6 82.4M 255.2 82.4L 256 83.2L 255.2 82.4M 41.0666 83.7336C 41.0222 83.7776 40.9778 84.6224 41.3334 84.2664C 41.3778 84.2224 41.4222 83.3776 41.0666 83.7336M 368.266 83.7336C 368.222 83.7776 368.178 84.6224 368.534 84.2664C 368.578 84.2224 368.622 83.3776 368.266 83.7336z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 403.2 84L 403.2 90.4L 404 90.4C 403.994 88.132 404.078 86.0904 403.2 84z"/>
<path style="stroke:none; fill:#ebdede" d="M 41.0666 85.3336C 41.0222 85.3776 40.9778 86.2224 41.3334 85.8664C 41.3778 85.8224 41.4222 84.9776 41.0666 85.3336z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 368.266 85.3336C 368.222 85.3776 368.178 86.2224 368.534 85.8664C 368.578 85.8224 368.622 84.9776 368.266 85.3336z"/>
<path style="stroke:none; fill:#927d7d" d="M 154.4 87.2L 154.4 318.4L 155.2 318.4L 155.2 155.2L 155.2 108C 155.2 101.805 156.803 92.9272 154.4 87.2M 254.4 87.2L 254.4 318.4L 255.2 318.4L 255.2 155.2L 255.2 108C 255.2 101.805 256.803 92.9272 254.4 87.2z"/>
<path style="stroke:none; fill:#d3abab" d="M 403.2 90.4L 403.2 92.8L 404 92.8C 403.799 91.6384 403.748 91.3984 403.2 90.4z"/>
<path style="stroke:none; fill:#ad6161" d="M 403.2 92.8L 403.2 96.8L 404 96.8C 403.93 95.2288 403.823 94.2152 403.2 92.8z"/>
<path style="stroke:none; fill:#ebdede" d="M 4 163.2L 4 184.8L 4.8 184.8C 4.8 178.38 6.48712 169.127 4 163.2M 404 180.8L 404 188L 404.8 188C 404.798 185.499 404.97 183.112 404 180.8z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 4 184.8L 4 220L 4.8 220C 4.8 210.016 7.8482 193.97 4 184.8z"/>
<path style="stroke:none; fill:#d3abab" d="M 404 188L 404 192.8L 404.8 192.8C 404.762 190.998 404.699 189.642 404 188z"/>
<path style="stroke:none; fill:#c59292" d="M 404.266 193.334C 404.222 193.378 404.178 194.222 404.534 193.866C 404.578 193.822 404.622 192.978 404.266 193.334z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 404 194.4L 404 196.8L 404.8 196.8C 404.599 195.638 404.548 195.398 404 194.4z"/>
<path style="stroke:none; fill:#d3abab" d="M 4 220L 4 250.4L 4.8 250.4C 4.8 241.671 7.36901 228.029 4 220z"/>
<path style="stroke:none; fill:#c59292" d="M 4 250.4L 4 260.8L 4.8 260.8C 4.8 257.39 5.3289 253.567 4 250.4z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 4 260.8L 4 275.2L 4.8 275.2C 4.8 270.694 5.75314 264.978 4 260.8z"/>
<path style="stroke:none; fill:#ad6161" d="M 4 275.2L 4 286.4L 4.8 286.4C 4.8 282.767 5.41546 278.574 4 275.2z"/>
<path style="stroke:none; fill:#ebdede" d="M 404.8 279.2L 404.8 290.4L 405.6 290.4C 405.6 286.767 406.215 282.574 404.8 279.2z"/>
<path style="stroke:none; fill:#d3abab" d="M 404.8 290.4L 404.8 294.4L 405.6 294.4C 405.53 292.829 405.423 291.815 404.8 290.4z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 404.8 294.4L 404.8 297.6L 405.6 297.6C 405.461 296.252 405.346 295.605 404.8 294.4z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 40.8 320L 40.8 322.4L 41.6 322.4C 41.399 321.238 41.3478 320.998 40.8 320z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 368 320L 368 322.4L 368.8 322.4C 368.599 321.238 368.548 320.998 368 320z"/>
<path style="stroke:none; fill:#a99191" d="M 40.8 322.4L 41.6 323.2L 40.8 322.4z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 368 322.4L 368.8 323.2L 368 322.4z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 153.6 323.2L 154.4 324L 153.6 323.2M 255.2 323.2L 256 324L 255.2 323.2z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 153.6 324L 154.4 324.8L 153.6 324M 255.2 324L 256 324.8L 255.2 324z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 41.6 325.6L 42.4 326.4L 41.6 325.6M 367.2 325.6L 368 326.4L 367.2 325.6z"/>
<path style="stroke:none; fill:#927d7d" d="M 41.6 326.4L 42.4 327.2L 41.6 326.4M 367.2 326.4L 368 327.2L 367.2 326.4M 152.8 327.2L 153.6 328L 152.8 327.2z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 256 327.2L 256.8 328L 256 327.2z"/>
<path style="stroke:none; fill:#927d7d" d="M 42.4 328.8L 43.2 329.6L 42.4 328.8M 366.4 328.8L 367.2 329.6L 366.4 328.8z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 152 329.6L 152.8 330.4L 152 329.6M 256.8 329.6L 257.6 330.4L 256.8 329.6z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 43.2 330.4L 44 331.2L 43.2 330.4M 365.6 330.4L 366.4 331.2L 365.6 330.4z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 151.2 331.2L 152 332L 151.2 331.2M 257.6 331.2L 258.4 332L 257.6 331.2M 150.4 332.8L 151.2 333.6L 150.4 332.8z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 258.4 332.8L 259.2 333.6L 258.4 332.8z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 149.6 334.4L 150.4 335.2L 149.6 334.4z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 259.2 334.4L 260 335.2L 259.2 334.4M 45.6 335.2L 46.4 336L 45.6 335.2M 363.2 335.2L 364 336L 363.2 335.2z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 148.8 336L 149.6 336.8L 148.8 336z"/>
<path style="stroke:none; fill:#a99191" d="M 260 336L 260.8 336.8L 260 336M 46.4 336.8L 47.2 337.6L 46.4 336.8M 362.4 336.8L 363.2 337.6L 362.4 336.8M 147.2 338.4L 148 339.2L 147.2 338.4z"/>
<path style="stroke:none; fill:#aea9a9" d="M 261.6 338.4L 262.4 339.2L 261.6 338.4z"/>
<path style="stroke:none; fill:#927d7d" d="M 48 339.2L 48.8 340L 48 339.2z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 146.4 339.2L 147.2 340L 146.4 339.2M 262.4 339.2L 263.2 340L 262.4 339.2z"/>
<path style="stroke:none; fill:#927d7d" d="M 360.8 339.2L 361.6 340L 360.8 339.2z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 48.8 340L 49.6 340.8L 48.8 340z"/>
<path style="stroke:none; fill:#aea9a9" d="M 360 340L 360.8 340.8L 360 340z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 49.6 340.8L 50.4 341.6L 49.6 340.8z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 359.2 340.8L 360 341.6L 359.2 340.8z"/>
<path style="stroke:none; fill:#8d6363" d="M 144.8 341.6L 145.6 342.4L 144.8 341.6M 264 341.6L 264.8 342.4L 264 341.6z"/>
<path style="stroke:none; fill:#a99191" d="M 144 342.4L 144.8 343.2L 144 342.4M 264.8 342.4L 265.6 343.2L 264.8 342.4M 143.2 343.2L 144 344L 143.2 343.2M 265.6 343.2L 266.4 344L 265.6 343.2M 142.4 344L 143.2 344.8L 142.4 344M 266.4 344L 267.2 344.8L 266.4 344z"/>
<path style="stroke:none; fill:#aea9a9" d="M 141.6 344.8L 142.4 345.6L 141.6 344.8M 267.2 344.8L 268 345.6L 267.2 344.8z"/>
<path style="stroke:none; fill:#a99191" d="M 140.8 345.6L 141.6 346.4L 140.8 345.6z"/>
<path style="stroke:none; fill:#aea9a9" d="M 268 345.6L 268.8 346.4L 268 345.6z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 55.2 346.4L 56 347.2L 55.2 346.4z"/>
<path style="stroke:none; fill:#ad6161" d="M 268.8 346.4L 269.6 347.2L 268.8 346.4z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 353.6 346.4L 354.4 347.2L 353.6 346.4M 56 347.2L 56.8 348L 56 347.2M 352.8 347.2L 353.6 348L 352.8 347.2z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 56.8 348L 57.6 348.8L 56.8 348M 352 348L 352.8 348.8L 352 348z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 57.6 348.8L 58.4 349.6L 57.6 348.8z"/>
<path style="stroke:none; fill:#aea9a9" d="M 136.8 348.8L 137.6 349.6L 136.8 348.8M 272 348.8L 272.8 349.6L 272 348.8z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 351.2 348.8L 352 349.6L 351.2 348.8z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 59.2 349.6L 60 350.4L 59.2 349.6M 349.6 349.6L 350.4 350.4L 349.6 349.6z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 60 350.4L 60.8 351.2L 60 350.4z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 134.4 350.4L 135.2 351.2L 134.4 350.4M 274.4 350.4L 275.2 351.2L 274.4 350.4z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 348.8 350.4L 349.6 351.2L 348.8 350.4z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 61.6 351.2L 62.4 352L 61.6 351.2z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 133.6 351.2L 134.4 352L 133.6 351.2M 275.2 351.2L 276 352L 275.2 351.2z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 347.2 351.2L 348 352L 347.2 351.2z"/>
<path style="stroke:none; fill:#a99191" d="M 132 352L 132.8 352.8L 132 352M 276.8 352L 277.6 352.8L 276.8 352z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 64 352.8L 64.8 353.6L 64 352.8z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 130.4 352.8L 131.2 353.6L 130.4 352.8M 278.4 352.8L 279.2 353.6L 278.4 352.8z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 344.8 352.8L 345.6 353.6L 344.8 352.8z"/>
<path style="stroke:none; fill:#ebdede" d="M 66.1334 353.866C 65.7778 354.222 66.6222 354.178 66.6666 354.134C 67.0222 353.778 66.1778 353.822 66.1334 353.866z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 342.934 353.866C 342.578 354.222 343.422 354.178 343.466 354.134C 343.822 353.778 342.978 353.822 342.934 353.866z"/>
<path style="stroke:none; fill:#c59292" d="M 67.2 354.4L 68 355.2L 67.2 354.4z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 127.2 354.4L 128 355.2L 127.2 354.4M 281.6 354.4L 282.4 355.2L 281.6 354.4z"/>
<path style="stroke:none; fill:#c59292" d="M 341.6 354.4L 342.4 355.2L 341.6 354.4z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 68.8 355.2L 69.6 356L 68.8 355.2z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 125.6 355.2L 126.4 356L 125.6 355.2M 283.2 355.2L 284 356L 283.2 355.2z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 340 355.2L 340.8 356L 340 355.2M 70.4 356L 71.2 356.8L 70.4 356z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 124 356L 124.8 356.8L 124 356M 284.8 356L 285.6 356.8L 284.8 356z"/>
<path style="stroke:none; fill:#9a8a8a" d="M 338.4 356L 339.2 356.8L 338.4 356z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 73.3334 357.066C 72.9778 357.422 73.8222 357.378 73.8666 357.334C 74.2222 356.978 73.3778 357.022 73.3334 357.066z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 121.334 357.066C 120.978 357.422 121.822 357.378 121.866 357.334C 122.222 356.978 121.378 357.022 121.334 357.066z"/>
<path style="stroke:none; fill:#927d7d" d="M 122.4 356.8L 123.2 357.6L 122.4 356.8M 286.4 356.8L 287.2 357.6L 286.4 356.8z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 287.734 357.066C 287.378 357.422 288.222 357.378 288.266 357.334C 288.622 356.978 287.778 357.022 287.734 357.066z"/>
<path style="stroke:none; fill:#d3abab" d="M 335.734 357.066C 335.378 357.422 336.222 357.378 336.266 357.334C 336.622 356.978 335.778 357.022 335.734 357.066z"/>
<path style="stroke:none; fill:#aea9a9" d="M 75.2 357.6L 76 358.4L 75.2 357.6z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 119.2 357.6L 120 358.4L 119.2 357.6M 289.6 357.6L 290.4 358.4L 289.6 357.6z"/>
<path style="stroke:none; fill:#aea9a9" d="M 333.6 357.6L 334.4 358.4L 333.6 357.6z"/>
<path style="stroke:none; fill:#a99191" d="M 77.6 358.4L 78.4 359.2L 77.6 358.4z"/>
<path style="stroke:none; fill:#c0bdbd" d="M 116.8 358.4L 117.6 359.2L 116.8 358.4M 292 358.4L 292.8 359.2L 292 358.4z"/>
<path style="stroke:none; fill:#a99191" d="M 331.2 358.4L 332 359.2L 331.2 358.4z"/>
<path style="stroke:none; fill:#927d7d" d="M 80 359.2L 80.8 360L 80 359.2z"/>
<path style="stroke:none; fill:#ebdede" d="M 80.8 359.2L 80.8 360L 84 360C 82.7952 359.454 82.148 359.339 80.8 359.2M 112 359.2L 112 360L 114.4 360C 113.402 359.452 113.162 359.401 112 359.2z"/>
<path style="stroke:none; fill:#a99191" d="M 114.4 359.2L 115.2 360L 114.4 359.2M 294.4 359.2L 295.2 360L 294.4 359.2z"/>
<path style="stroke:none; fill:#ebdede" d="M 295.2 359.2L 295.2 360L 297.6 360C 296.602 359.452 296.362 359.401 295.2 359.2M 325.6 359.2L 325.6 360L 328.8 360C 327.595 359.454 326.948 359.339 325.6 359.2z"/>
<path style="stroke:none; fill:#927d7d" d="M 328.8 359.2L 329.6 360L 328.8 359.2z"/>
<path style="stroke:none; fill:#a99191" d="M 84.5336 360.266C 84.1776 360.622 85.0224 360.578 85.0664 360.534C 85.4224 360.178 84.5776 360.222 84.5336 360.266z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 85.6 360L 85.6 360.8L 88 360.8C 87.0016 360.252 86.7616 360.201 85.6 360z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 108 360L 108 360.8L 110.4 360.8C 109.402 360.252 109.162 360.201 108 360z"/>
<path style="stroke:none; fill:#ad6161" d="M 110.934 360.266C 110.578 360.622 111.422 360.578 111.466 360.534C 111.822 360.178 110.978 360.222 110.934 360.266z"/>
<path style="stroke:none; fill:#c59292" d="M 297.6 360L 297.6 360.8L 300 360.8C 299.002 360.252 298.762 360.201 297.6 360z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 300.534 360.266C 300.178 360.622 301.022 360.578 301.066 360.534C 301.422 360.178 300.578 360.222 300.534 360.266M 321.6 360L 321.6 360.8L 324 360.8C 323.002 360.252 322.762 360.201 321.6 360z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 324.534 360.266C 324.178 360.622 325.022 360.578 325.066 360.534C 325.422 360.178 324.578 360.222 324.534 360.266z"/>
<path style="stroke:none; fill:#aea9a9" d="M 91.2 360.8L 91.2 362.4L 93.6 362.4L 93.6 360.8L 91.2 360.8z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 93.6 360.8L 93.6 362.4L 96.8 362.4L 96.8 360.8L 93.6 360.8M 99.2 361.6L 99.2 362.4L 104 361.6C 102.142 360.862 101.135 361.05 99.2 361.6z"/>
<path style="stroke:none; fill:#8d6363" d="M 104 360.8L 104 362.4C 105.308 361.964 105.164 362.108 105.6 360.8L 104 360.8z"/>
<path style="stroke:none; fill:#aea9a9" d="M 304.8 360.8L 304.8 361.6L 308 362.4L 308 361.6L 304.8 360.8z"/>
<path style="stroke:none; fill:#d6d6d6" d="M 306.4 360.8L 306.4 361.6L 311.2 362.4L 311.2 360.8L 306.4 360.8z"/>
<path style="stroke:none; fill:#ebdede" d="M 312.8 360.8L 312.8 362.4L 314.4 362.4L 314.4 360.8L 312.8 360.8z"/>
<path style="stroke:none; fill:#ccc8c8" d="M 314.4 362.4L 318.4 361.6C 316.56 360.867 315.698 360.897 314.4 362.4z"/>
<path style="stroke:none; fill:#aea9a9" d="M 101.6 361.6L 101.6 362.4L 104 362.4C 103.002 361.852 102.762 361.801 101.6 361.6M 316 361.6L 316 362.4L 318.4 362.4C 317.402 361.852 317.162 361.801 316 361.6z"/>
<path style="stroke:none; fill:#ebdede" d="M 3.2 375.2L 3.2 403.2L 4 403.2C 4 395.1 6.3291 382.657 3.2 375.2M 405.6 385.6L 405.6 392.8L 406.4 392.8C 406.398 390.299 406.57 387.912 405.6 385.6z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 405.6 392.8L 405.6 395.2L 406.4 395.2C 406.199 394.038 406.148 393.798 405.6 392.8z"/>
<path style="stroke:none; fill:#d3abab" d="M 405.6 395.2L 405.6 397.6L 406.4 397.6C 406.199 396.438 406.148 396.198 405.6 395.2z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 405.6 397.6L 405.6 400L 406.4 400C 406.199 398.838 406.148 398.598 405.6 397.6z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 4 403.2L 4 404L 10.4 404C 8.30984 403.122 6.26839 403.206 4 403.2z"/>
<path style="stroke:none; fill:#d3abab" d="M 10.4 403.2L 10.4 404L 24.8 404C 20.6221 402.247 14.9058 403.2 10.4 403.2z"/>
<path style="stroke:none; fill:#c59292" d="M 24.8 403.2L 24.8 404L 32.8 404C 30.2694 402.938 27.5315 403.2 24.8 403.2z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 32.8 403.2L 32.8 404L 44.8 404C 41.2229 402.499 36.6533 403.2 32.8 403.2z"/>
<path style="stroke:none; fill:#ad6161" d="M 44.8 403.2L 44.8 404L 61.6 404C 56.8328 402 49.9489 403.2 44.8 403.2z"/>
<path style="stroke:none; fill:#ebdede" d="M 100 404L 100 404.8L 143.2 404.8C 139.027 403.049 133.295 404 128.8 404L 100 404z"/>
<path style="stroke:none; fill:#d3abab" d="M 143.2 404L 143.2 404.8L 167.2 404.8C 160.698 402.071 150.251 404 143.2 404z"/>
<path style="stroke:none; fill:#c59292" d="M 167.2 404L 167.2 404.8L 176 404.8C 173.254 403.648 170.16 404 167.2 404z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 176 404L 176 404.8L 190.4 404.8C 186.222 403.047 180.506 404 176 404z"/>
<path style="stroke:none; fill:#ad6161" d="M 190.4 404L 190.4 404.8L 197.6 404.8C 195.288 403.83 192.901 404.002 190.4 404z"/>
<path style="stroke:none; fill:#ebdede" d="M 251.2 404.8L 251.2 405.6L 260.8 405.6C 257.842 404.358 254.386 404.8 251.2 404.8z"/>
<path style="stroke:none; fill:#e0c5c5" d="M 260.8 404.8L 260.8 405.6L 283.2 405.6C 277.081 403.032 267.43 404.8 260.8 404.8z"/>
<path style="stroke:none; fill:#d3abab" d="M 283.2 404.8L 283.2 405.6L 307.2 405.6C 300.698 402.871 290.251 404.8 283.2 404.8z"/>
<path style="stroke:none; fill:#bb7c7c" d="M 307.2 404.8L 307.2 405.6L 322.4 405.6C 318.025 403.764 311.921 404.8 307.2 404.8z"/>
<path style="stroke:none; fill:#ad6161" d="M 322.4 404.8L 322.4 405.6L 328.8 405.6C 326.71 404.722 324.669 404.806 322.4 404.8z"/>
<path style="stroke:none; fill:#ebdede" d="M 372 405.6L 372 406.4L 406.4 406.4C 397.419 402.632 381.775 405.6 372 405.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

185
svg/pause_inactive.svg Normal file
View File

@ -0,0 +1,185 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#9b3b3b" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 91.2 44.8L 91.2 45.6L 93.6 45.6C 92.6016 45.0522 92.3616 45.001 91.2 44.8z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 93.6 44.8L 93.6 45.6L 96 45.6C 95.0016 45.0522 94.7616 45.001 93.6 44.8z"/>
<path style="stroke:none; fill:#ffffff" d="M 96 45.2111C 75.6388 46.4915 52.8599 54.1339 44.0339 74.4C 40.2003 83.2024 40.8 93.0216 40.8 102.4L 40.8 144L 40.8 268C 40.8 286.842 36.9245 310.728 42.8161 328.8C 49.7405 350.04 77.1459 362.999 98.536 361.828C 119.955 360.656 143.325 351.408 152.098 330.4C 155.345 322.628 154.4 313.826 154.4 305.6L 154.4 262.4L 154.4 136.8C 154.4 118.867 158.621 94.6528 152.719 77.6C 145.028 55.376 118.277 43.8102 96 45.2111z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 98.4 44.8L 98.4 45.6L 100.8 45.6C 99.8016 45.0522 99.5616 45.001 98.4 44.8z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 100.8 44.8L 100.8 45.6L 104 45.6C 102.795 45.0536 102.148 44.9393 100.8 44.8M 304.8 44.8L 304.8 45.6L 310.4 45.6C 308.534 44.8124 306.834 44.815 304.8 44.8z"/>
<path style="stroke:none; fill:#ffffff" d="M 311.2 362.4L 312 362.4C 317.414 359.39 325.15 360.212 331.2 358.78C 345.047 355.505 359.11 345.861 365.208 332.8C 369.3 324.036 368.8 314.226 368.8 304.8L 368.8 264L 368.8 138.4C 368.8 119.558 372.675 95.672 366.784 77.6C 360.403 58.0279 339.21 47.6881 320 45.7364C 296.418 43.3406 268.988 51.4431 258.226 74.4C 254.43 82.4976 255.2 91.296 255.2 100L 255.2 140L 255.2 271.2L 255.2 308C 255.2 315.518 254.536 323.299 257.502 330.4C 263.625 345.062 277.072 354.338 292 358.575C 297.59 360.162 306.717 359.003 311.2 362.4z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 312.8 44.8L 312.8 45.6L 315.2 45.6C 314.202 45.0522 313.962 45.001 312.8 44.8z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 315.2 44.8L 315.2 45.6L 318.4 45.6C 317.195 45.0536 316.548 44.9393 315.2 44.8z"/>
<path style="stroke:none; fill:#b39292" d="M 84.5336 45.8666C 84.1776 46.2222 85.0224 46.1778 85.0664 46.1334C 85.4224 45.7777 84.5776 45.8222 84.5336 45.8666z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 85.6 45.6L 85.6 46.4L 88 46.4C 87.0016 45.8522 86.7616 45.801 85.6 45.6z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 108 45.6L 108 46.4L 110.4 46.4C 109.402 45.8522 109.162 45.801 108 45.6z"/>
<path style="stroke:none; fill:#9c6666" d="M 110.934 45.8666C 110.578 46.2223 111.422 46.1777 111.466 46.1334C 111.822 45.7779 110.978 45.8222 110.934 45.8666z"/>
<path style="stroke:none; fill:#b39292" d="M 298.134 45.8666C 297.778 46.2222 298.622 46.1779 298.666 46.1334C 299.022 45.7778 298.178 45.8223 298.134 45.8666z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 299.2 45.6L 299.2 46.4L 301.6 46.4C 300.602 45.8522 300.362 45.801 299.2 45.6z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 321.6 45.6L 321.6 46.4L 324 46.4C 323.002 45.8522 322.762 45.801 321.6 45.6z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 324.534 45.8666C 324.178 46.2222 325.022 46.1779 325.066 46.1334C 325.422 45.7778 324.578 45.8222 324.534 45.8666z"/>
<path style="stroke:none; fill:#9d7575" d="M 80 46.4L 80.8 47.2L 80 46.4z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 80.8 46.4L 80.8 47.2L 84 47.2C 82.7952 46.6536 82.148 46.5393 80.8 46.4M 112 46.4L 112 47.2L 114.4 47.2C 113.402 46.6522 113.162 46.601 112 46.4z"/>
<path style="stroke:none; fill:#b39292" d="M 114.4 46.4L 115.2 47.2L 114.4 46.4M 294.4 46.4L 295.2 47.2L 294.4 46.4z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 295.2 46.4L 295.2 47.2L 297.6 47.2C 296.602 46.6522 296.362 46.601 295.2 46.4M 325.6 46.4L 325.6 47.2L 328.8 47.2C 327.595 46.6535 326.948 46.5393 325.6 46.4z"/>
<path style="stroke:none; fill:#9d7575" d="M 328.8 46.4L 329.6 47.2L 328.8 46.4z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 77.6 47.2L 78.4 48L 77.6 47.2z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 116.8 47.2L 117.6 48L 116.8 47.2M 292 47.2L 292.8 48L 292 47.2z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 331.2 47.2L 332 48L 331.2 47.2z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 75.2 48L 76 48.8L 75.2 48z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 119.2 48L 120 48.8L 119.2 48M 289.6 48L 290.4 48.8L 289.6 48z"/>
<path style="stroke:none; fill:#aca7a7" d="M 333.6 48L 334.4 48.8L 333.6 48z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 73.3334 49.0667C 72.9778 49.4221 73.8222 49.3778 73.8666 49.3334C 74.2223 48.9777 73.3778 49.0222 73.3334 49.0667z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 121.334 49.0667C 120.978 49.4223 121.822 49.3777 121.866 49.3334C 122.222 48.9779 121.378 49.0222 121.334 49.0667z"/>
<path style="stroke:none; fill:#9d7575" d="M 122.4 48.8L 123.2 49.6L 122.4 48.8M 286.4 48.8L 287.2 49.6L 286.4 48.8z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 287.734 49.0667C 287.378 49.4222 288.222 49.3778 288.266 49.3334C 288.622 48.9778 287.778 49.0222 287.734 49.0667z"/>
<path style="stroke:none; fill:#c5b3b3" d="M 335.734 49.0667C 335.378 49.4222 336.222 49.3778 336.266 49.3334C 336.622 48.9778 335.778 49.0222 335.734 49.0667z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 70.4 49.6L 71.2 50.4L 70.4 49.6z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 124 49.6L 124.8 50.4L 124 49.6M 284.8 49.6L 285.6 50.4L 284.8 49.6z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 338.4 49.6L 339.2 50.4L 338.4 49.6M 68.8 50.4L 69.6 51.2L 68.8 50.4z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 125.6 50.4L 126.4 51.2L 125.6 50.4M 283.2 50.4L 284 51.2L 283.2 50.4z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 340 50.4L 340.8 51.2L 340 50.4z"/>
<path style="stroke:none; fill:#bb9f9f" d="M 67.2 51.2L 68 52L 67.2 51.2z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 127.2 51.2L 128 52L 127.2 51.2M 281.6 51.2L 282.4 52L 281.6 51.2z"/>
<path style="stroke:none; fill:#bb9f9f" d="M 341.6 51.2L 342.4 52L 341.6 51.2z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 66.1334 52.2666C 65.7778 52.6222 66.6222 52.5778 66.6666 52.5334C 67.0222 52.1778 66.1778 52.2223 66.1334 52.2666z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 342.934 52.2666C 342.578 52.6222 343.422 52.5779 343.466 52.5334C 343.822 52.1778 342.978 52.2223 342.934 52.2666z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 64 52.8L 64.8 53.6L 64 52.8z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 130.4 52.8L 131.2 53.6L 130.4 52.8M 278.4 52.8L 279.2 53.6L 278.4 52.8z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 344.8 52.8L 345.6 53.6L 344.8 52.8z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 132 53.6L 132.8 54.4L 132 53.6z"/>
<path style="stroke:none; fill:#b39292" d="M 276.8 53.6L 277.6 54.4L 276.8 53.6z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 61.6 54.4L 62.4 55.2L 61.6 54.4z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 133.6 54.4L 134.4 55.2L 133.6 54.4M 275.2 54.4L 276 55.2L 275.2 54.4z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 347.2 54.4L 348 55.2L 347.2 54.4z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 60 55.2L 60.8 56L 60 55.2z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 134.4 55.2L 135.2 56L 134.4 55.2M 274.4 55.2L 275.2 56L 274.4 55.2z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 348.8 55.2L 349.6 56L 348.8 55.2z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 59.2 56L 60 56.8L 59.2 56M 349.6 56L 350.4 56.8L 349.6 56z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 57.6 56.8L 58.4 57.6L 57.6 56.8z"/>
<path style="stroke:none; fill:#bb9f9f" d="M 136.8 56.8L 137.6 57.6L 136.8 56.8M 272 56.8L 272.8 57.6L 272 56.8z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 351.2 56.8L 352 57.6L 351.2 56.8z"/>
<path style="stroke:none; fill:#c5b3b3" d="M 56.8 57.6L 57.6 58.4L 56.8 57.6M 352 57.6L 352.8 58.4L 352 57.6z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 56 58.4L 56.8 59.2L 56 58.4M 352.8 58.4L 353.6 59.2L 352.8 58.4M 55.2 59.2L 56 60L 55.2 59.2M 353.6 59.2L 354.4 60L 353.6 59.2z"/>
<path style="stroke:none; fill:#b39292" d="M 140.8 60L 141.6 60.8L 140.8 60z"/>
<path style="stroke:none; fill:#bb9f9f" d="M 268 60L 268.8 60.8L 268 60z"/>
<path style="stroke:none; fill:#aca7a7" d="M 141.6 60.8L 142.4 61.6L 141.6 60.8z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 267.2 60.8L 268 61.6L 267.2 60.8z"/>
<path style="stroke:none; fill:#b39292" d="M 142.4 61.6L 143.2 62.4L 142.4 61.6M 266.4 61.6L 267.2 62.4L 266.4 61.6M 143.2 62.4L 144 63.2L 143.2 62.4M 265.6 62.4L 266.4 63.2L 265.6 62.4z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 144 63.2L 144.8 64L 144 63.2M 264.8 63.2L 265.6 64L 264.8 63.2z"/>
<path style="stroke:none; fill:#9d7575" d="M 144.8 64L 145.6 64.8L 144.8 64M 264 64L 264.8 64.8L 264 64z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 49.6 64.8L 50.4 65.6L 49.6 64.8M 359.2 64.8L 360 65.6L 359.2 64.8z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 48.8 65.6L 49.6 66.4L 48.8 65.6M 360 65.6L 360.8 66.4L 360 65.6z"/>
<path style="stroke:none; fill:#9d7575" d="M 48 66.4L 48.8 67.2L 48 66.4z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 146.4 66.4L 147.2 67.2L 146.4 66.4M 262.4 66.4L 263.2 67.2L 262.4 66.4z"/>
<path style="stroke:none; fill:#9d7575" d="M 360.8 66.4L 361.6 67.2L 360.8 66.4z"/>
<path style="stroke:none; fill:#aca7a7" d="M 147.2 67.2L 148 68L 147.2 67.2M 261.6 67.2L 262.4 68L 261.6 67.2z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 46.4 68.8L 47.2 69.6L 46.4 68.8M 362.4 68.8L 363.2 69.6L 362.4 68.8M 148.8 69.6L 149.6 70.4L 148.8 69.6M 260 69.6L 260.8 70.4L 260 69.6z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 45.6 70.4L 46.4 71.2L 45.6 70.4M 363.2 70.4L 364 71.2L 363.2 70.4z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 149.6 71.2L 150.4 72L 149.6 71.2M 259.2 71.2L 260 72L 259.2 71.2M 150.4 72.8L 151.2 73.6L 150.4 72.8M 258.4 72.8L 259.2 73.6L 258.4 72.8z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 151.2 74.4L 152 75.2L 151.2 74.4M 257.6 74.4L 258.4 75.2L 257.6 74.4z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 43.2 75.2L 44 76L 43.2 75.2M 365.6 75.2L 366.4 76L 365.6 75.2z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 152 76L 152.8 76.8L 152 76M 256.8 76L 257.6 76.8L 256.8 76z"/>
<path style="stroke:none; fill:#917d7d" d="M 42.4 76.8L 43.2 77.6L 42.4 76.8M 366.4 76.8L 367.2 77.6L 366.4 76.8M 152.8 78.4L 153.6 79.2L 152.8 78.4M 256 78.4L 256.8 79.2L 256 78.4M 41.6 79.2L 42.4 80L 41.6 79.2M 367.2 79.2L 368 80L 367.2 79.2z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 41.6 80L 42.4 80.8L 41.6 80M 367.2 80L 368 80.8L 367.2 80z"/>
<path style="stroke:none; fill:#917d7d" d="M 153.6 81.6L 154.4 82.4L 153.6 81.6M 255.2 81.6L 256 82.4L 255.2 81.6z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 153.6 82.4L 154.4 83.2L 153.6 82.4M 255.2 82.4L 256 83.2L 255.2 82.4M 41.0666 83.7336C 41.0222 83.7776 40.9778 84.6224 41.3334 84.2664C 41.3778 84.2224 41.4222 83.3776 41.0666 83.7336M 368.266 83.7336C 368.222 83.7776 368.178 84.6224 368.534 84.2664C 368.578 84.2224 368.622 83.3776 368.266 83.7336z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 41.0666 85.3336C 41.0222 85.3776 40.9778 86.2224 41.3334 85.8664C 41.3778 85.8224 41.4222 84.9776 41.0666 85.3336M 368.266 85.3336C 368.222 85.3776 368.178 86.2224 368.534 85.8664C 368.578 85.8224 368.622 84.9776 368.266 85.3336z"/>
<path style="stroke:none; fill:#917d7d" d="M 154.4 87.2L 154.4 318.4L 155.2 318.4L 155.2 155.2L 155.2 108C 155.2 101.805 156.803 92.9272 154.4 87.2M 254.4 87.2L 254.4 318.4L 255.2 318.4L 255.2 155.2L 255.2 108C 255.2 101.805 256.803 92.9272 254.4 87.2z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 40.8 320L 40.8 322.4L 41.6 322.4C 41.399 321.238 41.3478 320.998 40.8 320z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 368 320L 368 322.4L 368.8 322.4C 368.599 321.238 368.548 320.998 368 320z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 40.8 322.4L 41.6 323.2L 40.8 322.4M 368 322.4L 368.8 323.2L 368 322.4z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 153.6 323.2L 154.4 324L 153.6 323.2M 255.2 323.2L 256 324L 255.2 323.2z"/>
<path style="stroke:none; fill:#917d7d" d="M 153.6 324L 154.4 324.8L 153.6 324z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 255.2 324L 256 324.8L 255.2 324z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 41.6 325.6L 42.4 326.4L 41.6 325.6M 367.2 325.6L 368 326.4L 367.2 325.6z"/>
<path style="stroke:none; fill:#917d7d" d="M 41.6 326.4L 42.4 327.2L 41.6 326.4M 367.2 326.4L 368 327.2L 367.2 326.4M 152.8 327.2L 153.6 328L 152.8 327.2z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 256 327.2L 256.8 328L 256 327.2z"/>
<path style="stroke:none; fill:#917d7d" d="M 42.4 328.8L 43.2 329.6L 42.4 328.8M 366.4 328.8L 367.2 329.6L 366.4 328.8z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 152 329.6L 152.8 330.4L 152 329.6z"/>
<path style="stroke:none; fill:#917d7d" d="M 256.8 329.6L 257.6 330.4L 256.8 329.6z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 43.2 330.4L 44 331.2L 43.2 330.4M 365.6 330.4L 366.4 331.2L 365.6 330.4z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 151.2 331.2L 152 332L 151.2 331.2M 257.6 331.2L 258.4 332L 257.6 331.2z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 150.4 332.8L 151.2 333.6L 150.4 332.8z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 258.4 332.8L 259.2 333.6L 258.4 332.8z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 149.6 334.4L 150.4 335.2L 149.6 334.4z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 259.2 334.4L 260 335.2L 259.2 334.4M 45.6 335.2L 46.4 336L 45.6 335.2M 363.2 335.2L 364 336L 363.2 335.2z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 148.8 336L 149.6 336.8L 148.8 336M 260 336L 260.8 336.8L 260 336M 46.4 336.8L 47.2 337.6L 46.4 336.8M 362.4 336.8L 363.2 337.6L 362.4 336.8z"/>
<path style="stroke:none; fill:#aca7a7" d="M 147.2 338.4L 148 339.2L 147.2 338.4M 261.6 338.4L 262.4 339.2L 261.6 338.4z"/>
<path style="stroke:none; fill:#9d7575" d="M 48 339.2L 48.8 340L 48 339.2z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 146.4 339.2L 147.2 340L 146.4 339.2M 262.4 339.2L 263.2 340L 262.4 339.2z"/>
<path style="stroke:none; fill:#9d7575" d="M 360.8 339.2L 361.6 340L 360.8 339.2z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 48.8 340L 49.6 340.8L 48.8 340M 360 340L 360.8 340.8L 360 340z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 49.6 340.8L 50.4 341.6L 49.6 340.8M 359.2 340.8L 360 341.6L 359.2 340.8z"/>
<path style="stroke:none; fill:#9d7575" d="M 144.8 341.6L 145.6 342.4L 144.8 341.6M 264 341.6L 264.8 342.4L 264 341.6z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 144 342.4L 144.8 343.2L 144 342.4M 264.8 342.4L 265.6 343.2L 264.8 342.4z"/>
<path style="stroke:none; fill:#b39292" d="M 143.2 343.2L 144 344L 143.2 343.2M 265.6 343.2L 266.4 344L 265.6 343.2M 142.4 344L 143.2 344.8L 142.4 344M 266.4 344L 267.2 344.8L 266.4 344z"/>
<path style="stroke:none; fill:#aca7a7" d="M 141.6 344.8L 142.4 345.6L 141.6 344.8z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 267.2 344.8L 268 345.6L 267.2 344.8z"/>
<path style="stroke:none; fill:#b39292" d="M 140.8 345.6L 141.6 346.4L 140.8 345.6z"/>
<path style="stroke:none; fill:#bb9f9f" d="M 268 345.6L 268.8 346.4L 268 345.6z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 55.2 346.4L 56 347.2L 55.2 346.4z"/>
<path style="stroke:none; fill:#9d7575" d="M 268.8 346.4L 269.6 347.2L 268.8 346.4z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 353.6 346.4L 354.4 347.2L 353.6 346.4M 56 347.2L 56.8 348L 56 347.2M 352.8 347.2L 353.6 348L 352.8 347.2z"/>
<path style="stroke:none; fill:#c5b3b3" d="M 56.8 348L 57.6 348.8L 56.8 348M 352 348L 352.8 348.8L 352 348z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 57.6 348.8L 58.4 349.6L 57.6 348.8z"/>
<path style="stroke:none; fill:#bb9f9f" d="M 136.8 348.8L 137.6 349.6L 136.8 348.8M 272 348.8L 272.8 349.6L 272 348.8z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 351.2 348.8L 352 349.6L 351.2 348.8z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 59.2 349.6L 60 350.4L 59.2 349.6M 349.6 349.6L 350.4 350.4L 349.6 349.6z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 60 350.4L 60.8 351.2L 60 350.4z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 134.4 350.4L 135.2 351.2L 134.4 350.4M 274.4 350.4L 275.2 351.2L 274.4 350.4z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 348.8 350.4L 349.6 351.2L 348.8 350.4z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 61.6 351.2L 62.4 352L 61.6 351.2z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 133.6 351.2L 134.4 352L 133.6 351.2M 275.2 351.2L 276 352L 275.2 351.2z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 347.2 351.2L 348 352L 347.2 351.2z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 132 352L 132.8 352.8L 132 352z"/>
<path style="stroke:none; fill:#b39292" d="M 276.8 352L 277.6 352.8L 276.8 352z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 64 352.8L 64.8 353.6L 64 352.8z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 130.4 352.8L 131.2 353.6L 130.4 352.8M 278.4 352.8L 279.2 353.6L 278.4 352.8z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 344.8 352.8L 345.6 353.6L 344.8 352.8z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 66.1334 353.866C 65.7778 354.222 66.6222 354.178 66.6666 354.134C 67.0222 353.778 66.1778 353.822 66.1334 353.866z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 342.934 353.866C 342.578 354.222 343.422 354.178 343.466 354.134C 343.822 353.778 342.978 353.822 342.934 353.866z"/>
<path style="stroke:none; fill:#bb9f9f" d="M 67.2 354.4L 68 355.2L 67.2 354.4z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 127.2 354.4L 128 355.2L 127.2 354.4M 281.6 354.4L 282.4 355.2L 281.6 354.4z"/>
<path style="stroke:none; fill:#bb9f9f" d="M 341.6 354.4L 342.4 355.2L 341.6 354.4z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 68.8 355.2L 69.6 356L 68.8 355.2z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 125.6 355.2L 126.4 356L 125.6 355.2M 283.2 355.2L 284 356L 283.2 355.2z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 340 355.2L 340.8 356L 340 355.2M 70.4 356L 71.2 356.8L 70.4 356z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 124 356L 124.8 356.8L 124 356z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 284.8 356L 285.6 356.8L 284.8 356z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 338.4 356L 339.2 356.8L 338.4 356z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 73.3334 357.066C 72.9778 357.422 73.8222 357.378 73.8666 357.334C 74.2222 356.978 73.3778 357.022 73.3334 357.066z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 121.334 357.066C 120.978 357.422 121.822 357.378 121.866 357.334C 122.222 356.978 121.378 357.022 121.334 357.066z"/>
<path style="stroke:none; fill:#9d7575" d="M 122.4 356.8L 123.2 357.6L 122.4 356.8M 286.4 356.8L 287.2 357.6L 286.4 356.8z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 287.734 357.066C 287.378 357.422 288.222 357.378 288.266 357.334C 288.622 356.978 287.778 357.022 287.734 357.066z"/>
<path style="stroke:none; fill:#c5b3b3" d="M 335.734 357.066C 335.378 357.422 336.222 357.378 336.266 357.334C 336.622 356.978 335.778 357.022 335.734 357.066z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 75.2 357.6L 76 358.4L 75.2 357.6z"/>
<path style="stroke:none; fill:#c2bdbd" d="M 119.2 357.6L 120 358.4L 119.2 357.6M 289.6 357.6L 290.4 358.4L 289.6 357.6z"/>
<path style="stroke:none; fill:#aca7a7" d="M 333.6 357.6L 334.4 358.4L 333.6 357.6z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 77.6 358.4L 78.4 359.2L 77.6 358.4z"/>
<path style="stroke:none; fill:#b4b0b0" d="M 116.8 358.4L 117.6 359.2L 116.8 358.4M 292 358.4L 292.8 359.2L 292 358.4z"/>
<path style="stroke:none; fill:#9f8d8d" d="M 331.2 358.4L 332 359.2L 331.2 358.4z"/>
<path style="stroke:none; fill:#9d7575" d="M 80 359.2L 80.8 360L 80 359.2z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 80.8 359.2L 80.8 360L 84 360C 82.7952 359.454 82.148 359.339 80.8 359.2M 112 359.2L 112 360L 114.4 360C 113.402 359.452 113.162 359.401 112 359.2z"/>
<path style="stroke:none; fill:#b39292" d="M 114.4 359.2L 115.2 360L 114.4 359.2M 294.4 359.2L 295.2 360L 294.4 359.2z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 295.2 359.2L 295.2 360L 297.6 360C 296.602 359.452 296.362 359.401 295.2 359.2M 325.6 359.2L 325.6 360L 328.8 360C 327.595 359.454 326.948 359.339 325.6 359.2z"/>
<path style="stroke:none; fill:#9d7575" d="M 328.8 359.2L 329.6 360L 328.8 359.2z"/>
<path style="stroke:none; fill:#b39292" d="M 84.5336 360.266C 84.1776 360.622 85.0224 360.578 85.0664 360.534C 85.4224 360.178 84.5776 360.222 84.5336 360.266z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 85.6 360L 85.6 360.8L 88 360.8C 87.0016 360.252 86.7616 360.201 85.6 360z"/>
<path style="stroke:none; fill:#c9c8c8" d="M 108 360L 108 360.8L 110.4 360.8C 109.402 360.252 109.162 360.201 108 360z"/>
<path style="stroke:none; fill:#9c6666" d="M 110.934 360.266C 110.578 360.622 111.422 360.578 111.466 360.534C 111.822 360.178 110.978 360.222 110.934 360.266z"/>
<path style="stroke:none; fill:#b39292" d="M 297.6 360L 297.6 360.8L 300 360.8C 299.002 360.252 298.762 360.201 297.6 360z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 300.534 360.266C 300.178 360.622 301.022 360.578 301.066 360.534C 301.422 360.178 300.578 360.222 300.534 360.266M 321.6 360L 321.6 360.8L 324 360.8C 323.002 360.252 322.762 360.201 321.6 360z"/>
<path style="stroke:none; fill:#ac7c7c" d="M 324.534 360.266C 324.178 360.622 325.022 360.578 325.066 360.534C 325.422 360.178 324.578 360.222 324.534 360.266z"/>
<path style="stroke:none; fill:#aca7a7" d="M 91.2 360.8L 91.2 362.4L 93.6 362.4L 93.6 360.8L 91.2 360.8z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 93.6 360.8L 93.6 362.4L 96.8 362.4L 96.8 360.8L 93.6 360.8M 99.2 361.6L 99.2 362.4L 104 361.6C 102.142 360.862 101.135 361.05 99.2 361.6z"/>
<path style="stroke:none; fill:#9c6666" d="M 104 360.8L 104 362.4C 105.308 361.964 105.164 362.108 105.6 360.8L 104 360.8z"/>
<path style="stroke:none; fill:#aca7a7" d="M 304.8 360.8L 304.8 361.6L 308 362.4L 308 361.6L 304.8 360.8z"/>
<path style="stroke:none; fill:#e0dfdf" d="M 306.4 360.8L 306.4 361.6L 311.2 362.4L 311.2 360.8L 306.4 360.8M 312.8 360.8L 312.8 362.4L 314.4 362.4L 314.4 360.8L 312.8 360.8z"/>
<path style="stroke:none; fill:#d3d3d3" d="M 314.4 362.4L 318.4 361.6C 316.56 360.867 315.698 360.897 314.4 362.4z"/>
<path style="stroke:none; fill:#aca7a7" d="M 101.6 361.6L 101.6 362.4L 104 362.4C 103.002 361.852 102.762 361.801 101.6 361.6M 316 361.6L 316 362.4L 318.4 362.4C 317.402 361.852 317.162 361.801 316 361.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

402
svg/play_active.svg Normal file
View File

@ -0,0 +1,402 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#ffffff" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#ead6d6" d="M 370.4 3.20001L 370.4 4L 382.4 4C 378.823 2.49899 374.254 3.20001 370.4 3.20001z"/>
<path style="stroke:none; fill:#dfc3c3" d="M 382.4 3.20001L 382.4 4L 389.6 4C 387.288 3.02963 384.901 3.20139 382.4 3.20001z"/>
<path style="stroke:none; fill:#c59292" d="M 389.6 3.20001L 389.6 4L 396.8 4C 394.488 3.02963 392.101 3.20139 389.6 3.20001z"/>
<path style="stroke:none; fill:#ae6363" d="M 396.8 3.20001L 396.8 4L 399.2 4C 398.202 3.45215 397.962 3.40097 396.8 3.20001z"/>
<path style="stroke:none; fill:#9b3b3b" d="M 3.2 6.39999C 3.28775 138.901 5.6 271.439 5.6 404C 139.199 404 272.79 405.6 406.4 405.6C 405.29 271.498 403.2 137.363 403.2 3.20001C 336.173 6.07834 268.733 4.4769 201.6 4.80063C 135.494 5.11935 69.366 6.39999 3.2 6.39999z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 263.2 4L 263.2 4.80002L 273.6 4.80002C 270.433 3.4711 266.61 4 263.2 4z"/>
<path style="stroke:none; fill:#ead6d6" d="M 273.6 4L 273.6 4.80002L 280 4.80002C 277.91 3.92184 275.869 4.00577 273.6 4z"/>
<path style="stroke:none; fill:#dfc3c3" d="M 280 4L 280 4.80002L 286.4 4.80002C 284.31 3.92184 282.269 4.00577 280 4z"/>
<path style="stroke:none; fill:#d0a0a0" d="M 286.4 4L 286.4 4.80002L 292.8 4.80002C 290.71 3.92184 288.669 4.00577 286.4 4z"/>
<path style="stroke:none; fill:#ae6363" d="M 292.8 4L 292.8 4.80002L 297.6 4.80002C 295.958 4.10062 294.602 4.03778 292.8 4z"/>
<path style="stroke:none; fill:#ead6d6" d="M 172.8 4.80002L 172.8 5.60001L 180.8 5.60001C 178.27 4.53812 175.531 4.80029 172.8 4.80002z"/>
<path style="stroke:none; fill:#dfc3c3" d="M 180.8 4.80002L 180.8 5.60001L 184.8 5.60001C 183.385 4.97684 182.371 4.87009 180.8 4.80002z"/>
<path style="stroke:none; fill:#d0a0a0" d="M 184.8 4.80002L 184.8 5.60001L 191.2 5.60001C 189.11 4.72186 187.068 4.80576 184.8 4.80002z"/>
<path style="stroke:none; fill:#ae6363" d="M 191.2 4.80002L 191.2 5.60001L 196 5.60001C 194.358 4.9006 193.002 4.83777 191.2 4.80002z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 65.6 5.60001L 65.6 6.39999L 72 6.39999C 69.9098 5.52185 67.8684 5.60577 65.6 5.60001z"/>
<path style="stroke:none; fill:#dfc3c3" d="M 72 5.60001L 72 6.39999L 81.6 6.39999C 78.642 5.15878 75.1866 5.60001 72 5.60001z"/>
<path style="stroke:none; fill:#d6b0b0" d="M 81.6 5.60001L 81.6 6.39999L 88 6.39999C 85.9096 5.52185 83.868 5.60577 81.6 5.60001z"/>
<path style="stroke:none; fill:#bc7b7b" d="M 88 5.60001L 88 6.39999L 95.2 6.39999C 92.888 5.42966 90.5008 5.60138 88 5.60001z"/>
<path style="stroke:none; fill:#ae6363" d="M 3.2 13.6L 3.2 17.6L 4 17.6C 3.92993 16.0287 3.82316 15.0153 3.2 13.6z"/>
<path style="stroke:none; fill:#bc7b7b" d="M 3.2 17.6L 3.2 23.2L 4 23.2C 3.985 21.1654 3.98763 19.4653 3.2 17.6z"/>
<path style="stroke:none; fill:#d6b0b0" d="M 3.2 23.2L 3.2 31.2L 4 31.2C 3.9997 28.4685 4.26189 25.7306 3.2 23.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 89.3336 25.8666C 88.9776 26.2222 89.8224 26.1778 89.8664 26.1334C 90.2224 25.7778 89.3776 25.8222 89.3336 25.8666z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 90.4 25.6L 90.4 26.4L 92.8 26.4C 91.8016 25.8522 91.5616 25.801 90.4 25.6z"/>
<path style="stroke:none; fill:#ffffff" d="M 92.8 26.0111C 87.844 26.3244 83.06 27.0779 78.4 28.8525C 49.8292 39.7337 51.2 69.1656 51.2 94.4L 51.2 319.2C 51.2 344.935 52.0734 374.106 82.4 382.273C 87.7184 383.705 93.7288 383.417 99.2 383.169C 109.193 382.715 117.434 376.748 125.6 371.661C 138.976 363.33 152.398 355.006 165.6 346.4C 213.404 315.238 262.124 285.372 310.4 254.945C 332.038 241.307 358.257 228.654 358.257 199.2C 358.257 168.891 332.893 157.556 310.4 144.161C 260.149 114.234 209.141 85.4272 158.4 56.337C 139.715 45.6251 115.39 24.5833 92.8 26.0111z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 95.2 25.6L 95.2 26.4L 97.6 26.4C 96.6016 25.8522 96.3616 25.801 95.2 25.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 97.6 25.6L 97.6 26.4L 100 26.4C 99.0016 25.8522 98.7616 25.801 97.6 25.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 84 26.4L 84.8 27.2L 84 26.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 84.8 26.4L 85.6 27.2L 84.8 26.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 103.2 26.4L 104 27.2L 103.2 26.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 81.6 27.2L 82.4 28L 81.6 27.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 105.6 27.2L 106.4 28L 105.6 27.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 106.4 27.2L 107.2 28L 106.4 27.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 79.2 28L 80 28.8L 79.2 28z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 108 28L 108.8 28.8L 108 28z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 108.8 28L 109.6 28.8L 108.8 28M 76.8 28.8L 77.6 29.6L 76.8 28.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 110.4 28.8L 111.2 29.6L 110.4 28.8z"/>
<path style="stroke:none; fill:#969292" d="M 75.2 29.6L 76 30.4L 75.2 29.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 112 29.6L 112.8 30.4L 112 29.6z"/>
<path style="stroke:none; fill:#969292" d="M 73.6 30.4L 74.4 31.2L 73.6 30.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 113.6 30.4L 114.4 31.2L 113.6 30.4z"/>
<path style="stroke:none; fill:#dfc3c3" d="M 3.2 31.2L 3.2 37.6L 4 37.6C 3.99422 35.3316 4.07818 33.2902 3.2 31.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 115.2 31.2L 116 32L 115.2 31.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 71.2 32L 72 32.8L 71.2 32z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 69.6 32.8L 70.4 33.6L 69.6 32.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 117.6 32.8L 118.4 33.6L 117.6 32.8M 68.8 33.6L 69.6 34.4L 68.8 33.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 119.2 33.6L 120 34.4L 119.2 33.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 120.8 34.4L 121.6 35.2L 120.8 34.4M 66.4 35.2L 67.2 36L 66.4 35.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 65.6 36L 66.4 36.8L 65.6 36z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 123.2 36L 124 36.8L 123.2 36z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 64.8 36.8L 65.6 37.6L 64.8 36.8M 124.8 36.8L 125.6 37.6L 124.8 36.8z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 3.2 37.6L 3.2 47.2L 4 47.2C 4 44.0135 4.44123 40.558 3.2 37.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 64 37.6L 64.8 38.4L 64 37.6M 63.2 38.4L 64 39.2L 63.2 38.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 62.4 39.2L 63.2 40L 62.4 39.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 128.8 39.2L 129.6 40L 128.8 39.2z"/>
<path style="stroke:none; fill:#969292" d="M 61.6 40L 62.4 40.8L 61.6 40M 130.4 40L 131.2 40.8L 130.4 40z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 60.8 40.8L 61.6 41.6L 60.8 40.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 132.8 41.6L 133.6 42.4L 132.8 41.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 134.4 42.4L 135.2 43.2L 134.4 42.4M 59.2 43.2L 60 44L 59.2 43.2z"/>
<path style="stroke:none; fill:#969292" d="M 136 43.2L 136.8 44L 136 43.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 58.4 44L 59.2 44.8L 58.4 44z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 138.4 44.8L 139.2 45.6L 138.4 44.8M 57.6 45.6L 58.4 46.4L 57.6 45.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 140 45.6L 140.8 46.4L 140 45.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 141.6 46.4L 142.4 47.2L 141.6 46.4z"/>
<path style="stroke:none; fill:#969292" d="M 56 48L 56.8 48.8L 56 48z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 144 48L 144.8 48.8L 144 48z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 145.6 48.8L 146.4 49.6L 145.6 48.8z"/>
<path style="stroke:none; fill:#969292" d="M 55.2 49.6L 56 50.4L 55.2 49.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 148 50.4L 148.8 51.2L 148 50.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 54.4 51.2L 55.2 52L 54.4 51.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 149.6 51.2L 150.4 52L 149.6 51.2z"/>
<path style="stroke:none; fill:#969292" d="M 151.2 52L 152 52.8L 151.2 52z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 53.6 53.6L 54.4 54.4L 53.6 53.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 153.6 53.6L 154.4 54.4L 153.6 53.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 155.2 54.4L 156 55.2L 155.2 54.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 156.8 55.2L 157.6 56L 156.8 55.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 52.8 56L 53.6 56.8L 52.8 56M 159.2 56.8L 160 57.6L 159.2 56.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 160.8 57.6L 161.6 58.4L 160.8 57.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 52 58.4L 52.8 59.2L 52 58.4M 162.4 58.4L 163.2 59.2L 162.4 58.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 52 59.2L 52.8 60L 52 59.2M 164.8 60L 165.6 60.8L 164.8 60z"/>
<path style="stroke:none; fill:#969292" d="M 166.4 60.8L 167.2 61.6L 166.4 60.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 168.8 62.4L 169.6 63.2L 168.8 62.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 51.4666 63.7334C 51.4222 63.7778 51.3778 64.6223 51.7334 64.2666C 51.7778 64.2223 51.8222 63.3777 51.4666 63.7334M 170.4 63.2L 171.2 64L 170.4 63.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 172 64L 172.8 64.8L 172 64z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 51.2 64.8L 51.2 67.2L 52 67.2C 51.799 66.0386 51.7479 65.7987 51.2 64.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 174.4 65.6L 175.2 66.4L 174.4 65.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 176 66.4L 176.8 67.2L 176 66.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 177.6 67.2L 178.4 68L 177.6 67.2z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 403.2 68L 403.2 75.2L 404 75.2C 403.998 72.6993 404.17 70.3118 403.2 68z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 180 68.8L 180.8 69.6L 180 68.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 181.6 69.6L 182.4 70.4L 181.6 69.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 184 71.2L 184.8 72L 184 71.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 185.6 72L 186.4 72.8L 185.6 72z"/>
<path style="stroke:none; fill:#969292" d="M 187.2 72.8L 188 73.6L 187.2 72.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 189.6 74.4L 190.4 75.2L 189.6 74.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 191.2 75.2L 192 76L 191.2 75.2z"/>
<path style="stroke:none; fill:#ead6d6" d="M 403.2 75.2L 403.2 82.4L 404 82.4C 403.998 79.8994 404.17 77.5117 403.2 75.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 192.8 76L 193.6 76.8L 192.8 76z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 195.2 77.6L 196 78.4L 195.2 77.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 196.8 78.4L 197.6 79.2L 196.8 78.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 198.4 79.2L 199.2 80L 198.4 79.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 200.8 80.8L 201.6 81.6L 200.8 80.8z"/>
<path style="stroke:none; fill:#969292" d="M 202.4 81.6L 203.2 82.4L 202.4 81.6z"/>
<path style="stroke:none; fill:#d6b0b0" d="M 403.2 82.4L 403.2 85.6L 404 85.6C 403.861 84.252 403.746 83.6048 403.2 82.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 204.8 83.2L 205.6 84L 204.8 83.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 206.4 84L 207.2 84.8L 206.4 84z"/>
<path style="stroke:none; fill:#969292" d="M 208 84.8L 208.8 85.6L 208 84.8z"/>
<path style="stroke:none; fill:#c59292" d="M 403.2 85.6L 403.2 91.2L 404 91.2C 403.985 89.1656 403.988 87.4656 403.2 85.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 210.4 86.4L 211.2 87.2L 210.4 86.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 212 87.2L 212.8 88L 212 87.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 213.6 88L 214.4 88.8L 213.6 88z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 216 89.6L 216.8 90.4L 216 89.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 217.6 90.4L 218.4 91.2L 217.6 90.4z"/>
<path style="stroke:none; fill:#ae6363" d="M 403.2 91.2L 403.2 95.2L 404 95.2C 403.93 93.6288 403.823 92.6152 403.2 91.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 220 92L 220.8 92.8L 220 92z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 221.6 92.8L 222.4 93.6L 221.6 92.8z"/>
<path style="stroke:none; fill:#969292" d="M 223.2 93.6L 224 94.4L 223.2 93.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 225.6 95.2L 226.4 96L 225.6 95.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 227.2 96L 228 96.8L 227.2 96z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 228.8 96.8L 229.6 97.6L 228.8 96.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 231.2 98.4L 232 99.2L 231.2 98.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 232.8 99.2L 233.6 100L 232.8 99.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 234.4 100L 235.2 100.8L 234.4 100z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 236.8 101.6L 237.6 102.4L 236.8 101.6z"/>
<path style="stroke:none; fill:#969292" d="M 238.4 102.4L 239.2 103.2L 238.4 102.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 240.8 104L 241.6 104.8L 240.8 104z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 242.4 104.8L 243.2 105.6L 242.4 104.8z"/>
<path style="stroke:none; fill:#969292" d="M 244 105.6L 244.8 106.4L 244 105.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 246.4 107.2L 247.2 108L 246.4 107.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 248 108L 248.8 108.8L 248 108z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 249.6 108.8L 250.4 109.6L 249.6 108.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 252 110.4L 252.8 111.2L 252 110.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 253.6 111.2L 254.4 112L 253.6 111.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 256 112.8L 256.8 113.6L 256 112.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 257.6 113.6L 258.4 114.4L 257.6 113.6z"/>
<path style="stroke:none; fill:#969292" d="M 259.2 114.4L 260 115.2L 259.2 114.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 261.6 116L 262.4 116.8L 261.6 116z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 263.2 116.8L 264 117.6L 263.2 116.8z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 264.8 117.6L 265.6 118.4L 264.8 117.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 267.2 119.2L 268 120L 267.2 119.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 268.8 120L 269.6 120.8L 268.8 120z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 270.4 120.8L 271.2 121.6L 270.4 120.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 272.8 122.4L 273.6 123.2L 272.8 122.4z"/>
<path style="stroke:none; fill:#969292" d="M 274.4 123.2L 275.2 124L 274.4 123.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 276.8 124.8L 277.6 125.6L 276.8 124.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 278.4 125.6L 279.2 126.4L 278.4 125.6z"/>
<path style="stroke:none; fill:#969292" d="M 280 126.4L 280.8 127.2L 280 126.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 282.4 128L 283.2 128.8L 282.4 128z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 284 128.8L 284.8 129.6L 284 128.8z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 285.6 129.6L 286.4 130.4L 285.6 129.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 288 131.2L 288.8 132L 288 131.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 289.6 132L 290.4 132.8L 289.6 132z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 292 133.6L 292.8 134.4L 292 133.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 293.6 134.4L 294.4 135.2L 293.6 134.4z"/>
<path style="stroke:none; fill:#969292" d="M 295.2 135.2L 296 136L 295.2 135.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 297.6 136.8L 298.4 137.6L 297.6 136.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 299.2 137.6L 300 138.4L 299.2 137.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 300.8 138.4L 301.6 139.2L 300.8 138.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 303.2 140L 304 140.8L 303.2 140z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 304.8 140.8L 305.6 141.6L 304.8 140.8z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 306.4 141.6L 307.2 142.4L 306.4 141.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 308.8 143.2L 309.6 144L 308.8 143.2z"/>
<path style="stroke:none; fill:#969292" d="M 310.4 144L 311.2 144.8L 310.4 144z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 312.8 145.6L 313.6 146.4L 312.8 145.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 314.4 146.4L 315.2 147.2L 314.4 146.4z"/>
<path style="stroke:none; fill:#969292" d="M 316 147.2L 316.8 148L 316 147.2z"/>
<path style="stroke:none; fill:#ae6363" d="M 4 148.8L 4 155.2L 4.8 155.2C 4.79422 152.931 4.87818 150.89 4 148.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 318.4 148.8L 319.2 149.6L 318.4 148.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 320 149.6L 320.8 150.4L 320 149.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 321.6 150.4L 322.4 151.2L 321.6 150.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 324 152L 324.8 152.8L 324 152z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 325.6 152.8L 326.4 153.6L 325.6 152.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 328 154.4L 328.8 155.2L 328 154.4z"/>
<path style="stroke:none; fill:#c59292" d="M 4 155.2L 4 160L 4.8 160C 4.76223 158.198 4.6994 156.842 4 155.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 329.6 155.2L 330.4 156L 329.6 155.2z"/>
<path style="stroke:none; fill:#969292" d="M 331.2 156L 332 156.8L 331.2 156z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 333.6 157.6L 334.4 158.4L 333.6 157.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 335.2 158.4L 336 159.2L 335.2 158.4z"/>
<path style="stroke:none; fill:#d6b0b0" d="M 4 160L 4 164L 4.8 164C 4.72993 162.429 4.62316 161.415 4 160z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 337.6 160L 338.4 160.8L 337.6 160z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 340 161.6L 340.8 162.4L 340 161.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 340.8 162.4L 341.6 163.2L 340.8 162.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 341.6 163.2L 342.4 164L 341.6 163.2z"/>
<path style="stroke:none; fill:#ead6d6" d="M 4 164L 4 174.4L 4.8 174.4C 4.8 170.99 5.32891 167.167 4 164z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 347.2 168.8L 348 169.6L 347.2 168.8z"/>
<path style="stroke:none; fill:#969292" d="M 348 169.6L 348.8 170.4L 348 169.6z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 404 169.6L 404 176L 404.8 176C 404.794 173.732 404.878 171.69 404 169.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 349.6 172L 350.4 172.8L 349.6 172z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 4 174.4L 4 188.8L 4.8 188.8C 4.8 184.294 5.75314 178.578 4 174.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 351.2 174.4L 352 175.2L 351.2 174.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 352 176L 352.8 176.8L 352 176z"/>
<path style="stroke:none; fill:#dfc3c3" d="M 404 176L 404 184L 404.8 184C 404.8 181.269 405.062 178.53 404 176z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 353.6 179.2L 354.4 180L 353.6 179.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 354.4 180.8L 355.2 181.6L 354.4 180.8z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 355.2 182.4L 356 183.2L 355.2 182.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 355.2 183.2L 356 184L 355.2 183.2z"/>
<path style="stroke:none; fill:#d6b0b0" d="M 404 184L 404 189.6L 404.8 189.6C 404.785 187.566 404.788 185.866 404 184z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 356 184.8L 356.8 185.6L 356 184.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 356 185.6L 356.8 186.4L 356 185.6z"/>
<path style="stroke:none; fill:#969292" d="M 356.8 188L 357.6 188.8L 356.8 188z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 356.8 188.8L 357.6 189.6L 356.8 188.8z"/>
<path style="stroke:none; fill:#bc7b7b" d="M 404 189.6L 404 196.8L 404.8 196.8C 404.798 194.299 404.97 191.912 404 189.6z"/>
<path style="stroke:none; fill:#969292" d="M 357.6 192L 357.6 194.4L 358.4 194.4C 358.199 193.238 358.148 192.998 357.6 192z"/>
<path style="stroke:none; fill:#ead6d6" d="M 357.6 194.4L 357.6 196.8L 358.4 196.8C 358.199 195.638 358.148 195.398 357.6 194.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 357.866 202.134C 357.822 202.178 357.778 203.022 358.134 202.666C 358.178 202.622 358.222 201.778 357.866 202.134z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 357.866 203.734C 357.822 203.778 357.778 204.622 358.134 204.266C 358.178 204.222 358.222 203.378 357.866 203.734z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 356.8 208L 357.6 208.8L 356.8 208z"/>
<path style="stroke:none; fill:#969292" d="M 356.8 208.8L 357.6 209.6L 356.8 208.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 356 211.2L 356.8 212L 356 211.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 356 212L 356.8 212.8L 356 212M 355.2 214.4L 356 215.2L 355.2 214.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 354.4 216L 355.2 216.8L 354.4 216z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 351.2 222.4L 352 223.2L 351.2 222.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 350.4 224L 351.2 224.8L 350.4 224z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 349.6 224.8L 350.4 225.6L 349.6 224.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 348 227.2L 348.8 228L 348 227.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 347.2 228L 348 228.8L 347.2 228M 340.8 234.4L 341.6 235.2L 340.8 234.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 340 235.2L 340.8 236L 340 235.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 337.6 236.8L 338.4 237.6L 337.6 236.8z"/>
<path style="stroke:none; fill:#969292" d="M 336.8 237.6L 337.6 238.4L 336.8 237.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 335.2 238.4L 336 239.2L 335.2 238.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 334.4 239.2L 335.2 240L 334.4 239.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 332.8 240L 333.6 240.8L 332.8 240z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 330.4 241.6L 331.2 242.4L 330.4 241.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 328 243.2L 328.8 244L 328 243.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 326.4 244L 327.2 244.8L 326.4 244z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 324 245.6L 324.8 246.4L 324 245.6z"/>
<path style="stroke:none; fill:#969292" d="M 321.6 247.2L 322.4 248L 321.6 247.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 320 248L 320.8 248.8L 320 248z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 319.2 248.8L 320 249.6L 319.2 248.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 317.6 249.6L 318.4 250.4L 317.6 249.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 315.2 251.2L 316 252L 315.2 251.2z"/>
<path style="stroke:none; fill:#969292" d="M 312.8 252.8L 313.6 253.6L 312.8 252.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 311.2 253.6L 312 254.4L 311.2 253.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 308.8 255.2L 309.6 256L 308.8 255.2z"/>
<path style="stroke:none; fill:#969292" d="M 306.4 256.8L 307.2 257.6L 306.4 256.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 304.8 257.6L 305.6 258.4L 304.8 257.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 304 258.4L 304.8 259.2L 304 258.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 302.4 259.2L 303.2 260L 302.4 259.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 300 260.8L 300.8 261.6L 300 260.8z"/>
<path style="stroke:none; fill:#969292" d="M 297.6 262.4L 298.4 263.2L 297.6 262.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 296 263.2L 296.8 264L 296 263.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 293.6 264.8L 294.4 265.6L 293.6 264.8z"/>
<path style="stroke:none; fill:#969292" d="M 291.2 266.4L 292 267.2L 291.2 266.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 289.6 267.2L 290.4 268L 289.6 267.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 288.8 268L 289.6 268.8L 288.8 268z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 287.2 268.8L 288 269.6L 287.2 268.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 284.8 270.4L 285.6 271.2L 284.8 270.4z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 404.8 271.2L 404.8 277.6L 405.6 277.6C 405.594 275.331 405.678 273.29 404.8 271.2z"/>
<path style="stroke:none; fill:#969292" d="M 282.4 272L 283.2 272.8L 282.4 272z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 280.8 272.8L 281.6 273.6L 280.8 272.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 278.4 274.4L 279.2 275.2L 278.4 274.4z"/>
<path style="stroke:none; fill:#969292" d="M 276 276L 276.8 276.8L 276 276z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 274.4 276.8L 275.2 277.6L 274.4 276.8z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 273.6 277.6L 274.4 278.4L 273.6 277.6z"/>
<path style="stroke:none; fill:#ead6d6" d="M 404.8 277.6L 404.8 284L 405.6 284C 405.594 281.731 405.678 279.69 404.8 277.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 272 278.4L 272.8 279.2L 272 278.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 269.6 280L 270.4 280.8L 269.6 280z"/>
<path style="stroke:none; fill:#969292" d="M 267.2 281.6L 268 282.4L 267.2 281.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 265.6 282.4L 266.4 283.2L 265.6 282.4z"/>
<path style="stroke:none; fill:#ae6363" d="M 4.8 284L 4.8 288.8L 5.6 288.8C 5.56223 286.998 5.4994 285.642 4.8 284z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 263.2 284L 264 284.8L 263.2 284z"/>
<path style="stroke:none; fill:#d6b0b0" d="M 404.8 284L 404.8 291.2L 405.6 291.2C 405.598 288.699 405.77 286.312 404.8 284z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 260.8 285.6L 261.6 286.4L 260.8 285.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 259.2 286.4L 260 287.2L 259.2 286.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 258.4 287.2L 259.2 288L 258.4 287.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 256.8 288L 257.6 288.8L 256.8 288z"/>
<path style="stroke:none; fill:#c59292" d="M 4.8 288.8L 4.8 295.2L 5.6 295.2C 5.59422 292.931 5.67817 290.89 4.8 288.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 254.4 289.6L 255.2 290.4L 254.4 289.6z"/>
<path style="stroke:none; fill:#969292" d="M 252 291.2L 252.8 292L 252 291.2z"/>
<path style="stroke:none; fill:#bc7b7b" d="M 404.8 291.2L 404.8 298.4L 405.6 298.4C 405.598 295.899 405.77 293.512 404.8 291.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 250.4 292L 251.2 292.8L 250.4 292z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 248 293.6L 248.8 294.4L 248 293.6z"/>
<path style="stroke:none; fill:#d6b0b0" d="M 4.8 295.2L 4.8 300L 5.6 300C 5.56223 298.198 5.4994 296.842 4.8 295.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 245.6 295.2L 246.4 296L 245.6 295.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 244 296L 244.8 296.8L 244 296z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 243.2 296.8L 244 297.6L 243.2 296.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 241.6 297.6L 242.4 298.4L 241.6 297.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 239.2 299.2L 240 300L 239.2 299.2z"/>
<path style="stroke:none; fill:#ead6d6" d="M 4.8 300L 4.8 309.6L 5.6 309.6C 5.6 306.414 6.04122 302.958 4.8 300z"/>
<path style="stroke:none; fill:#969292" d="M 236.8 300.8L 237.6 301.6L 236.8 300.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 235.2 301.6L 236 302.4L 235.2 301.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 232.8 303.2L 233.6 304L 232.8 303.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 230.4 304.8L 231.2 305.6L 230.4 304.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 228.8 305.6L 229.6 306.4L 228.8 305.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 228 306.4L 228.8 307.2L 228 306.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 226.4 307.2L 227.2 308L 226.4 307.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 224 308.8L 224.8 309.6L 224 308.8z"/>
<path style="stroke:none; fill:#969292" d="M 221.6 310.4L 222.4 311.2L 221.6 310.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 220 311.2L 220.8 312L 220 311.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 217.6 312.8L 218.4 313.6L 217.6 312.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 215.2 314.4L 216 315.2L 215.2 314.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 213.6 315.2L 214.4 316L 213.6 315.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 212.8 316L 213.6 316.8L 212.8 316z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 211.2 316.8L 212 317.6L 211.2 316.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 208.8 318.4L 209.6 319.2L 208.8 318.4z"/>
<path style="stroke:none; fill:#969292" d="M 206.4 320L 207.2 320.8L 206.4 320z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 204.8 320.8L 205.6 321.6L 204.8 320.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 202.4 322.4L 203.2 323.2L 202.4 322.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 200 324L 200.8 324.8L 200 324z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 198.4 324.8L 199.2 325.6L 198.4 324.8z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 197.6 325.6L 198.4 326.4L 197.6 325.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 196 326.4L 196.8 327.2L 196 326.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 193.6 328L 194.4 328.8L 193.6 328z"/>
<path style="stroke:none; fill:#969292" d="M 191.2 329.6L 192 330.4L 191.2 329.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 189.6 330.4L 190.4 331.2L 189.6 330.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 187.2 332L 188 332.8L 187.2 332z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 184.8 333.6L 185.6 334.4L 184.8 333.6z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 183.2 334.4L 184 335.2L 183.2 334.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 182.4 335.2L 183.2 336L 182.4 335.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 180.8 336L 181.6 336.8L 180.8 336z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 178.4 337.6L 179.2 338.4L 178.4 337.6z"/>
<path style="stroke:none; fill:#969292" d="M 176 339.2L 176.8 340L 176 339.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 174.4 340L 175.2 340.8L 174.4 340z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 172 341.6L 172.8 342.4L 172 341.6z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 51.2 342.4L 51.2 344.8L 52 344.8C 51.799 343.638 51.7478 343.398 51.2 342.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 169.6 343.2L 170.4 344L 169.6 343.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 168 344L 168.8 344.8L 168 344z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 51.2 344.8L 51.2 347.2L 52 347.2C 51.799 346.038 51.7478 345.798 51.2 344.8z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 167.2 344.8L 168 345.6L 167.2 344.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 165.6 345.6L 166.4 346.4L 165.6 345.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 163.2 347.2L 164 348L 163.2 347.2z"/>
<path style="stroke:none; fill:#969292" d="M 160.8 348.8L 161.6 349.6L 160.8 348.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 159.2 349.6L 160 350.4L 159.2 349.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 52 350.4L 52.8 351.2L 52 350.4z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 158.4 350.4L 159.2 351.2L 158.4 350.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 156.8 351.2L 157.6 352L 156.8 351.2z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 154.4 352.8L 155.2 353.6L 154.4 352.8z"/>
<path style="stroke:none; fill:#969292" d="M 52.8 353.6L 53.6 354.4L 52.8 353.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 152.8 353.6L 153.6 354.4L 152.8 353.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 152 354.4L 152.8 355.2L 152 354.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 150.4 355.2L 151.2 356L 150.4 355.2z"/>
<path style="stroke:none; fill:#969292" d="M 53.6 356L 54.4 356.8L 53.6 356z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 148 356.8L 148.8 357.6L 148 356.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 54.4 357.6L 55.2 358.4L 54.4 357.6z"/>
<path style="stroke:none; fill:#969292" d="M 145.6 358.4L 146.4 359.2L 145.6 358.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 55.2 359.2L 56 360L 55.2 359.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 144 359.2L 144.8 360L 144 359.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 56 360.8L 56.8 361.6L 56 360.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 141.6 360.8L 142.4 361.6L 141.6 360.8z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 56.8 362.4L 57.6 363.2L 56.8 362.4z"/>
<path style="stroke:none; fill:#969292" d="M 139.2 362.4L 140 363.2L 139.2 362.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 137.6 363.2L 138.4 364L 137.6 363.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 57.6 364L 58.4 364.8L 57.6 364M 136.8 364L 137.6 364.8L 136.8 364z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 135.2 364.8L 136 365.6L 135.2 364.8z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 132.8 366.4L 133.6 367.2L 132.8 366.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 60 367.2L 60.8 368L 60 367.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 60.8 368L 61.6 368.8L 60.8 368z"/>
<path style="stroke:none; fill:#969292" d="M 130.4 368L 131.2 368.8L 130.4 368z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 128.8 368.8L 129.6 369.6L 128.8 368.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 126.4 370.4L 127.2 371.2L 126.4 370.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 124 372L 124.8 372.8L 124 372z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 122.4 372.8L 123.2 373.6L 122.4 372.8z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 405.6 372.8L 405.6 379.2L 406.4 379.2C 406.394 376.931 406.478 374.89 405.6 372.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 66.4 373.6L 67.2 374.4L 66.4 373.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 121.6 373.6L 122.4 374.4L 121.6 373.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 67.2 374.4L 68 375.2L 67.2 374.4z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 120 374.4L 120.8 375.2L 120 374.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 69.6 376L 70.4 376.8L 69.6 376z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 117.6 376L 118.4 376.8L 117.6 376z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 70.4 376.8L 71.2 377.6L 70.4 376.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 72 377.6L 72.8 378.4L 72 377.6z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 115.2 377.6L 116 378.4L 115.2 377.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 73.6 378.4L 74.4 379.2L 73.6 378.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 113.6 378.4L 114.4 379.2L 113.6 378.4M 112 379.2L 112.8 380L 112 379.2z"/>
<path style="stroke:none; fill:#ead6d6" d="M 405.6 379.2L 405.6 385.6L 406.4 385.6C 406.394 383.331 406.478 381.29 405.6 379.2z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 76.8 380L 77.6 380.8L 76.8 380z"/>
<path style="stroke:none; fill:#969292" d="M 110.4 380L 111.2 380.8L 110.4 380M 78.4 380.8L 79.2 381.6L 78.4 380.8z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 108 380.8L 108.8 381.6L 108 380.8z"/>
<path style="stroke:none; fill:#969292" d="M 80.8 381.6L 81.6 382.4L 80.8 381.6z"/>
<path style="stroke:none; fill:#b8b8b8" d="M 105.6 381.6L 106.4 382.4L 105.6 381.6z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 84 382.4L 84.8 383.2L 84 382.4z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 102.4 382.4L 103.2 383.2L 102.4 382.4z"/>
<path style="stroke:none; fill:#969292" d="M 103.2 382.4L 104 383.2L 103.2 382.4z"/>
<path style="stroke:none; fill:#a8a8a8" d="M 88.5336 383.466C 88.1776 383.822 89.0224 383.778 89.0664 383.734C 89.4224 383.378 88.5776 383.422 88.5336 383.466z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 90.1336 383.466C 89.7776 383.822 90.6224 383.778 90.6664 383.734C 91.0224 383.378 90.1776 383.422 90.1336 383.466z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 91.2 383.2L 91.2 384L 96 384C 94.3584 383.301 93.0024 383.238 91.2 383.2z"/>
<path style="stroke:none; fill:#c7c7c7" d="M 96 383.2L 96 384L 98.4 384C 97.4016 383.452 97.1616 383.401 96 383.2z"/>
<path style="stroke:none; fill:#8f7a7a" d="M 98.9336 383.466C 98.5776 383.822 99.4224 383.778 99.4664 383.734C 99.8224 383.378 98.9776 383.422 98.9336 383.466z"/>
<path style="stroke:none; fill:#d6b0b0" d="M 405.6 385.6L 405.6 392.8L 406.4 392.8C 406.398 390.299 406.57 387.912 405.6 385.6z"/>
<path style="stroke:none; fill:#bc7b7b" d="M 405.6 392.8L 405.6 400L 406.4 400C 406.398 397.499 406.57 395.112 405.6 392.8z"/>
<path style="stroke:none; fill:#dfc3c3" d="M 5.6 404L 5.6 404.8L 30.4 404.8C 23.7066 401.991 12.861 404 5.6 404z"/>
<path style="stroke:none; fill:#d0a0a0" d="M 30.4 404L 30.4 404.8L 52 404.8C 46.0729 402.313 36.8196 404 30.4 404z"/>
<path style="stroke:none; fill:#bc7b7b" d="M 52 404L 52 404.8L 61.6 404.8C 58.642 403.558 55.1866 404 52 404z"/>
<path style="stroke:none; fill:#ae6363" d="M 61.6 404L 61.6 404.8L 91.2 404.8C 83.3616 401.511 70.119 404 61.6 404z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 160.8 404.8L 160.8 405.6L 176 405.6C 171.625 403.764 165.521 404.8 160.8 404.8z"/>
<path style="stroke:none; fill:#ead6d6" d="M 176 404.8L 176 405.6L 204 405.6C 196.543 402.471 184.1 404.8 176 404.8z"/>
<path style="stroke:none; fill:#dfc3c3" d="M 204 404.8L 204 405.6L 218.4 405.6C 214.222 403.847 208.506 404.8 204 404.8z"/>
<path style="stroke:none; fill:#d6b0b0" d="M 218.4 404.8L 218.4 405.6L 233.6 405.6C 229.225 403.764 223.121 404.8 218.4 404.8z"/>
<path style="stroke:none; fill:#d0a0a0" d="M 233.6 404.8L 233.6 405.6L 252 405.6C 246.844 403.437 239.174 404.8 233.6 404.8z"/>
<path style="stroke:none; fill:#c59292" d="M 252 404.8L 252 405.6L 266.4 405.6C 262.222 403.847 256.506 404.8 252 404.8z"/>
<path style="stroke:none; fill:#bc7b7b" d="M 266.4 404.8L 266.4 405.6L 272.8 405.6C 270.71 404.722 268.669 404.806 266.4 404.8z"/>
<path style="stroke:none; fill:#ae6363" d="M 272.8 404.8L 272.8 405.6L 292 405.6C 286.65 403.355 278.586 404.8 272.8 404.8z"/>
<path style="stroke:none; fill:#f6ebeb" d="M 352 405.6L 352 406.4L 384 406.4C 375.59 402.871 361.147 405.6 352 405.6z"/>
<path style="stroke:none; fill:#ead6d6" d="M 384 405.6L 384 406.4L 406.4 406.4C 400.281 403.832 390.63 405.6 384 405.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

345
svg/play_inactive.svg Normal file
View File

@ -0,0 +1,345 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#9b3b3b" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 89.3336 25.8666C 88.9776 26.2222 89.8224 26.1778 89.8664 26.1334C 90.2224 25.7778 89.3776 25.8222 89.3336 25.8666z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 90.4 25.6L 90.4 26.4L 92.8 26.4C 91.8016 25.8522 91.5616 25.801 90.4 25.6z"/>
<path style="stroke:none; fill:#ffffff" d="M 92.8 26.0111C 87.844 26.3244 83.06 27.0779 78.4 28.8525C 49.8292 39.7337 51.2 69.1656 51.2 94.4L 51.2 319.2C 51.2 344.935 52.0734 374.106 82.4 382.273C 87.7184 383.705 93.7288 383.417 99.2 383.169C 109.193 382.715 117.434 376.748 125.6 371.661C 138.976 363.33 152.398 355.006 165.6 346.4C 213.404 315.238 262.124 285.372 310.4 254.945C 332.038 241.307 358.257 228.654 358.257 199.2C 358.257 168.891 332.893 157.556 310.4 144.161C 260.149 114.234 209.141 85.4272 158.4 56.337C 139.715 45.6251 115.39 24.5833 92.8 26.0111z"/>
<path style="stroke:none; fill:#e2e2e2" d="M 95.2 25.6L 95.2 26.4L 97.6 26.4C 96.6016 25.8522 96.3616 25.801 95.2 25.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 97.6 25.6L 97.6 26.4L 100 26.4C 99.0016 25.8522 98.7616 25.801 97.6 25.6z"/>
<path style="stroke:none; fill:#8a7575" d="M 84 26.4L 84.8 27.2L 84 26.4z"/>
<path style="stroke:none; fill:#bababa" d="M 84.8 26.4L 85.6 27.2L 84.8 26.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 103.2 26.4L 104 27.2L 103.2 26.4z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 81.6 27.2L 82.4 28L 81.6 27.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 105.6 27.2L 106.4 28L 105.6 27.2z"/>
<path style="stroke:none; fill:#928181" d="M 106.4 27.2L 107.2 28L 106.4 27.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 79.2 28L 80 28.8L 79.2 28z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 108 28L 108.8 28.8L 108 28z"/>
<path style="stroke:none; fill:#8a7575" d="M 108.8 28L 109.6 28.8L 108.8 28z"/>
<path style="stroke:none; fill:#928181" d="M 76.8 28.8L 77.6 29.6L 76.8 28.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 110.4 28.8L 111.2 29.6L 110.4 28.8z"/>
<path style="stroke:none; fill:#959090" d="M 75.2 29.6L 76 30.4L 75.2 29.6z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 112 29.6L 112.8 30.4L 112 29.6z"/>
<path style="stroke:none; fill:#9d9b9b" d="M 73.6 30.4L 74.4 31.2L 73.6 30.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 113.6 30.4L 114.4 31.2L 113.6 30.4z"/>
<path style="stroke:none; fill:#928181" d="M 115.2 31.2L 116 32L 115.2 31.2z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 71.2 32L 72 32.8L 71.2 32z"/>
<path style="stroke:none; fill:#928181" d="M 69.6 32.8L 70.4 33.6L 69.6 32.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 117.6 32.8L 118.4 33.6L 117.6 32.8M 68.8 33.6L 69.6 34.4L 68.8 33.6z"/>
<path style="stroke:none; fill:#acacac" d="M 119.2 33.6L 120 34.4L 119.2 33.6z"/>
<path style="stroke:none; fill:#928181" d="M 120.8 34.4L 121.6 35.2L 120.8 34.4z"/>
<path style="stroke:none; fill:#8a7575" d="M 66.4 35.2L 67.2 36L 66.4 35.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 65.6 36L 66.4 36.8L 65.6 36z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 123.2 36L 124 36.8L 123.2 36z"/>
<path style="stroke:none; fill:#acacac" d="M 64.8 36.8L 65.6 37.6L 64.8 36.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 124.8 36.8L 125.6 37.6L 124.8 36.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 64 37.6L 64.8 38.4L 64 37.6z"/>
<path style="stroke:none; fill:#bababa" d="M 63.2 38.4L 64 39.2L 63.2 38.4z"/>
<path style="stroke:none; fill:#acacac" d="M 62.4 39.2L 63.2 40L 62.4 39.2z"/>
<path style="stroke:none; fill:#bababa" d="M 128.8 39.2L 129.6 40L 128.8 39.2z"/>
<path style="stroke:none; fill:#959090" d="M 61.6 40L 62.4 40.8L 61.6 40M 130.4 40L 131.2 40.8L 130.4 40z"/>
<path style="stroke:none; fill:#8a7575" d="M 60.8 40.8L 61.6 41.6L 60.8 40.8z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 132.8 41.6L 133.6 42.4L 132.8 41.6z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 134.4 42.4L 135.2 43.2L 134.4 42.4z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 59.2 43.2L 60 44L 59.2 43.2z"/>
<path style="stroke:none; fill:#959090" d="M 136 43.2L 136.8 44L 136 43.2z"/>
<path style="stroke:none; fill:#928181" d="M 58.4 44L 59.2 44.8L 58.4 44z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 138.4 44.8L 139.2 45.6L 138.4 44.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 57.6 45.6L 58.4 46.4L 57.6 45.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 140 45.6L 140.8 46.4L 140 45.6z"/>
<path style="stroke:none; fill:#928181" d="M 141.6 46.4L 142.4 47.2L 141.6 46.4z"/>
<path style="stroke:none; fill:#9d9b9b" d="M 56 48L 56.8 48.8L 56 48z"/>
<path style="stroke:none; fill:#bababa" d="M 144 48L 144.8 48.8L 144 48z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 145.6 48.8L 146.4 49.6L 145.6 48.8z"/>
<path style="stroke:none; fill:#959090" d="M 55.2 49.6L 56 50.4L 55.2 49.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 148 50.4L 148.8 51.2L 148 50.4z"/>
<path style="stroke:none; fill:#928181" d="M 54.4 51.2L 55.2 52L 54.4 51.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 149.6 51.2L 150.4 52L 149.6 51.2z"/>
<path style="stroke:none; fill:#959090" d="M 151.2 52L 152 52.8L 151.2 52z"/>
<path style="stroke:none; fill:#acacac" d="M 53.6 53.6L 54.4 54.4L 53.6 53.6z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 153.6 53.6L 154.4 54.4L 153.6 53.6z"/>
<path style="stroke:none; fill:#acacac" d="M 155.2 54.4L 156 55.2L 155.2 54.4z"/>
<path style="stroke:none; fill:#928181" d="M 156.8 55.2L 157.6 56L 156.8 55.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 52.8 56L 53.6 56.8L 52.8 56z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 159.2 56.8L 160 57.6L 159.2 56.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 160.8 57.6L 161.6 58.4L 160.8 57.6z"/>
<path style="stroke:none; fill:#8a7575" d="M 52 58.4L 52.8 59.2L 52 58.4M 162.4 58.4L 163.2 59.2L 162.4 58.4z"/>
<path style="stroke:none; fill:#bababa" d="M 52 59.2L 52.8 60L 52 59.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 164.8 60L 165.6 60.8L 164.8 60z"/>
<path style="stroke:none; fill:#959090" d="M 166.4 60.8L 167.2 61.6L 166.4 60.8z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 168.8 62.4L 169.6 63.2L 168.8 62.4z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 51.4666 63.7334C 51.4222 63.7778 51.3778 64.6223 51.7334 64.2666C 51.7778 64.2223 51.8222 63.3777 51.4666 63.7334M 170.4 63.2L 171.2 64L 170.4 63.2z"/>
<path style="stroke:none; fill:#928181" d="M 172 64L 172.8 64.8L 172 64z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 51.2 64.8L 51.2 67.2L 52 67.2C 51.799 66.0386 51.7479 65.7987 51.2 64.8z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 174.4 65.6L 175.2 66.4L 174.4 65.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 176 66.4L 176.8 67.2L 176 66.4z"/>
<path style="stroke:none; fill:#928181" d="M 177.6 67.2L 178.4 68L 177.6 67.2z"/>
<path style="stroke:none; fill:#bababa" d="M 180 68.8L 180.8 69.6L 180 68.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 181.6 69.6L 182.4 70.4L 181.6 69.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 184 71.2L 184.8 72L 184 71.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 185.6 72L 186.4 72.8L 185.6 72z"/>
<path style="stroke:none; fill:#959090" d="M 187.2 72.8L 188 73.6L 187.2 72.8z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 189.6 74.4L 190.4 75.2L 189.6 74.4z"/>
<path style="stroke:none; fill:#acacac" d="M 191.2 75.2L 192 76L 191.2 75.2z"/>
<path style="stroke:none; fill:#928181" d="M 192.8 76L 193.6 76.8L 192.8 76z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 195.2 77.6L 196 78.4L 195.2 77.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 196.8 78.4L 197.6 79.2L 196.8 78.4z"/>
<path style="stroke:none; fill:#8a7575" d="M 198.4 79.2L 199.2 80L 198.4 79.2z"/>
<path style="stroke:none; fill:#bababa" d="M 200.8 80.8L 201.6 81.6L 200.8 80.8z"/>
<path style="stroke:none; fill:#959090" d="M 202.4 81.6L 203.2 82.4L 202.4 81.6z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 204.8 83.2L 205.6 84L 204.8 83.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 206.4 84L 207.2 84.8L 206.4 84z"/>
<path style="stroke:none; fill:#959090" d="M 208 84.8L 208.8 85.6L 208 84.8z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 210.4 86.4L 211.2 87.2L 210.4 86.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 212 87.2L 212.8 88L 212 87.2z"/>
<path style="stroke:none; fill:#928181" d="M 213.6 88L 214.4 88.8L 213.6 88z"/>
<path style="stroke:none; fill:#bababa" d="M 216 89.6L 216.8 90.4L 216 89.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 217.6 90.4L 218.4 91.2L 217.6 90.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 220 92L 220.8 92.8L 220 92z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 221.6 92.8L 222.4 93.6L 221.6 92.8z"/>
<path style="stroke:none; fill:#959090" d="M 223.2 93.6L 224 94.4L 223.2 93.6z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 225.6 95.2L 226.4 96L 225.6 95.2z"/>
<path style="stroke:none; fill:#acacac" d="M 227.2 96L 228 96.8L 227.2 96z"/>
<path style="stroke:none; fill:#928181" d="M 228.8 96.8L 229.6 97.6L 228.8 96.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 231.2 98.4L 232 99.2L 231.2 98.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 232.8 99.2L 233.6 100L 232.8 99.2z"/>
<path style="stroke:none; fill:#8a7575" d="M 234.4 100L 235.2 100.8L 234.4 100z"/>
<path style="stroke:none; fill:#bababa" d="M 236.8 101.6L 237.6 102.4L 236.8 101.6z"/>
<path style="stroke:none; fill:#959090" d="M 238.4 102.4L 239.2 103.2L 238.4 102.4z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 240.8 104L 241.6 104.8L 240.8 104z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 242.4 104.8L 243.2 105.6L 242.4 104.8z"/>
<path style="stroke:none; fill:#959090" d="M 244 105.6L 244.8 106.4L 244 105.6z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 246.4 107.2L 247.2 108L 246.4 107.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 248 108L 248.8 108.8L 248 108z"/>
<path style="stroke:none; fill:#928181" d="M 249.6 108.8L 250.4 109.6L 249.6 108.8z"/>
<path style="stroke:none; fill:#bababa" d="M 252 110.4L 252.8 111.2L 252 110.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 253.6 111.2L 254.4 112L 253.6 111.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 256 112.8L 256.8 113.6L 256 112.8z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 257.6 113.6L 258.4 114.4L 257.6 113.6z"/>
<path style="stroke:none; fill:#959090" d="M 259.2 114.4L 260 115.2L 259.2 114.4z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 261.6 116L 262.4 116.8L 261.6 116z"/>
<path style="stroke:none; fill:#acacac" d="M 263.2 116.8L 264 117.6L 263.2 116.8z"/>
<path style="stroke:none; fill:#928181" d="M 264.8 117.6L 265.6 118.4L 264.8 117.6z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 267.2 119.2L 268 120L 267.2 119.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 268.8 120L 269.6 120.8L 268.8 120z"/>
<path style="stroke:none; fill:#8a7575" d="M 270.4 120.8L 271.2 121.6L 270.4 120.8z"/>
<path style="stroke:none; fill:#bababa" d="M 272.8 122.4L 273.6 123.2L 272.8 122.4z"/>
<path style="stroke:none; fill:#959090" d="M 274.4 123.2L 275.2 124L 274.4 123.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 276.8 124.8L 277.6 125.6L 276.8 124.8z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 278.4 125.6L 279.2 126.4L 278.4 125.6z"/>
<path style="stroke:none; fill:#959090" d="M 280 126.4L 280.8 127.2L 280 126.4z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 282.4 128L 283.2 128.8L 282.4 128z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 284 128.8L 284.8 129.6L 284 128.8z"/>
<path style="stroke:none; fill:#928181" d="M 285.6 129.6L 286.4 130.4L 285.6 129.6z"/>
<path style="stroke:none; fill:#bababa" d="M 288 131.2L 288.8 132L 288 131.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 289.6 132L 290.4 132.8L 289.6 132z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 292 133.6L 292.8 134.4L 292 133.6z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 293.6 134.4L 294.4 135.2L 293.6 134.4z"/>
<path style="stroke:none; fill:#959090" d="M 295.2 135.2L 296 136L 295.2 135.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 297.6 136.8L 298.4 137.6L 297.6 136.8z"/>
<path style="stroke:none; fill:#acacac" d="M 299.2 137.6L 300 138.4L 299.2 137.6z"/>
<path style="stroke:none; fill:#928181" d="M 300.8 138.4L 301.6 139.2L 300.8 138.4z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 303.2 140L 304 140.8L 303.2 140z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 304.8 140.8L 305.6 141.6L 304.8 140.8z"/>
<path style="stroke:none; fill:#8a7575" d="M 306.4 141.6L 307.2 142.4L 306.4 141.6z"/>
<path style="stroke:none; fill:#bababa" d="M 308.8 143.2L 309.6 144L 308.8 143.2z"/>
<path style="stroke:none; fill:#959090" d="M 310.4 144L 311.2 144.8L 310.4 144z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 312.8 145.6L 313.6 146.4L 312.8 145.6z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 314.4 146.4L 315.2 147.2L 314.4 146.4z"/>
<path style="stroke:none; fill:#959090" d="M 316 147.2L 316.8 148L 316 147.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 318.4 148.8L 319.2 149.6L 318.4 148.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 320 149.6L 320.8 150.4L 320 149.6z"/>
<path style="stroke:none; fill:#928181" d="M 321.6 150.4L 322.4 151.2L 321.6 150.4z"/>
<path style="stroke:none; fill:#bababa" d="M 324 152L 324.8 152.8L 324 152z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 325.6 152.8L 326.4 153.6L 325.6 152.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 328 154.4L 328.8 155.2L 328 154.4z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 329.6 155.2L 330.4 156L 329.6 155.2z"/>
<path style="stroke:none; fill:#959090" d="M 331.2 156L 332 156.8L 331.2 156z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 333.6 157.6L 334.4 158.4L 333.6 157.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 335.2 158.4L 336 159.2L 335.2 158.4z"/>
<path style="stroke:none; fill:#bababa" d="M 337.6 160L 338.4 160.8L 337.6 160z"/>
<path style="stroke:none; fill:#928181" d="M 340 161.6L 340.8 162.4L 340 161.6z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 340.8 162.4L 341.6 163.2L 340.8 162.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 341.6 163.2L 342.4 164L 341.6 163.2z"/>
<path style="stroke:none; fill:#bababa" d="M 347.2 168.8L 348 169.6L 347.2 168.8z"/>
<path style="stroke:none; fill:#959090" d="M 348 169.6L 348.8 170.4L 348 169.6z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 349.6 172L 350.4 172.8L 349.6 172z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 351.2 174.4L 352 175.2L 351.2 174.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 352 176L 352.8 176.8L 352 176M 353.6 179.2L 354.4 180L 353.6 179.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 354.4 180.8L 355.2 181.6L 354.4 180.8z"/>
<path style="stroke:none; fill:#8a7575" d="M 355.2 182.4L 356 183.2L 355.2 182.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 355.2 183.2L 356 184L 355.2 183.2z"/>
<path style="stroke:none; fill:#8a7575" d="M 356 184.8L 356.8 185.6L 356 184.8z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 356 185.6L 356.8 186.4L 356 185.6z"/>
<path style="stroke:none; fill:#959090" d="M 356.8 188L 357.6 188.8L 356.8 188z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 356.8 188.8L 357.6 189.6L 356.8 188.8z"/>
<path style="stroke:none; fill:#9d9b9b" d="M 357.6 192L 357.6 194.4L 358.4 194.4C 358.199 193.238 358.148 192.998 357.6 192z"/>
<path style="stroke:none; fill:#e2e2e2" d="M 357.6 194.4L 357.6 196.8L 358.4 196.8C 358.199 195.638 358.148 195.398 357.6 194.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 357.866 202.134C 357.822 202.178 357.778 203.022 358.134 202.666C 358.178 202.622 358.222 201.778 357.866 202.134z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 357.866 203.734C 357.822 203.778 357.778 204.622 358.134 204.266C 358.178 204.222 358.222 203.378 357.866 203.734z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 356.8 208L 357.6 208.8L 356.8 208z"/>
<path style="stroke:none; fill:#9d9b9b" d="M 356.8 208.8L 357.6 209.6L 356.8 208.8z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 356 211.2L 356.8 212L 356 211.2z"/>
<path style="stroke:none; fill:#928181" d="M 356 212L 356.8 212.8L 356 212M 355.2 214.4L 356 215.2L 355.2 214.4z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 354.4 216L 355.2 216.8L 354.4 216M 351.2 222.4L 352 223.2L 351.2 222.4z"/>
<path style="stroke:none; fill:#928181" d="M 350.4 224L 351.2 224.8L 350.4 224z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 349.6 224.8L 350.4 225.6L 349.6 224.8z"/>
<path style="stroke:none; fill:#acacac" d="M 348 227.2L 348.8 228L 348 227.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 347.2 228L 348 228.8L 347.2 228M 340.8 234.4L 341.6 235.2L 340.8 234.4z"/>
<path style="stroke:none; fill:#acacac" d="M 340 235.2L 340.8 236L 340 235.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 337.6 236.8L 338.4 237.6L 337.6 236.8z"/>
<path style="stroke:none; fill:#959090" d="M 336.8 237.6L 337.6 238.4L 336.8 237.6z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 335.2 238.4L 336 239.2L 335.2 238.4z"/>
<path style="stroke:none; fill:#8a7575" d="M 334.4 239.2L 335.2 240L 334.4 239.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 332.8 240L 333.6 240.8L 332.8 240z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 330.4 241.6L 331.2 242.4L 330.4 241.6z"/>
<path style="stroke:none; fill:#928181" d="M 328 243.2L 328.8 244L 328 243.2z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 326.4 244L 327.2 244.8L 326.4 244z"/>
<path style="stroke:none; fill:#acacac" d="M 324 245.6L 324.8 246.4L 324 245.6z"/>
<path style="stroke:none; fill:#959090" d="M 321.6 247.2L 322.4 248L 321.6 247.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 320 248L 320.8 248.8L 320 248z"/>
<path style="stroke:none; fill:#8a7575" d="M 319.2 248.8L 320 249.6L 319.2 248.8z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 317.6 249.6L 318.4 250.4L 317.6 249.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 315.2 251.2L 316 252L 315.2 251.2z"/>
<path style="stroke:none; fill:#959090" d="M 312.8 252.8L 313.6 253.6L 312.8 252.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 311.2 253.6L 312 254.4L 311.2 253.6z"/>
<path style="stroke:none; fill:#acacac" d="M 308.8 255.2L 309.6 256L 308.8 255.2z"/>
<path style="stroke:none; fill:#959090" d="M 306.4 256.8L 307.2 257.6L 306.4 256.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 304.8 257.6L 305.6 258.4L 304.8 257.6z"/>
<path style="stroke:none; fill:#8a7575" d="M 304 258.4L 304.8 259.2L 304 258.4z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 302.4 259.2L 303.2 260L 302.4 259.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 300 260.8L 300.8 261.6L 300 260.8z"/>
<path style="stroke:none; fill:#959090" d="M 297.6 262.4L 298.4 263.2L 297.6 262.4z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 296 263.2L 296.8 264L 296 263.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 293.6 264.8L 294.4 265.6L 293.6 264.8z"/>
<path style="stroke:none; fill:#959090" d="M 291.2 266.4L 292 267.2L 291.2 266.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 289.6 267.2L 290.4 268L 289.6 267.2z"/>
<path style="stroke:none; fill:#8a7575" d="M 288.8 268L 289.6 268.8L 288.8 268z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 287.2 268.8L 288 269.6L 287.2 268.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 284.8 270.4L 285.6 271.2L 284.8 270.4z"/>
<path style="stroke:none; fill:#959090" d="M 282.4 272L 283.2 272.8L 282.4 272z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 280.8 272.8L 281.6 273.6L 280.8 272.8z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 278.4 274.4L 279.2 275.2L 278.4 274.4z"/>
<path style="stroke:none; fill:#959090" d="M 276 276L 276.8 276.8L 276 276z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 274.4 276.8L 275.2 277.6L 274.4 276.8z"/>
<path style="stroke:none; fill:#8a7575" d="M 273.6 277.6L 274.4 278.4L 273.6 277.6z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 272 278.4L 272.8 279.2L 272 278.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 269.6 280L 270.4 280.8L 269.6 280z"/>
<path style="stroke:none; fill:#959090" d="M 267.2 281.6L 268 282.4L 267.2 281.6z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 265.6 282.4L 266.4 283.2L 265.6 282.4z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 263.2 284L 264 284.8L 263.2 284z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 260.8 285.6L 261.6 286.4L 260.8 285.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 259.2 286.4L 260 287.2L 259.2 286.4z"/>
<path style="stroke:none; fill:#8a7575" d="M 258.4 287.2L 259.2 288L 258.4 287.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 256.8 288L 257.6 288.8L 256.8 288z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 254.4 289.6L 255.2 290.4L 254.4 289.6z"/>
<path style="stroke:none; fill:#959090" d="M 252 291.2L 252.8 292L 252 291.2z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 250.4 292L 251.2 292.8L 250.4 292z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 248 293.6L 248.8 294.4L 248 293.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 245.6 295.2L 246.4 296L 245.6 295.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 244 296L 244.8 296.8L 244 296z"/>
<path style="stroke:none; fill:#928181" d="M 243.2 296.8L 244 297.6L 243.2 296.8z"/>
<path style="stroke:none; fill:#bababa" d="M 241.6 297.6L 242.4 298.4L 241.6 297.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 239.2 299.2L 240 300L 239.2 299.2z"/>
<path style="stroke:none; fill:#959090" d="M 236.8 300.8L 237.6 301.6L 236.8 300.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 235.2 301.6L 236 302.4L 235.2 301.6z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 232.8 303.2L 233.6 304L 232.8 303.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 230.4 304.8L 231.2 305.6L 230.4 304.8z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 228.8 305.6L 229.6 306.4L 228.8 305.6z"/>
<path style="stroke:none; fill:#928181" d="M 228 306.4L 228.8 307.2L 228 306.4z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 226.4 307.2L 227.2 308L 226.4 307.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 224 308.8L 224.8 309.6L 224 308.8z"/>
<path style="stroke:none; fill:#959090" d="M 221.6 310.4L 222.4 311.2L 221.6 310.4z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 220 311.2L 220.8 312L 220 311.2z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 217.6 312.8L 218.4 313.6L 217.6 312.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 215.2 314.4L 216 315.2L 215.2 314.4z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 213.6 315.2L 214.4 316L 213.6 315.2z"/>
<path style="stroke:none; fill:#928181" d="M 212.8 316L 213.6 316.8L 212.8 316z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 211.2 316.8L 212 317.6L 211.2 316.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 208.8 318.4L 209.6 319.2L 208.8 318.4z"/>
<path style="stroke:none; fill:#959090" d="M 206.4 320L 207.2 320.8L 206.4 320z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 204.8 320.8L 205.6 321.6L 204.8 320.8z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 202.4 322.4L 203.2 323.2L 202.4 322.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 200 324L 200.8 324.8L 200 324z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 198.4 324.8L 199.2 325.6L 198.4 324.8z"/>
<path style="stroke:none; fill:#928181" d="M 197.6 325.6L 198.4 326.4L 197.6 325.6z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 196 326.4L 196.8 327.2L 196 326.4z"/>
<path style="stroke:none; fill:#acacac" d="M 193.6 328L 194.4 328.8L 193.6 328z"/>
<path style="stroke:none; fill:#959090" d="M 191.2 329.6L 192 330.4L 191.2 329.6z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 189.6 330.4L 190.4 331.2L 189.6 330.4z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 187.2 332L 188 332.8L 187.2 332z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 184.8 333.6L 185.6 334.4L 184.8 333.6z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 183.2 334.4L 184 335.2L 183.2 334.4z"/>
<path style="stroke:none; fill:#928181" d="M 182.4 335.2L 183.2 336L 182.4 335.2z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 180.8 336L 181.6 336.8L 180.8 336z"/>
<path style="stroke:none; fill:#acacac" d="M 178.4 337.6L 179.2 338.4L 178.4 337.6z"/>
<path style="stroke:none; fill:#959090" d="M 176 339.2L 176.8 340L 176 339.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 174.4 340L 175.2 340.8L 174.4 340z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 172 341.6L 172.8 342.4L 172 341.6z"/>
<path style="stroke:none; fill:#e2e2e2" d="M 51.2 342.4L 51.2 344.8L 52 344.8C 51.799 343.638 51.7478 343.398 51.2 342.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 169.6 343.2L 170.4 344L 169.6 343.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 168 344L 168.8 344.8L 168 344z"/>
<path style="stroke:none; fill:#acacac" d="M 51.2 344.8L 51.2 347.2L 52 347.2C 51.799 346.038 51.7478 345.798 51.2 344.8z"/>
<path style="stroke:none; fill:#928181" d="M 167.2 344.8L 168 345.6L 167.2 344.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 165.6 345.6L 166.4 346.4L 165.6 345.6z"/>
<path style="stroke:none; fill:#acacac" d="M 163.2 347.2L 164 348L 163.2 347.2z"/>
<path style="stroke:none; fill:#959090" d="M 160.8 348.8L 161.6 349.6L 160.8 348.8z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 159.2 349.6L 160 350.4L 159.2 349.6z"/>
<path style="stroke:none; fill:#acacac" d="M 52 350.4L 52.8 351.2L 52 350.4z"/>
<path style="stroke:none; fill:#8a7575" d="M 158.4 350.4L 159.2 351.2L 158.4 350.4z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 156.8 351.2L 157.6 352L 156.8 351.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 154.4 352.8L 155.2 353.6L 154.4 352.8z"/>
<path style="stroke:none; fill:#9d9b9b" d="M 52.8 353.6L 53.6 354.4L 52.8 353.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 152.8 353.6L 153.6 354.4L 152.8 353.6z"/>
<path style="stroke:none; fill:#928181" d="M 152 354.4L 152.8 355.2L 152 354.4z"/>
<path style="stroke:none; fill:#bababa" d="M 150.4 355.2L 151.2 356L 150.4 355.2z"/>
<path style="stroke:none; fill:#959090" d="M 53.6 356L 54.4 356.8L 53.6 356z"/>
<path style="stroke:none; fill:#acacac" d="M 148 356.8L 148.8 357.6L 148 356.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 54.4 357.6L 55.2 358.4L 54.4 357.6z"/>
<path style="stroke:none; fill:#959090" d="M 145.6 358.4L 146.4 359.2L 145.6 358.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 55.2 359.2L 56 360L 55.2 359.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 144 359.2L 144.8 360L 144 359.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 56 360.8L 56.8 361.6L 56 360.8z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 141.6 360.8L 142.4 361.6L 141.6 360.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 56.8 362.4L 57.6 363.2L 56.8 362.4z"/>
<path style="stroke:none; fill:#9d9b9b" d="M 139.2 362.4L 140 363.2L 139.2 362.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 137.6 363.2L 138.4 364L 137.6 363.2z"/>
<path style="stroke:none; fill:#928181" d="M 57.6 364L 58.4 364.8L 57.6 364M 136.8 364L 137.6 364.8L 136.8 364z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 135.2 364.8L 136 365.6L 135.2 364.8z"/>
<path style="stroke:none; fill:#acacac" d="M 132.8 366.4L 133.6 367.2L 132.8 366.4z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 60 367.2L 60.8 368L 60 367.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 60.8 368L 61.6 368.8L 60.8 368z"/>
<path style="stroke:none; fill:#959090" d="M 130.4 368L 131.2 368.8L 130.4 368z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 128.8 368.8L 129.6 369.6L 128.8 368.8z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 126.4 370.4L 127.2 371.2L 126.4 370.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 124 372L 124.8 372.8L 124 372z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 122.4 372.8L 123.2 373.6L 122.4 372.8M 66.4 373.6L 67.2 374.4L 66.4 373.6z"/>
<path style="stroke:none; fill:#8a7575" d="M 121.6 373.6L 122.4 374.4L 121.6 373.6z"/>
<path style="stroke:none; fill:#acacac" d="M 67.2 374.4L 68 375.2L 67.2 374.4z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 120 374.4L 120.8 375.2L 120 374.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 69.6 376L 70.4 376.8L 69.6 376z"/>
<path style="stroke:none; fill:#acacac" d="M 117.6 376L 118.4 376.8L 117.6 376z"/>
<path style="stroke:none; fill:#928181" d="M 70.4 376.8L 71.2 377.6L 70.4 376.8z"/>
<path style="stroke:none; fill:#b6b6b6" d="M 72 377.6L 72.8 378.4L 72 377.6z"/>
<path style="stroke:none; fill:#928181" d="M 115.2 377.6L 116 378.4L 115.2 377.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 73.6 378.4L 74.4 379.2L 73.6 378.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 113.6 378.4L 114.4 379.2L 113.6 378.4z"/>
<path style="stroke:none; fill:#acacac" d="M 112 379.2L 112.8 380L 112 379.2z"/>
<path style="stroke:none; fill:#bababa" d="M 76.8 380L 77.6 380.8L 76.8 380z"/>
<path style="stroke:none; fill:#959090" d="M 110.4 380L 111.2 380.8L 110.4 380M 78.4 380.8L 79.2 381.6L 78.4 380.8z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 108 380.8L 108.8 381.6L 108 380.8z"/>
<path style="stroke:none; fill:#9d9b9b" d="M 80.8 381.6L 81.6 382.4L 80.8 381.6z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 105.6 381.6L 106.4 382.4L 105.6 381.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 84 382.4L 84.8 383.2L 84 382.4z"/>
<path style="stroke:none; fill:#c1c1c1" d="M 102.4 382.4L 103.2 383.2L 102.4 382.4z"/>
<path style="stroke:none; fill:#959090" d="M 103.2 382.4L 104 383.2L 103.2 382.4z"/>
<path style="stroke:none; fill:#acacac" d="M 88.5336 383.466C 88.1776 383.822 89.0224 383.778 89.0664 383.734C 89.4224 383.378 88.5776 383.422 88.5336 383.466z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 90.1336 383.466C 89.7776 383.822 90.6224 383.778 90.6664 383.734C 91.0224 383.378 90.1776 383.422 90.1336 383.466z"/>
<path style="stroke:none; fill:#ebebeb" d="M 91.2 383.2L 91.2 384L 96 384C 94.3584 383.301 93.0024 383.238 91.2 383.2z"/>
<path style="stroke:none; fill:#c8c8c8" d="M 96 383.2L 96 384L 98.4 384C 97.4016 383.452 97.1616 383.401 96 383.2z"/>
<path style="stroke:none; fill:#8a7575" d="M 98.9336 383.466C 98.5776 383.822 99.4224 383.778 99.4664 383.734C 99.8224 383.378 98.9776 383.422 98.9336 383.466z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

720
svg/playlist_active.svg Normal file
View File

@ -0,0 +1,720 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#c59393" d="M 0 0L 0.8 0.800018L 0 0z"/>
<path style="stroke:none; fill:#ffffff" d="M 0 405.6L 4.8 405.6L 4.8 7.20001C 137.564 7.20001 270.424 3.20001 403.2 3.20001C 403.2 136.235 406.4 269.352 406.4 402.4C 270.921 402.4 135.451 406.4 0 406.4L 0 409.6L 274.4 409.6C 319.002 409.6 365.292 406.103 409.6 409.6L 409.6 0L 101.6 0L 25.6 0C 20.8472 0 3.88254 -2.58124 0.822224 1.28271C -0.617374 3.10034 0.000138549 6.64529 0 8.80002L 0 28.8L 0 106.4L 0 405.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 376 3.20001L 376 4L 382.4 4C 380.31 3.12183 378.269 3.20578 376 3.20001z"/>
<path style="stroke:none; fill:#dddddd" d="M 382.4 3.20001L 382.4 4L 388.8 4C 386.71 3.12183 384.668 3.20578 382.4 3.20001z"/>
<path style="stroke:none; fill:#d2abab" d="M 388.8 3.20001L 388.8 4L 394.4 4C 392.534 3.21237 390.834 3.215 388.8 3.20001z"/>
<path style="stroke:none; fill:#b07070" d="M 394.4 3.20001L 394.4 4L 399.2 4C 397.558 3.3006 396.202 3.23776 394.4 3.20001z"/>
<path style="stroke:none; fill:#9b3b3b" d="M 4.8 7.20001L 4.8 406.4C 24.9133 403.858 46.1221 405.6 66.4 405.6L 161.6 404.8C 243.17 404.794 324.772 402.4 406.4 402.4C 404.719 363.264 406.549 323.991 405.588 284.8C 403.291 191.064 403.2 96.9832 403.2 3.20001C 343.582 5.76022 283.71 4.09274 224 4.8031C 150.982 5.67175 77.8401 7.20001 4.8 7.20001z"/>
<path style="stroke:none; fill:#eadfdf" d="M 286.4 4L 286.4 4.80002L 293.6 4.80002C 291.288 3.82965 288.901 4.00137 286.4 4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 293.6 4L 293.6 4.80002L 300 4.80002C 297.91 3.92184 295.869 4.00577 293.6 4z"/>
<path style="stroke:none; fill:#c59393" d="M 300 4L 300 4.80002L 307.2 4.80002C 304.888 3.82965 302.501 4.00137 300 4z"/>
<path style="stroke:none; fill:#b07070" d="M 307.2 4L 307.2 4.80002L 309.6 4.80002C 308.602 4.25214 308.362 4.20099 307.2 4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 193.6 4.80002L 193.6 5.60001L 204 5.60001C 200.833 4.27109 197.01 4.80002 193.6 4.80002z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 204 4.80002L 204 5.60001L 210.4 5.60001C 208.31 4.72183 206.269 4.80576 204 4.80002z"/>
<path style="stroke:none; fill:#c59393" d="M 210.4 4.80002L 210.4 5.60001L 215.2 5.60001C 213.558 4.9006 212.202 4.83777 210.4 4.80002z"/>
<path style="stroke:none; fill:#b07070" d="M 215.2 4.80002L 215.2 5.60001L 219.2 5.60001C 217.785 4.97687 216.771 4.87009 215.2 4.80002z"/>
<path style="stroke:none; fill:#eadfdf" d="M 108 5.60001L 108 6.39999L 114.4 6.39999C 112.31 5.52182 110.269 5.60577 108 5.60001z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 114.4 5.60001L 114.4 6.39999L 121.6 6.39999C 119.288 5.42966 116.901 5.60138 114.4 5.60001z"/>
<path style="stroke:none; fill:#b07070" d="M 121.6 5.60001L 121.6 6.39999L 126.4 6.39999C 124.758 5.70059 123.402 5.63779 121.6 5.60001z"/>
<path style="stroke:none; fill:#eadfdf" d="M 16 6.39999L 16 7.20001L 21.6 7.20001C 19.7348 6.41238 18.0346 6.41501 16 6.39999z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 21.6 6.39999L 21.6 7.20001L 26.4 7.20001C 24.7582 6.50058 23.4023 6.43777 21.6 6.39999z"/>
<path style="stroke:none; fill:#d2abab" d="M 26.4 6.39999L 26.4 7.20001L 32 7.20001C 30.1347 6.41238 28.4347 6.41501 26.4 6.39999z"/>
<path style="stroke:none; fill:#b07070" d="M 32 6.39999L 32 7.20001L 36 7.20001C 34.5848 6.57687 33.5713 6.47009 32 6.39999z"/>
<path style="stroke:none; fill:#a96060" d="M 36 6.39999L 36 7.20001L 38.4 7.20001C 37.4014 6.65219 37.1612 6.60095 36 6.39999z"/>
<path style="stroke:none; fill:#eadfdf" d="M 403.2 19.2L 403.2 28L 404 28C 404 25.0399 404.352 21.9459 403.2 19.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 403.2 28L 403.2 35.2L 404 35.2C 403.998 32.6994 404.17 30.3118 403.2 28z"/>
<path style="stroke:none; fill:#a17979" d="M 274.4 34.4L 275.2 35.2L 274.4 34.4z"/>
<path style="stroke:none; fill:#ffffff" d="M 260.8 244C 255.234 243.557 250.158 240.857 244.664 240.279C 231.538 238.898 214.992 242.826 203.61 249.398C 170.339 268.615 154.068 321.738 188.412 348.552C 221.518 374.401 275.769 359.398 291.241 319.864C 299.727 298.179 296.8 273.309 296.8 250.4L 296.8 128C 303.211 129.005 308.28 133.477 313.937 136.35C 333.149 146.11 362.426 169.967 360.8 194.4C 364.006 198.626 363.2 206.085 363.2 211.2C 363.2 224.723 360.046 237.93 360 251.2C 368.418 242.846 374.192 229.307 378.506 218.399C 400.581 162.595 377.592 106.8 332.188 70.7593C 319.293 60.5228 305.928 48.3939 291.769 40.0673C 286.616 37.037 280.283 32.811 274.243 35.5358C 254.749 44.3296 260.8 71.3197 260.8 88.8L 260.8 244z"/>
<path style="stroke:none; fill:#dddddd" d="M 281.6 34.4L 281.6 36L 283.2 36C 282.764 34.6919 282.908 34.836 281.6 34.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 274.4 35.2L 275.2 36L 274.4 35.2z"/>
<path style="stroke:none; fill:#915e5e" d="M 283.2 35.2L 283.2 36L 286.4 36C 285.195 35.4536 284.548 35.3393 283.2 35.2z"/>
<path style="stroke:none; fill:#d2abab" d="M 403.2 35.2L 403.2 40.8L 404 40.8C 403.985 38.7653 403.988 37.0652 403.2 35.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 271.2 36L 272 36.8L 271.2 36z"/>
<path style="stroke:none; fill:#dddddd" d="M 285.866 36.5334C 285.822 36.5778 285.778 37.4222 286.134 37.0667C 286.178 37.0223 286.222 36.1777 285.866 36.5334z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 269.6 36.8L 269.6 37.6L 272 37.6C 271.002 37.0522 270.762 37.001 269.6 36.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 286.4 36.8L 286.4 37.6L 288.8 38.4C 288.016 36.9734 288.074 37.1245 286.4 36.8M 268.8 37.6L 269.6 38.4L 268.8 37.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 288.8 37.6L 289.6 38.4L 288.8 37.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 267.2 38.4C 266.411 39.5828 266.4 39.3626 266.4 40.8C 267.431 39.6458 267.521 39.813 267.2 38.4M 288.8 38.4L 288.8 39.2L 292 40L 292 39.2L 288.8 38.4z"/>
<path style="stroke:none; fill:#a17979" d="M 292 39.2L 292.8 40L 292 39.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 265.6 40L 266.4 40.8L 265.6 40z"/>
<path style="stroke:none; fill:#9f9191" d="M 292.8 40L 293.6 40.8L 292.8 40z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 264 43.2C 265.166 42.3172 265.518 41.9654 266.4 40.8C 264.701 41.5194 264.719 41.5011 264 43.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 293.334 41.0667C 292.978 41.4222 293.822 41.3778 293.866 41.3334C 294.222 40.9778 293.378 41.0222 293.334 41.0667z"/>
<path style="stroke:none; fill:#c59393" d="M 403.2 40.8L 403.2 47.2L 404 47.2C 403.994 44.9316 404.078 42.8902 403.2 40.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 294.4 41.6L 295.2 42.4L 294.4 41.6M 296 42.4L 296.8 43.2L 296 42.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 296.534 43.4666C 296.178 43.8222 297.022 43.7778 297.066 43.7334C 297.422 43.3778 296.578 43.4222 296.534 43.4666z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 297.6 44L 298.4 44.8L 297.6 44z"/>
<path style="stroke:none; fill:#a17979" d="M 261.866 45.3334C 261.822 45.3778 261.778 46.2222 262.134 45.8666C 262.178 45.8222 262.222 44.9777 261.866 45.3334z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 262.4 44.8L 263.2 45.6L 262.4 44.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 299.2 44.8L 300 45.6L 299.2 44.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 299.734 45.8666C 299.378 46.2222 300.222 46.1778 300.266 46.1334C 300.622 45.7778 299.778 45.8222 299.734 45.8666z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 261.866 46.9334C 261.822 46.9778 261.778 47.8222 262.134 47.4666C 262.178 47.4222 262.222 46.5778 261.866 46.9334z"/>
<path style="stroke:none; fill:#ad9292" d="M 300.8 46.4L 301.6 47.2L 300.8 46.4z"/>
<path style="stroke:none; fill:#a96060" d="M 403.2 47.2L 403.2 50.4L 404 50.4C 403.861 49.0519 403.746 48.4048 403.2 47.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 260.8 48L 260.8 56L 261.6 56C 261.608 53.2358 261.758 50.6942 262.4 48L 260.8 48z"/>
<path style="stroke:none; fill:#ad9292" d="M 302.934 48.2666C 302.578 48.6222 303.422 48.5778 303.466 48.5334C 303.822 48.1778 302.978 48.2223 302.934 48.2666z"/>
<path style="stroke:none; fill:#9f9191" d="M 304 48.8L 304.8 49.6L 304 48.8z"/>
<path style="stroke:none; fill:#eadfdf" d="M 305.066 50.1334C 305.022 50.1778 304.978 51.0222 305.334 50.6667C 305.378 50.6223 305.422 49.7777 305.066 50.1334z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 305.6 50.4L 306.4 51.2L 305.6 50.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 306.4 51.2L 307.2 52L 306.4 51.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 260.266 52.5334C 260.222 52.5779 260.178 53.4222 260.534 53.0667C 260.578 53.0222 260.622 52.1778 260.266 52.5334z"/>
<path style="stroke:none; fill:#eadfdf" d="M 306.4 52L 306.4 52.8L 308.8 53.6C 308.016 52.1734 308.074 52.3246 306.4 52z"/>
<path style="stroke:none; fill:#ad9292" d="M 308.8 52.8L 309.6 53.6L 308.8 52.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 260 53.6L 260 56L 260.8 56C 260.599 54.8387 260.548 54.5987 260 53.6z"/>
<path style="stroke:none; fill:#927777" d="M 310.4 53.6L 311.2 54.4L 310.4 53.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 310.934 54.6667C 310.578 55.0222 311.422 54.9778 311.466 54.9334C 311.822 54.5778 310.978 54.6223 310.934 54.6667z"/>
<path style="stroke:none; fill:#b07070" d="M 259.2 55.2L 259.2 118.4L 260 118.4L 260 75.2C 260 69.2161 261.522 60.735 259.2 55.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 312 55.2L 312.8 56L 312 55.2z"/>
<path style="stroke:none; fill:#eadfdf" d="M 260 56L 260 60L 260.8 60C 260.73 58.4289 260.623 57.4152 260 56z"/>
<path style="stroke:none; fill:#9f9191" d="M 313.6 56L 314.4 56.8L 313.6 56z"/>
<path style="stroke:none; fill:#dddddd" d="M 314.134 57.0667C 313.778 57.4222 314.622 57.3778 314.666 57.3334C 315.022 56.9778 314.178 57.0223 314.134 57.0667z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 315.2 57.6L 316 58.4L 315.2 57.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 316.8 58.4L 316.8 60L 318.4 60C 317.964 58.6919 318.108 58.836 316.8 58.4z"/>
<path style="stroke:none; fill:#a17979" d="M 318.4 59.2L 319.2 60L 318.4 59.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 318.4 60L 319.2 60.8L 318.4 60z"/>
<path style="stroke:none; fill:#dddddd" d="M 320 60.8L 320 62.4L 321.6 62.4C 321.164 61.0919 321.308 61.236 320 60.8z"/>
<path style="stroke:none; fill:#a17979" d="M 321.6 61.6L 322.4 62.4L 321.6 61.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 323.2 63.2L 323.2 64.8L 324.8 64.8C 324.364 63.4919 324.508 63.636 323.2 63.2M 326.4 65.6L 326.4 67.2L 328 67.2C 327.564 65.8919 327.708 66.036 326.4 65.6z"/>
<path style="stroke:none; fill:#b07070" d="M 66.1334 66.6667C 65.7778 67.0222 66.6222 66.9778 66.6666 66.9334C 67.0222 66.5778 66.1778 66.6223 66.1334 66.6667z"/>
<path style="stroke:none; fill:#c59393" d="M 67.7334 66.6667C 67.3778 67.0222 68.2222 66.9778 68.2666 66.9334C 68.6222 66.5778 67.7778 66.6223 67.7334 66.6667z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 68.8 66.4L 68.8 67.2L 83.2 67.2C 79.0221 65.4469 73.3058 66.4 68.8 66.4z"/>
<path style="stroke:none; fill:#c59393" d="M 83.2 66.4L 83.2 67.2L 88.8 67.2C 86.9344 66.4124 85.2344 66.415 83.2 66.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 88.8 66.4L 88.8 67.2L 103.2 67.2C 99.0224 65.4469 93.3056 66.4 88.8 66.4z"/>
<path style="stroke:none; fill:#c59393" d="M 103.2 66.4L 103.2 67.2L 105.6 67.2C 104.602 66.6522 104.362 66.601 103.2 66.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 260 66.4L 260 244L 260.8 244L 260.8 119.2L 260.8 83.2C 260.8 78.0638 261.998 71.1609 260 66.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 64.5334 67.4666C 64.1778 67.8222 65.0222 67.7778 65.0666 67.7334C 65.4223 67.3777 64.5778 67.4222 64.5334 67.4666z"/>
<path style="stroke:none; fill:#ffffff" d="M 60.8 68C 54.7662 73.475 48.8399 75.8791 45.4278 84C 38.8868 99.568 43.2869 120.646 60.4636 127.165C 69.3678 130.544 79.4602 129.6 88.8 129.6C 98.9168 129.6 108.883 130.009 117.6 123.925C 140.453 107.974 129.631 68.235 101.6 67.2148C 88.388 66.734 73.6172 69.5976 60.8 68z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 105.6 67.2L 105.6 68L 108 68C 107.002 67.4522 106.762 67.401 105.6 67.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 62.4 68L 62.4 68.8L 65.6 68.8C 64.3951 68.2536 63.7482 68.1393 62.4 68M 106.4 68L 106.4 68.8L 111.2 68.8C 109.558 68.1006 108.202 68.0378 106.4 68z"/>
<path style="stroke:none; fill:#927777" d="M 111.2 68L 112 68.8L 111.2 68z"/>
<path style="stroke:none; fill:#a17979" d="M 329.6 68L 330.4 68.8L 329.6 68z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 60 68.8L 60.8 69.6L 60 68.8M 111.2 68.8L 112 69.6L 111.2 68.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 329.6 68.8L 330.4 69.6L 329.6 68.8z"/>
<path style="stroke:none; fill:#eadfdf" d="M 331.2 69.6L 331.2 71.2L 332.8 71.2C 332.364 69.8919 332.508 70.0361 331.2 69.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 56.5334 70.6667C 56.1778 71.0221 57.0222 70.9778 57.0666 70.9334C 57.4222 70.5778 56.5778 70.6223 56.5334 70.6667M 114.934 70.6667C 114.578 71.0223 115.422 70.9777 115.466 70.9334C 115.822 70.5779 114.978 70.6222 114.934 70.6667z"/>
<path style="stroke:none; fill:#a17979" d="M 116 70.4L 116.8 71.2L 116 70.4z"/>
<path style="stroke:none; fill:#b07070" d="M 332.8 70.4L 333.6 71.2L 332.8 70.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 55.2 71.2L 56 72L 55.2 71.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 53.6 72L 52.8 73.6L 54.4 73.6C 54.4 72.1174 54.6398 72.5198 53.6 72M 117.6 72L 117.6 73.6L 119.2 73.6C 118.764 72.2919 118.908 72.436 117.6 72z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 334.4 72L 334.4 73.6L 336 73.6C 335.564 72.2919 335.708 72.436 334.4 72z"/>
<path style="stroke:none; fill:#a17979" d="M 119.2 72.8L 120 73.6L 119.2 72.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 336 73.6L 336.8 74.4L 336 73.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 50.4 75.2L 51.2 76L 50.4 75.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 120.8 75.2L 121.6 76L 120.8 75.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 337.6 75.2L 338.4 76L 337.6 75.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 339.2 76L 340 76.8L 339.2 76z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 48.8 76.8L 49.6 77.6L 48.8 76.8M 339.734 77.0667C 339.378 77.4222 340.222 77.3778 340.266 77.3334C 340.622 76.9778 339.778 77.0222 339.734 77.0667z"/>
<path style="stroke:none; fill:#ad9292" d="M 123.2 77.6L 124 78.4L 123.2 77.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 340.8 77.6L 341.6 78.4L 340.8 77.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 124 78.4L 124.8 79.2L 124 78.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 47.2 79.2C 46.4114 80.3832 46.4 80.1624 46.4 81.6C 47.4314 80.4456 47.5208 80.6128 47.2 79.2z"/>
<path style="stroke:none; fill:#a17979" d="M 124.8 79.2L 125.6 80L 124.8 79.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 343.2 80L 344 80.8L 343.2 80z"/>
<path style="stroke:none; fill:#927777" d="M 125.6 80.8L 126.4 81.6L 125.6 80.8z"/>
<path style="stroke:none; fill:#a17979" d="M 344.8 80.8L 345.6 81.6L 344.8 80.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 45.6 81.6L 46.4 82.4L 45.6 81.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 125.6 81.6L 126.4 82.4L 125.6 81.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 345.6 81.6L 346.4 82.4L 345.6 81.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 126.4 82.4C 126.725 84.0736 126.574 84.016 128 84.8C 127.447 83.6888 127.213 83.3112 126.4 82.4M 345.6 82.4L 346.4 83.2L 345.6 82.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 45.0666 83.7336C 45.0222 83.7776 44.9778 84.6224 45.3334 84.2664C 45.3778 84.2224 45.4222 83.3776 45.0666 83.7336z"/>
<path style="stroke:none; fill:#ad9292" d="M 347.2 83.2L 348 84L 347.2 83.2M 44 84L 44.8 84.8L 44 84z"/>
<path style="stroke:none; fill:#a17979" d="M 348 84L 348.8 84.8L 348 84z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 44 84.8L 44 87.2L 44.8 87.2C 44.599 86.0384 44.5478 85.7984 44 84.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 127.2 84.8L 127.2 87.2L 128 87.2C 127.799 86.0384 127.748 85.7984 127.2 84.8z"/>
<path style="stroke:none; fill:#a17979" d="M 349.6 85.6L 350.4 86.4L 349.6 85.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 43.2 86.4L 44 87.2L 43.2 86.4M 128 86.4L 128.8 87.2L 128 86.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 43.2 87.2L 43.2 90.4L 44 90.4C 43.8607 89.052 43.7465 88.4048 43.2 87.2z"/>
<path style="stroke:none; fill:#915e5e" d="M 128.8 87.2L 128.8 89.6L 129.6 89.6C 129.399 88.4392 129.348 88.1984 128.8 87.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 352 88.8L 352.8 89.6L 352 88.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 42.6666 90.1336C 42.6222 90.1776 42.5778 91.0224 42.9334 90.6664C 42.9778 90.6224 43.0222 89.7776 42.6666 90.1336M 129.066 90.1336C 129.022 90.1776 128.978 91.0224 129.334 90.6664C 129.378 90.6224 129.422 89.7776 129.066 90.1336z"/>
<path style="stroke:none; fill:#a17979" d="M 41.6 90.4L 41.6 94.4L 42.4 94.4C 42.3299 92.8288 42.2231 91.8152 41.6 90.4M 129.6 90.4L 130.4 91.2L 129.6 90.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 129.6 91.2L 129.6 93.6L 130.4 93.6C 130.199 92.4384 130.148 92.1984 129.6 91.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 354.4 91.2L 355.2 92L 354.4 91.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 355.466 92.5336C 355.422 92.5776 355.378 93.4224 355.734 93.0664C 355.778 93.0224 355.822 92.1776 355.466 92.5336z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 356 92.8L 356.8 93.6L 356 92.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 129.6 93.6L 129.6 103.2L 130.4 103.2C 130.4 100.014 130.842 96.5584 129.6 93.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 41.6 94.4L 41.6 101.6L 42.4 101.6C 42.3986 99.0992 42.5703 96.712 41.6 94.4z"/>
<path style="stroke:none; fill:#915e5e" d="M 130.4 95.2L 130.4 99.2L 131.2 99.2C 131.13 97.6288 131.023 96.6152 130.4 95.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 357.6 95.2L 358.4 96L 357.6 95.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 360 97.6L 360.8 98.4L 360 97.6z"/>
<path style="stroke:none; fill:#a17979" d="M 360.8 98.4L 361.6 99.2L 360.8 98.4z"/>
<path style="stroke:none; fill:#ad9292" d="M 361.6 99.2L 362.4 100L 361.6 99.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 361.6 100C 362.147 101.264 362.244 101.422 363.2 102.4C 362.653 101.136 362.556 100.978 361.6 100z"/>
<path style="stroke:none; fill:#a17979" d="M 41.8666 102.134C 41.8222 102.178 41.7778 103.022 42.1334 102.666C 42.1778 102.622 42.2222 101.778 41.8666 102.134z"/>
<path style="stroke:none; fill:#9f9191" d="M 363.2 101.6L 364 102.4L 363.2 101.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 363.2 102.4L 364 103.2L 363.2 102.4z"/>
<path style="stroke:none; fill:#927777" d="M 364 102.4L 364.8 103.2L 364 102.4z"/>
<path style="stroke:none; fill:#c59393" d="M 41.6 103.2L 41.6 105.6L 42.4 105.6C 42.199 104.438 42.1478 104.198 41.6 103.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 129.866 103.734C 129.822 103.778 129.778 104.622 130.134 104.266C 130.178 104.222 130.222 103.378 129.866 103.734z"/>
<path style="stroke:none; fill:#eadfdf" d="M 364.266 103.734C 364.222 103.778 364.178 104.622 364.534 104.266C 364.578 104.222 364.622 103.378 364.266 103.734z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 364.8 104L 365.6 104.8L 364.8 104z"/>
<path style="stroke:none; fill:#d2abab" d="M 129.6 104.8L 130.4 105.6L 129.6 104.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 42.6666 106.134C 42.6222 106.178 42.5778 107.022 42.9334 106.666C 42.9778 106.622 43.0222 105.778 42.6666 106.134z"/>
<path style="stroke:none; fill:#eadfdf" d="M 43.2 105.6C 43.3344 107.522 43.3575 108.368 44.8 109.6C 44.3595 108.14 43.9392 106.918 43.2 105.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 129.066 106.134C 129.022 106.178 128.978 107.022 129.334 106.666C 129.378 106.622 129.422 105.778 129.066 106.134z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 365.6 105.6L 366.4 106.4L 365.6 105.6M 366.666 106.934C 366.622 106.978 366.578 107.822 366.934 107.466C 366.978 107.422 367.022 106.578 366.666 106.934z"/>
<path style="stroke:none; fill:#a17979" d="M 367.2 107.2L 368 108L 367.2 107.2z"/>
<path style="stroke:none; fill:#eadfdf" d="M 367.466 108.534C 367.422 108.578 367.378 109.422 367.734 109.066C 367.778 109.022 367.822 108.178 367.466 108.534z"/>
<path style="stroke:none; fill:#9f9191" d="M 368 108.8L 368.8 109.6L 368 108.8M 43.2 109.6L 44 110.4L 43.2 109.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 44 109.6L 44 112L 44.8 112C 44.599 110.838 44.5478 110.598 44 109.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 127.2 109.6L 127.2 112L 128 112C 127.799 110.838 127.748 110.598 127.2 109.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 128 109.6L 128.8 110.4L 128 109.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 369.866 111.734C 369.822 111.778 369.778 112.622 370.134 112.266C 370.178 112.222 370.222 111.378 369.866 111.734z"/>
<path style="stroke:none; fill:#ad9292" d="M 45.0666 112.534C 45.0222 112.578 44.9778 113.422 45.3334 113.066C 45.3778 113.022 45.4222 112.178 45.0666 112.534z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 126.4 112L 126.4 113.6C 127.708 113.164 127.564 113.308 128 112L 126.4 112z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 370.4 112.8L 371.2 113.6L 370.4 112.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 45.6 114.4L 46.4 115.2L 45.6 114.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 125.6 114.4L 126.4 115.2L 125.6 114.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 371.466 114.934C 371.422 114.978 371.378 115.822 371.734 115.466C 371.778 115.422 371.822 114.578 371.466 114.934z"/>
<path style="stroke:none; fill:#927777" d="M 372.266 114.934C 372.222 114.978 372.178 115.822 372.534 115.466C 372.578 115.422 372.622 114.578 372.266 114.934z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 46.4 115.2C 46.9469 116.464 47.0439 116.622 48 117.6C 47.4531 116.336 47.3562 116.178 46.4 115.2M 125.066 115.734C 125.022 115.778 124.978 116.622 125.334 116.266C 125.378 116.222 125.422 115.378 125.066 115.734z"/>
<path style="stroke:none; fill:#dddddd" d="M 124.266 116.534C 124.222 116.578 124.178 117.422 124.534 117.066C 124.578 117.022 124.622 116.178 124.266 116.534z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 372 116L 372.8 116.8L 372 116z"/>
<path style="stroke:none; fill:#dddddd" d="M 372.8 116.8L 372.8 119.2L 373.6 119.2C 373.399 118.038 373.348 117.798 372.8 116.8z"/>
<path style="stroke:none; fill:#a17979" d="M 124 117.6L 124.8 118.4L 124 117.6z"/>
<path style="stroke:none; fill:#a96060" d="M 259.2 118.4L 259.2 124.8L 260 124.8C 259.994 122.531 260.078 120.49 259.2 118.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 373.6 118.4L 374.4 119.2L 373.6 118.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 122.4 119.2L 123.2 120L 122.4 119.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 49.6 120L 50.4 120.8L 49.6 120z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 121.6 120L 122.4 120.8L 121.6 120z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 120.8 120.8L 121.6 121.6L 120.8 120.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 374.4 120.8L 375.2 121.6L 374.4 120.8z"/>
<path style="stroke:none; fill:#ad9292" d="M 375.466 121.334C 375.422 121.378 375.378 122.222 375.734 121.866C 375.778 121.822 375.822 120.978 375.466 121.334M 51.2 121.6L 52 122.4L 51.2 121.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 119.2 121.6L 119.2 123.2C 120.508 122.764 120.364 122.908 120.8 121.6L 119.2 121.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 52 122.4L 52.8 123.2L 52 122.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 375.2 122.4L 376 125.6L 376.8 125.6C 376.391 124.038 376.214 123.634 375.2 122.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 53.6 123.2L 54.4 124L 53.6 123.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 118.4 123.2L 119.2 124L 118.4 123.2z"/>
<path style="stroke:none; fill:#a17979" d="M 53.6 124L 54.4 124.8L 53.6 124z"/>
<path style="stroke:none; fill:#dddddd" d="M 54.9334 124.266C 54.5778 124.622 55.4222 124.578 55.4666 124.534C 55.8222 124.178 54.9778 124.222 54.9334 124.266z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 116 124L 116 125.6C 117.308 125.164 117.164 125.308 117.6 124L 116 124z"/>
<path style="stroke:none; fill:#a17979" d="M 117.6 124L 118.4 124.8L 117.6 124z"/>
<path style="stroke:none; fill:#ad9292" d="M 55.2 124.8L 56 125.6L 55.2 124.8z"/>
<path style="stroke:none; fill:#b07070" d="M 259.2 124.8L 259.2 143.2L 260 143.2C 260 137.626 261.363 129.956 259.2 124.8z"/>
<path style="stroke:none; fill:#a17979" d="M 56.8 125.6L 57.6 126.4L 56.8 125.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 111.2 126.4L 111.2 127.2C 112.702 127.059 113.759 126.85 115.2 126.4C 113.723 126.026 112.745 126.159 111.2 126.4z"/>
<path style="stroke:none; fill:#a96060" d="M 377.866 126.134C 377.822 126.178 377.778 127.022 378.134 126.666C 378.178 126.622 378.222 125.778 377.866 126.134z"/>
<path style="stroke:none; fill:#ad9292" d="M 57.6 126.4L 58.4 127.2L 57.6 126.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 58.4 126.4L 58.4 127.2L 60.8 127.2C 59.8013 126.652 59.5614 126.601 58.4 126.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 60 127.2L 60.8 128L 60 127.2M 111.2 127.2L 112 128L 111.2 127.2M 377.6 127.2L 378.4 128L 377.6 127.2z"/>
<path style="stroke:none; fill:#b07070" d="M 60.8 128L 60.8 128.8L 63.2 128.8C 62.2013 128.252 61.9613 128.201 60.8 128z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 63.2 128L 63.2 128.8L 66.4 129.6L 66.4 128.8L 63.2 128z"/>
<path style="stroke:none; fill:#eadfdf" d="M 65.6 128L 65.6 128.8L 68.8 129.6L 68.8 128.8L 65.6 128z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 105.6 128L 105.6 129.6C 106.908 129.164 106.764 129.308 107.2 128L 105.6 128z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 107.734 128.266C 107.378 128.622 108.222 128.578 108.266 128.534C 108.622 128.178 107.778 128.222 107.734 128.266z"/>
<path style="stroke:none; fill:#b07070" d="M 108.8 128L 108.8 128.8L 111.2 128.8C 110.202 128.252 109.962 128.201 108.8 128z"/>
<path style="stroke:none; fill:#9f9191" d="M 297.6 128L 297.6 128.8L 300 129.6C 299.216 128.174 299.274 128.325 297.6 128z"/>
<path style="stroke:none; fill:#ad9292" d="M 378.4 128L 379.2 128.8L 378.4 128z"/>
<path style="stroke:none; fill:#927777" d="M 106.934 129.066C 106.578 129.422 107.422 129.378 107.466 129.334C 107.822 128.978 106.978 129.022 106.934 129.066z"/>
<path style="stroke:none; fill:#dddddd" d="M 300 128.8L 300 129.6L 302.4 129.6C 301.402 129.052 301.162 129.001 300 128.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 378.4 128.8L 378.4 131.2L 379.2 131.2C 378.999 130.038 378.948 129.798 378.4 128.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 301.6 129.6L 302.4 130.4L 301.6 129.6M 302.4 130.4L 302.4 131.2L 304.8 132C 304.016 130.574 304.074 130.725 302.4 130.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 379.2 130.4L 380 131.2L 379.2 130.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 304.8 131.2L 304.8 132L 307.2 132.8C 306.416 131.374 306.474 131.525 304.8 131.2z"/>
<path style="stroke:none; fill:#a17979" d="M 306.4 132.8L 307.2 133.6L 306.4 132.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 307.734 133.066C 307.378 133.422 308.222 133.378 308.266 133.334C 308.622 132.978 307.778 133.022 307.734 133.066z"/>
<path style="stroke:none; fill:#9f9191" d="M 380 132.8L 380.8 133.6L 380 132.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 380 133.6L 380.8 134.4L 380 133.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 310.4 134.4L 311.2 135.2L 310.4 134.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 380.8 134.4L 380.8 136.8L 381.6 136.8C 381.399 135.638 381.348 135.398 380.8 134.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 311.2 135.2L 311.2 136L 313.6 136C 312.602 135.452 312.362 135.401 311.2 135.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 312.8 136L 313.6 136.8L 312.8 136z"/>
<path style="stroke:none; fill:#eadfdf" d="M 404 136L 404 148.8L 404.8 148.8C 404.8 144.728 405.586 139.779 404 136z"/>
<path style="stroke:none; fill:#915e5e" d="M 314.134 137.066C 313.778 137.422 314.622 137.378 314.666 137.334C 315.022 136.978 314.178 137.022 314.134 137.066z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 315.2 136.8L 316 137.6L 315.2 136.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 381.6 136.8C 381.734 138.722 381.758 139.568 383.2 140.8C 382.759 139.34 382.339 138.118 381.6 136.8z"/>
<path style="stroke:none; fill:#a17979" d="M 315.2 137.6L 316 138.4L 315.2 137.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 316 137.6L 316 138.4L 318.4 139.2C 317.616 137.774 317.674 137.925 316 137.6z"/>
<path style="stroke:none; fill:#a17979" d="M 318.134 139.466C 317.778 139.822 318.622 139.778 318.666 139.734C 319.022 139.378 318.178 139.422 318.134 139.466z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 319.2 139.2L 320 140L 319.2 139.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 382.4 139.2L 383.2 140L 382.4 139.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 320 140L 320 140.8L 322.4 140.8C 321.402 140.252 321.162 140.201 320 140z"/>
<path style="stroke:none; fill:#a96060" d="M 383.2 140L 383.2 143.2L 384 143.2C 383.861 141.852 383.746 141.205 383.2 140z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 321.6 140.8L 322.4 141.6L 321.6 140.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 322.4 141.6L 322.4 142.4L 324.8 143.2C 324.016 141.774 324.074 141.925 322.4 141.6z"/>
<path style="stroke:none; fill:#a96060" d="M 259.2 143.2L 259.2 149.6L 260 149.6C 259.994 147.331 260.078 145.29 259.2 143.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 325.6 143.2L 326.4 144L 325.6 143.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 383.2 143.2L 384 144L 383.2 143.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 326.934 144.266C 326.578 144.622 327.422 144.578 327.466 144.534C 327.822 144.178 326.978 144.222 326.934 144.266z"/>
<path style="stroke:none; fill:#d2abab" d="M 384 144L 384.8 144.8L 384 144z"/>
<path style="stroke:none; fill:#9f9191" d="M 327.2 144.8L 328 145.6L 327.2 144.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 384 144.8L 384 148L 384.8 148C 384.661 146.652 384.546 146.005 384 144.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 328.8 145.6L 329.6 146.4L 328.8 145.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 329.6 146.4L 330.4 147.2L 329.6 146.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 332 148C 332.436 149.308 332.292 149.164 333.6 149.6C 333.164 148.292 333.308 148.436 332 148z"/>
<path style="stroke:none; fill:#dddddd" d="M 332.8 148L 333.6 148.8L 332.8 148M 385.066 148.534C 385.022 148.578 384.978 149.422 385.334 149.066C 385.378 149.022 385.422 148.178 385.066 148.534z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 404 148.8L 404 153.6L 404.8 153.6C 404.762 151.798 404.699 150.442 404 148.8z"/>
<path style="stroke:none; fill:#b07070" d="M 259.2 149.6L 259.2 168L 260 168C 260 162.426 261.363 154.756 259.2 149.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 335.2 150.4L 336 151.2L 335.2 150.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 384.8 150.4L 384.8 154.4L 385.6 154.4C 385.53 152.829 385.423 151.815 384.8 150.4z"/>
<path style="stroke:none; fill:#a17979" d="M 335.2 151.2L 336 152L 335.2 151.2z"/>
<path style="stroke:none; fill:#eadfdf" d="M 336.534 151.466C 336.178 151.822 337.022 151.778 337.066 151.734C 337.422 151.378 336.578 151.422 336.534 151.466z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 336.8 152L 337.6 152.8L 336.8 152M 385.6 152L 385.6 154.4L 386.4 154.4C 386.199 153.238 386.148 152.998 385.6 152M 337.6 152.8L 338.4 153.6L 337.6 152.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 338.4 153.6L 339.2 154.4L 338.4 153.6z"/>
<path style="stroke:none; fill:#c59393" d="M 386.4 153.6L 386.4 158.4L 387.2 158.4C 387.162 156.598 387.099 155.242 386.4 153.6z"/>
<path style="stroke:none; fill:#d2abab" d="M 404 153.6L 404 160.8L 404.8 160.8C 404.798 158.299 404.97 155.912 404 153.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 339.2 154.4L 340 155.2L 339.2 154.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 340 155.2L 340.8 156L 340 155.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 340.8 156L 341.6 156.8L 340.8 156z"/>
<path style="stroke:none; fill:#ad9292" d="M 341.6 156.8L 342.4 157.6L 341.6 156.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 342.4 157.6L 343.2 158.4L 342.4 157.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 386.4 158.4L 386.4 160.8L 387.2 160.8C 386.999 159.638 386.948 159.398 386.4 158.4z"/>
<path style="stroke:none; fill:#927777" d="M 387.2 159.2L 387.2 161.6L 388 161.6C 387.799 160.438 387.748 160.198 387.2 159.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 386.4 160.8C 386.947 162.064 387.044 162.222 388 163.2C 387.453 161.936 387.356 161.778 386.4 160.8z"/>
<path style="stroke:none; fill:#b07070" d="M 404 160.8L 404 164.8L 404.8 164.8C 404.73 163.229 404.623 162.215 404 160.8z"/>
<path style="stroke:none; fill:#927777" d="M 345.6 161.6L 346.4 162.4L 345.6 161.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 347.2 163.2L 348 164L 347.2 163.2z"/>
<path style="stroke:none; fill:#a17979" d="M 347.2 164L 348 164.8L 347.2 164z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 348 164L 348.8 164.8L 348 164z"/>
<path style="stroke:none; fill:#9f9191" d="M 348 164.8L 348.8 165.6L 348 164.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 387.2 165.6L 387.2 179.2L 388 179.2C 388 174.91 388.87 169.579 387.2 165.6z"/>
<path style="stroke:none; fill:#a96060" d="M 63.2 167.2L 63.2 168L 66.4 168C 65.1951 167.454 64.5482 167.339 63.2 167.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 66.4 167.2L 66.4 168L 105.6 168C 95.4784 163.753 77.4303 167.2 66.4 167.2z"/>
<path style="stroke:none; fill:#915e5e" d="M 105.6 167.2L 105.6 168L 109.6 168C 108.185 167.377 107.171 167.27 105.6 167.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 349.6 167.2L 350.4 168L 349.6 167.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 59.2 170.4C 61.0118 169.807 62.0376 169.474 63.2 168C 61.2851 168.518 60.371 168.826 59.2 170.4z"/>
<path style="stroke:none; fill:#ffffff" d="M 63.5395 168.58C 40.0992 175.983 34.9687 207.971 53.705 223.522C 63.917 231.998 81.264 228.8 93.6 228.8C 98.7912 228.8 104.597 229.541 109.599 227.968C 131.356 221.127 136.616 190.619 120.469 175.491C 109.496 165.211 94.752 168 80.8 168C 75.407 168 68.7199 166.943 63.5395 168.58z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 109.6 168L 110.4 168.8L 109.6 168z"/>
<path style="stroke:none; fill:#a96060" d="M 259.2 168L 259.2 174.4L 260 174.4C 259.994 172.131 260.078 170.09 259.2 168z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 350.4 168L 351.2 168.8L 350.4 168z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 109.6 168.8L 109.6 169.6L 112.8 169.6C 111.595 169.054 110.948 168.939 109.6 168.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 58.4 169.6L 59.2 170.4L 58.4 169.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 112.8 169.6L 113.6 170.4L 112.8 169.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 351.2 169.6L 352 170.4L 351.2 169.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 352.266 170.134C 352.222 170.178 352.178 171.022 352.534 170.666C 352.578 170.622 352.622 169.778 352.266 170.134z"/>
<path style="stroke:none; fill:#927777" d="M 56 170.4L 56.8 171.2L 56 170.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 115.2 170.4L 116 171.2L 115.2 170.4z"/>
<path style="stroke:none; fill:#a17979" d="M 54.4 171.2L 55.2 172L 54.4 171.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 55.7334 171.466C 55.3778 171.822 56.2222 171.778 56.2666 171.734C 56.6222 171.378 55.7778 171.422 55.7334 171.466z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 115.734 171.466C 115.378 171.822 116.222 171.778 116.266 171.734C 116.622 171.378 115.778 171.422 115.734 171.466z"/>
<path style="stroke:none; fill:#ad9292" d="M 116.8 171.2L 117.6 172L 116.8 171.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 352 171.2L 352.8 172L 352 171.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 54.4 172L 55.2 172.8L 54.4 172M 116.8 172L 117.6 172.8L 116.8 172z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 352.8 172L 353.6 174.4L 354.4 174.4C 353.853 173.136 353.756 172.978 352.8 172z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 52.8 172.8L 52 174.4C 53.0102 173.623 53.1135 173.845 52.8 172.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 116.8 172.8L 116.8 173.6L 119.2 174.4C 118.416 172.974 118.474 173.125 116.8 172.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 352.8 172.8L 353.6 173.6L 352.8 172.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 52.8 173.6L 53.6 174.4L 52.8 173.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 119.2 173.6L 120 174.4L 119.2 173.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 51.2 174.4L 52 175.2L 51.2 174.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 120 174.4L 120.8 175.2L 120 174.4z"/>
<path style="stroke:none; fill:#b07070" d="M 259.2 174.4L 259.2 192.8L 260 192.8C 260 187.226 261.363 179.556 259.2 174.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 49.6 177.6C 50.7654 176.718 51.1172 176.366 52 175.2C 50.3011 175.919 50.3194 175.901 49.6 177.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 120.8 175.2C 121.549 176.759 121.914 177.24 123.2 178.4C 122.451 176.841 122.086 176.36 120.8 175.2z"/>
<path style="stroke:none; fill:#a17979" d="M 121.6 175.2L 122.4 176L 121.6 175.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 354.4 175.2L 355.2 176L 354.4 175.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 355.2 175.2L 355.2 177.6L 356 177.6C 355.799 176.438 355.748 176.198 355.2 175.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 48.8 176.8L 49.6 177.6L 48.8 176.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 48 177.6L 48.8 178.4L 48 177.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 123.466 178.134C 123.422 178.178 123.378 179.022 123.734 178.666C 123.778 178.622 123.822 177.778 123.466 178.134z"/>
<path style="stroke:none; fill:#a17979" d="M 355.2 177.6L 356 178.4L 355.2 177.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 356 177.6L 356 180L 356.8 180C 356.599 178.838 356.548 178.598 356 177.6M 48 178.4L 48.8 179.2L 48 178.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 124 178.4L 124.8 179.2L 124 178.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 47.2 179.2L 48 180L 47.2 179.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 46.4 180L 47.2 180.8L 46.4 180z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 124.8 180L 125.6 180.8L 124.8 180z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 356.8 180L 357.6 180.8L 356.8 180z"/>
<path style="stroke:none; fill:#eadfdf" d="M 357.6 180C 357.846 181.698 357.906 182.149 359.2 183.2C 358.723 181.952 358.329 181.102 357.6 180z"/>
<path style="stroke:none; fill:#9f9191" d="M 356.8 180.8L 357.6 181.6L 356.8 180.8z"/>
<path style="stroke:none; fill:#915e5e" d="M 45.0666 182.134C 45.0222 182.178 44.9778 183.022 45.3334 182.666C 45.3778 182.622 45.4222 181.778 45.0666 182.134z"/>
<path style="stroke:none; fill:#dddddd" d="M 45.8666 182.134C 45.8222 182.178 45.7778 183.022 46.1334 182.666C 46.1778 182.622 46.2222 181.778 45.8666 182.134z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 125.6 181.6L 126.4 182.4L 125.6 181.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 126.4 181.6L 126.4 184L 127.2 184C 126.999 182.838 126.948 182.598 126.4 181.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 387.2 182.4C 386.411 183.583 386.4 183.362 386.4 184.8C 387.431 183.646 387.521 183.813 387.2 182.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 44.8 183.2L 45.6 184L 44.8 183.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 357.6 183.2L 358.4 184L 357.6 183.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 358.4 183.2L 358.4 186.4L 359.2 186.4C 359.061 185.052 358.946 184.405 358.4 183.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 44 184L 44.8 184.8L 44 184z"/>
<path style="stroke:none; fill:#dddddd" d="M 127.2 184L 127.2 187.2L 128 187.2C 127.861 185.852 127.746 185.205 127.2 184z"/>
<path style="stroke:none; fill:#a17979" d="M 387.466 184.534C 387.422 184.578 387.378 185.422 387.734 185.066C 387.778 185.022 387.822 184.178 387.466 184.534z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 44.2666 185.334C 44.2222 185.378 44.1778 186.222 44.5334 185.866C 44.5778 185.822 44.6222 184.978 44.2666 185.334z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 386.4 184.8L 386.4 188L 387.2 188C 387.061 186.652 386.946 186.005 386.4 184.8M 43.2 186.4L 44 187.2L 43.2 186.4M 128 186.4L 128.8 187.2L 128 186.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 359.2 186.4L 360 187.2L 359.2 186.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 359.2 187.2L 360 188L 359.2 187.2z"/>
<path style="stroke:none; fill:#c59393" d="M 386.4 188L 386.4 192L 387.2 192C 387.13 190.429 387.023 189.415 386.4 188z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 42.6666 190.134C 42.6222 190.178 42.5778 191.022 42.9334 190.666C 42.9778 190.622 43.0222 189.778 42.6666 190.134z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 128.8 189.6C 129.691 194.401 129.6 199.134 129.6 204L 130.4 204C 130.4 199.422 131.47 193.507 128.8 189.6z"/>
<path style="stroke:none; fill:#a17979" d="M 129.6 190.4L 130.4 191.2L 129.6 190.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 360 190.4L 360.8 191.2L 360 190.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 360.8 190.4L 360.8 192.8L 361.6 192.8C 361.399 191.638 361.348 191.398 360.8 190.4z"/>
<path style="stroke:none; fill:#c59393" d="M 41.8666 191.734C 41.8222 191.778 41.7778 192.622 42.1334 192.266C 42.1778 192.222 42.2222 191.378 41.8666 191.734z"/>
<path style="stroke:none; fill:#eadfdf" d="M 384.8 192L 384.8 197.6L 385.6 197.6C 385.585 195.566 385.588 193.866 384.8 192z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 385.6 192L 385.6 194.4L 386.4 194.4C 386.199 193.238 386.148 192.998 385.6 192z"/>
<path style="stroke:none; fill:#a17979" d="M 41.6 192.8L 41.6 195.2L 42.4 195.2C 42.199 194.038 42.1478 193.798 41.6 192.8z"/>
<path style="stroke:none; fill:#a96060" d="M 259.2 192.8L 259.2 199.2L 260 199.2C 259.994 196.931 260.078 194.89 259.2 192.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 361.334 194.666C 360.978 195.022 361.822 194.978 361.866 194.934C 362.222 194.578 361.378 194.622 361.334 194.666z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 41.6 195.2L 41.6 201.6L 42.4 201.6C 42.3942 199.332 42.4782 197.29 41.6 195.2M 361.6 195.2L 361.6 197.6L 362.4 197.6C 362.199 196.438 362.148 196.198 361.6 195.2z"/>
<path style="stroke:none; fill:#915e5e" d="M 130.4 196L 130.4 200.8L 131.2 200.8C 131.162 198.998 131.099 197.642 130.4 196z"/>
<path style="stroke:none; fill:#ad9292" d="M 361.866 198.134C 361.822 198.178 361.778 199.022 362.134 198.666C 362.178 198.622 362.222 197.778 361.866 198.134z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 384 197.6L 384 202.4L 384.8 202.4L 385.6 197.6L 384 197.6z"/>
<path style="stroke:none; fill:#927777" d="M 384.8 198.4L 385.6 199.2L 384.8 198.4z"/>
<path style="stroke:none; fill:#b07070" d="M 259.2 199.2L 259.2 217.6L 260 217.6C 260 212.026 261.363 204.356 259.2 199.2z"/>
<path style="stroke:none; fill:#d2abab" d="M 361.866 199.734C 361.822 199.778 361.778 200.622 362.134 200.266C 362.178 200.222 362.222 199.378 361.866 199.734z"/>
<path style="stroke:none; fill:#a96060" d="M 361.866 201.334C 361.822 201.378 361.778 202.222 362.134 201.866C 362.178 201.822 362.222 200.978 361.866 201.334z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 362.666 201.334C 362.622 201.378 362.578 202.222 362.934 201.866C 362.978 201.822 363.022 200.978 362.666 201.334z"/>
<path style="stroke:none; fill:#c59393" d="M 41.6 201.6L 41.6 205.6L 42.4 205.6C 42.3299 204.029 42.2231 203.015 41.6 201.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 362.666 202.934C 362.622 202.978 362.578 203.822 362.934 203.466C 362.978 203.422 363.022 202.578 362.666 202.934M 383.2 202.4L 383.2 204C 384.508 203.564 384.364 203.708 384.8 202.4L 383.2 202.4z"/>
<path style="stroke:none; fill:#927777" d="M 362.4 204L 362.4 206.4L 363.2 206.4C 362.999 205.238 362.948 204.998 362.4 204z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 129.6 204.8L 130.4 205.6L 129.6 204.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 42.6666 206.134C 42.6222 206.178 42.5778 207.022 42.9334 206.666C 42.9778 206.622 43.0222 205.778 42.6666 206.134z"/>
<path style="stroke:none; fill:#eadfdf" d="M 43.2 205.6C 43.2753 207.364 43.485 208.715 44 210.4L 44.8 210.4C 44.4257 208.638 44.0502 207.175 43.2 205.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 129.066 206.134C 129.022 206.178 128.978 207.022 129.334 206.666C 129.378 206.622 129.422 205.778 129.066 206.134z"/>
<path style="stroke:none; fill:#dddddd" d="M 381.6 206.4L 381.6 210.4L 382.4 210.4C 382.33 208.829 382.223 207.815 381.6 206.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 382.4 206.4L 383.2 207.2L 382.4 206.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 43.2 209.6L 44 210.4L 43.2 209.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 127.2 209.6L 127.2 212.8L 128 212.8C 127.861 211.452 127.746 210.805 127.2 209.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 128 209.6L 128.8 210.4L 128 209.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 44.2666 210.934C 44.2222 210.978 44.1778 211.822 44.5334 211.466C 44.5778 211.422 44.6222 210.578 44.2666 210.934z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 381.066 210.934C 381.022 210.978 380.978 211.822 381.334 211.466C 381.378 211.422 381.422 210.578 381.066 210.934z"/>
<path style="stroke:none; fill:#ad9292" d="M 44 212L 44.8 212.8L 44 212z"/>
<path style="stroke:none; fill:#b07070" d="M 381.066 212.534C 381.022 212.578 380.978 213.422 381.334 213.066C 381.378 213.022 381.422 212.178 381.066 212.534z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 44.8 212.8L 45.6 213.6L 44.8 212.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 126.4 212.8L 127.2 213.6L 126.4 212.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 380 212.8L 380.8 213.6L 380 212.8z"/>
<path style="stroke:none; fill:#a96060" d="M 126.666 214.134C 126.622 214.178 126.578 215.022 126.934 214.666C 126.978 214.622 127.022 213.778 126.666 214.134z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 380 213.6L 380.8 214.4L 380 213.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 45.6 214.4L 46.4 215.2L 45.6 214.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 46.6666 214.934C 46.6222 214.978 46.5778 215.822 46.9334 215.466C 46.9778 215.422 47.0222 214.578 46.6666 214.934z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 125.6 214.4L 126.4 215.2L 125.6 214.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 46.4 216L 47.2 216.8L 46.4 216z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 124.8 216L 125.6 216.8L 124.8 216z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 379.2 216L 380 216.8L 379.2 216M 47.2 216.8L 48 217.6L 47.2 216.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 124 216.8L 124.8 217.6L 124 216.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 378.4 216.8L 378.4 219.2L 379.2 219.2C 378.999 218.039 378.948 217.798 378.4 216.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 48 217.6L 48.8 218.4L 48 217.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 123.2 217.6L 123.2 219.2C 124.508 218.764 124.364 218.908 124.8 217.6L 123.2 217.6z"/>
<path style="stroke:none; fill:#a96060" d="M 259.2 217.6L 259.2 224L 260 224C 259.994 221.731 260.078 219.69 259.2 217.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 48 218.4L 48.8 219.2L 48 218.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 48.8 219.2L 49.6 220L 48.8 219.2M 122.4 219.2L 123.2 220L 122.4 219.2M 377.6 219.2L 378.4 220L 377.6 219.2z"/>
<path style="stroke:none; fill:#eadfdf" d="M 49.6 220C 50.5782 220.956 50.736 221.053 52 221.6C 51.0218 220.644 50.864 220.547 49.6 220z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 121.6 220L 122.4 220.8L 121.6 220M 120.8 220.8L 121.6 221.6L 120.8 220.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 51.2 221.6L 52 222.4L 51.2 221.6M 120 221.6L 120.8 222.4L 120 221.6M 376.8 221.6L 377.6 222.4L 376.8 221.6M 52 222.4L 52.8 223.2L 52 222.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 118.4 222.4L 118.4 224C 119.708 223.564 119.564 223.708 120 222.4L 118.4 222.4z"/>
<path style="stroke:none; fill:#ad9292" d="M 52.8 223.2L 53.6 224L 52.8 223.2z"/>
<path style="stroke:none; fill:#915e5e" d="M 362.4 223.2L 362.4 225.6L 363.2 225.6C 362.999 224.438 362.948 224.198 362.4 223.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 54.4 224C 55.3782 224.956 55.5361 225.053 56.8 225.6L 56.8 224.8L 54.4 224M 116.8 224L 115.2 224.8L 115.2 225.6C 116.599 225.06 116.846 225.265 116.8 224z"/>
<path style="stroke:none; fill:#b07070" d="M 259.2 224C 259.2 230.322 259.871 237.02 258.4 243.2C 261.629 240.378 260.802 227.818 259.2 224z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 375.2 224L 375.2 225.6C 376.508 225.164 376.364 225.308 376.8 224L 375.2 224z"/>
<path style="stroke:none; fill:#a17979" d="M 54.4 224.8L 55.2 225.6L 54.4 224.8z"/>
<path style="stroke:none; fill:#ad9292" d="M 116.8 224.8L 117.6 225.6L 116.8 224.8z"/>
<path style="stroke:none; fill:#927777" d="M 56 225.6L 56.8 226.4L 56 225.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 115.2 225.6L 116 226.4L 115.2 225.6M 362.666 226.134C 362.622 226.178 362.578 227.022 362.934 226.666C 362.978 226.622 363.022 225.778 362.666 226.134z"/>
<path style="stroke:none; fill:#915e5e" d="M 375.466 226.134C 375.422 226.178 375.378 227.022 375.734 226.666C 375.778 226.622 375.822 225.778 375.466 226.134z"/>
<path style="stroke:none; fill:#927777" d="M 57.3334 226.666C 56.9778 227.022 57.8222 226.978 57.8666 226.934C 58.2222 226.578 57.3778 226.622 57.3334 226.666z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 58.4 226.4L 59.2 227.2L 58.4 226.4M 112.8 226.4L 113.6 227.2L 112.8 226.4z"/>
<path style="stroke:none; fill:#a96060" d="M 114.134 226.666C 113.778 227.022 114.622 226.978 114.666 226.934C 115.022 226.578 114.178 226.622 114.134 226.666z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 374.4 226.4L 375.2 227.2L 374.4 226.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 59.2 227.2L 59.2 228L 64 228.8C 62.3546 227.534 61.29 227.339 59.2 227.2M 109.6 227.2L 109.6 228L 112.8 228C 111.595 227.454 110.948 227.339 109.6 227.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 362.4 227.2L 362.4 229.6L 363.2 229.6C 362.999 228.438 362.948 228.198 362.4 227.2z"/>
<path style="stroke:none; fill:#927777" d="M 374.4 227.2L 375.2 228L 374.4 227.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 61.6 228L 62.4 228.8L 61.6 228z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 108.8 228L 109.6 228.8L 108.8 228z"/>
<path style="stroke:none; fill:#9f9191" d="M 109.6 228L 110.4 228.8L 109.6 228z"/>
<path style="stroke:none; fill:#a96060" d="M 361.6 228L 361.6 230.4L 362.4 230.4C 362.199 229.239 362.148 228.998 361.6 228z"/>
<path style="stroke:none; fill:#a17979" d="M 63.2 228.8L 63.2 229.6L 66.4 229.6C 65.1951 229.054 64.5482 228.939 63.2 228.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 66.4 228.8L 66.4 229.6L 105.6 229.6C 95.4784 225.353 77.4303 228.8 66.4 228.8z"/>
<path style="stroke:none; fill:#a96060" d="M 105.6 228.8L 105.6 229.6L 108 229.6C 107.002 229.052 106.762 229.001 105.6 228.8z"/>
<path style="stroke:none; fill:#c59393" d="M 108 228.8L 108.8 229.6L 108 228.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 372.8 228.8L 372.8 231.2L 373.6 231.2C 373.399 230.038 373.348 229.798 372.8 228.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 373.6 228.8L 374.4 229.6L 373.6 228.8z"/>
<path style="stroke:none; fill:#915e5e" d="M 67.2 229.6L 67.2 230.4L 104.8 230.4C 95.0584 226.313 77.812 229.6 67.2 229.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 361.6 230.4L 361.6 232.8L 362.4 232.8C 362.199 231.639 362.148 231.398 361.6 230.4M 372 231.2L 372.8 232L 372 231.2z"/>
<path style="stroke:none; fill:#a96060" d="M 372.266 232.534C 372.222 232.578 372.178 233.422 372.534 233.066C 372.578 233.022 372.622 232.178 372.266 232.534z"/>
<path style="stroke:none; fill:#ad9292" d="M 361.866 233.334C 361.822 233.378 361.778 234.222 362.134 233.866C 362.178 233.822 362.222 232.978 361.866 233.334z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 361.6 234.4L 360.8 238.4L 361.6 238.4C 362.074 236.676 362.219 236.035 361.6 234.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 369.866 235.734C 369.822 235.778 369.778 236.622 370.134 236.266C 370.178 236.222 370.222 235.378 369.866 235.734z"/>
<path style="stroke:none; fill:#a17979" d="M 370.4 235.2L 371.2 236L 370.4 235.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 369.6 236.8L 370.4 237.6L 369.6 236.8z"/>
<path style="stroke:none; fill:#a17979" d="M 368.8 237.6L 369.6 238.4L 368.8 237.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 367.466 239.734C 367.422 239.778 367.378 240.622 367.734 240.266C 367.778 240.222 367.822 239.378 367.466 239.734z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 368 239.2L 368.8 240L 368 239.2M 223.2 240.8L 223.2 241.6C 225.48 241.583 227.417 241.448 229.6 240.8C 227.483 240.148 225.419 240.63 223.2 240.8z"/>
<path style="stroke:none; fill:#eadfdf" d="M 228.8 240.8L 228.8 241.6C 233.343 240.757 237.794 240.8 242.4 240.8C 238.542 239.182 232.759 239.63 228.8 240.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 246.666 240.534C 246.622 240.578 246.578 241.422 246.934 241.066C 246.978 241.022 247.022 240.178 246.666 240.534z"/>
<path style="stroke:none; fill:#927777" d="M 247.734 240.266C 247.378 240.622 248.222 240.578 248.266 240.534C 248.622 240.178 247.778 240.222 247.734 240.266z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 247.2 240.8L 247.2 241.6L 249.6 241.6C 248.602 241.052 248.362 241.001 247.2 240.8z"/>
<path style="stroke:none; fill:#d2abab" d="M 249.6 240.8L 249.6 241.6L 252.8 241.6C 251.595 241.054 250.948 240.939 249.6 240.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 360.8 240.8L 360.8 244.8L 361.6 244.8C 361.53 243.229 361.423 242.215 360.8 240.8z"/>
<path style="stroke:none; fill:#ad9292" d="M 367.2 240.8L 368 241.6L 367.2 240.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 222.134 241.866C 221.778 242.222 222.622 242.178 222.666 242.134C 223.022 241.778 222.178 241.822 222.134 241.866z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 253.334 241.866C 252.978 242.222 253.822 242.178 253.866 242.134C 254.222 241.778 253.378 241.822 253.334 241.866z"/>
<path style="stroke:none; fill:#9f9191" d="M 366.4 241.6L 367.2 242.4L 366.4 241.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 216.8 244C 218.064 243.453 218.222 243.356 219.2 242.4C 217.936 242.947 217.778 243.044 216.8 244z"/>
<path style="stroke:none; fill:#dddddd" d="M 220 242.4L 220 243.2L 223.2 243.2C 221.995 242.654 221.348 242.539 220 242.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 252.8 242.4L 252.8 243.2L 257.6 244C 256.213 242.398 254.916 242.462 252.8 242.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 257.6 242.4C 258.384 243.826 258.326 243.675 260 244L 260 243.2L 257.6 242.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 360 242.4L 360 244.8L 360.8 244.8C 360.599 243.639 360.548 243.398 360 242.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 365.6 242.4L 366.4 243.2L 365.6 242.4z"/>
<path style="stroke:none; fill:#b07070" d="M 214.4 243.2L 214.4 244L 216.8 244C 215.802 243.452 215.562 243.401 214.4 243.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 365.066 243.734C 365.022 243.778 364.978 244.622 365.334 244.266C 365.378 244.222 365.422 243.378 365.066 243.734z"/>
<path style="stroke:none; fill:#9f9191" d="M 365.6 243.2L 366.4 244L 365.6 243.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 213.6 244L 214.4 244.8L 213.6 244z"/>
<path style="stroke:none; fill:#a17979" d="M 210.4 244.8L 211.2 245.6L 210.4 244.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 211.2 244.8L 211.2 245.6L 214.4 245.6C 213.195 245.054 212.548 244.939 211.2 244.8z"/>
<path style="stroke:none; fill:#915e5e" d="M 359.2 244.8L 359.2 248.8L 360 248.8C 359.93 247.229 359.823 246.215 359.2 244.8M 208 245.6L 208 246.4L 210.4 246.4C 209.402 245.852 209.162 245.801 208 245.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 210.4 245.6L 211.2 246.4L 210.4 245.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 364 245.6L 364.8 246.4L 364 245.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 208 246.4L 208.8 247.2L 208 246.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 363.2 246.4L 364 247.2L 363.2 246.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 205.6 248.8L 208.8 248C 207.163 247.399 206.723 247.475 205.6 248.8z"/>
<path style="stroke:none; fill:#915e5e" d="M 203.734 248.266C 203.378 248.622 204.222 248.578 204.266 248.534C 204.622 248.178 203.778 248.222 203.734 248.266z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 204.8 248L 205.6 248.8L 204.8 248z"/>
<path style="stroke:none; fill:#dddddd" d="M 361.866 248.534C 361.822 248.578 361.778 249.422 362.134 249.066C 362.178 249.022 362.222 248.178 361.866 248.534z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 362.4 248L 363.2 248.8L 362.4 248z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 359.2 248.8L 360 252L 360.8 252C 360.323 250.752 359.929 249.902 359.2 248.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 202.134 249.866C 201.778 250.222 202.622 250.178 202.666 250.134C 203.022 249.778 202.178 249.822 202.134 249.866z"/>
<path style="stroke:none; fill:#a17979" d="M 361.6 249.6L 362.4 250.4L 361.6 249.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 200.8 250.4L 201.6 251.2L 200.8 250.4z"/>
<path style="stroke:none; fill:#ad9292" d="M 358.4 250.4L 359.2 251.2L 358.4 250.4M 360.8 250.4L 361.6 251.2L 360.8 250.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 198.4 252L 198.4 252.8L 201.6 252C 200.153 251.541 199.945 251.628 198.4 252M 358.4 251.2C 358.947 252.464 359.044 252.622 360 253.6L 360 251.2L 358.4 251.2M 404.8 251.2L 404.8 265.6L 405.6 265.6C 405.6 261.094 406.553 255.378 404.8 251.2z"/>
<path style="stroke:none; fill:#a17979" d="M 197.6 252L 198.4 252.8L 197.6 252z"/>
<path style="stroke:none; fill:#927777" d="M 196.8 252.8L 197.6 253.6L 196.8 252.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 358.4 252.8L 359.2 253.6L 358.4 252.8z"/>
<path style="stroke:none; fill:#eadfdf" d="M 195.2 255.2C 196.464 254.653 196.622 254.556 197.6 253.6C 196.336 254.147 196.178 254.244 195.2 255.2z"/>
<path style="stroke:none; fill:#b07070" d="M 194.4 254.4L 195.2 255.2L 194.4 254.4z"/>
<path style="stroke:none; fill:#927777" d="M 193.6 255.2L 194.4 256L 193.6 255.2z"/>
<path style="stroke:none; fill:#eadfdf" d="M 190.4 259.2C 192.286 258.317 193.101 257.635 194.4 256C 192.514 256.883 191.699 257.565 190.4 259.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 189.6 259.2L 190.4 260L 189.6 259.2M 188 260.8L 188.8 261.6L 188 260.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 187.2 261.6L 188 262.4L 187.2 261.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 185.6 263.2L 186.4 264L 185.6 263.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 184 264.8L 184.8 265.6L 184 264.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 404.8 265.6L 404.8 269.6L 405.6 269.6C 405.53 268.029 405.423 267.015 404.8 265.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 182.4 267.2L 183.2 268L 182.4 267.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 181.6 268L 182.4 268.8L 181.6 268z"/>
<path style="stroke:none; fill:#a17979" d="M 180.8 268.8L 181.6 269.6L 180.8 268.8z"/>
<path style="stroke:none; fill:#eadfdf" d="M 181.6 268.8C 180.811 269.983 180.8 269.762 180.8 271.2C 181.831 270.046 181.921 270.213 181.6 268.8z"/>
<path style="stroke:none; fill:#d2abab" d="M 404.8 269.6L 404.8 276.8L 405.6 276.8C 405.598 274.299 405.77 271.912 404.8 269.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 180 270.4L 180.8 271.2L 180 270.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 179.2 272L 180 272.8L 179.2 272z"/>
<path style="stroke:none; fill:#eadfdf" d="M 178.4 272.8L 177.6 276L 178.4 276C 178.772 274.455 178.859 274.247 178.4 272.8z"/>
<path style="stroke:none; fill:#915e5e" d="M 67.2 273.6L 67.2 274.4L 104 274.4C 94.4488 270.392 77.6028 273.6 67.2 273.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 177.6 273.6L 178.4 274.4L 177.6 273.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 63.2 274.4L 63.2 275.2L 66.4 275.2C 65.1951 274.654 64.5482 274.539 63.2 274.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 66.4 274.4L 66.4 275.2L 108.8 275.2C 104.825 273.532 99.48 274.4 95.2 274.4L 66.4 274.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 62.1334 275.466C 61.7778 275.822 62.6222 275.778 62.6666 275.734C 63.0222 275.378 62.1778 275.422 62.1334 275.466z"/>
<path style="stroke:none; fill:#ffffff" d="M 63.2 336C 76.7113 333.492 95.2888 333.492 108.8 336C 112.99 332.551 118.313 331.074 122.231 326.937C 130.334 318.381 128.465 308.825 130.4 298.4C 122.647 289.065 122.609 279.594 108.8 275.78C 103.823 274.405 97.9272 275.2 92.8 275.2C 81.4704 275.2 67.5378 272.858 57.1512 278.182C 41.6102 286.15 38.8526 308.679 46.8234 322.628C 51.0118 329.958 57.3394 331.026 63.2 336z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 109.334 275.466C 108.978 275.822 109.822 275.778 109.866 275.734C 110.222 275.378 109.378 275.422 109.334 275.466z"/>
<path style="stroke:none; fill:#927777" d="M 176.8 275.2L 177.6 276L 176.8 275.2z"/>
<path style="stroke:none; fill:#eadfdf" d="M 59.2 277.6L 63.2 276.8C 61.3597 276.067 60.4986 276.097 59.2 277.6M 109.6 276L 109.6 276.8L 112.8 276.8C 111.595 276.254 110.948 276.139 109.6 276z"/>
<path style="stroke:none; fill:#9f9191" d="M 112.8 276C 113.584 277.426 113.526 277.275 115.2 277.6L 115.2 276.8L 112.8 276M 56.8 276.8L 56.8 277.6L 59.2 277.6C 58.2014 277.052 57.9612 277.001 56.8 276.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 176.266 277.334C 176.222 277.378 176.178 278.222 176.534 277.866C 176.578 277.822 176.622 276.978 176.266 277.334z"/>
<path style="stroke:none; fill:#b07070" d="M 404.8 276.8L 404.8 280.8L 405.6 280.8C 405.53 279.229 405.423 278.215 404.8 276.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 56 277.6L 56.8 278.4L 56 277.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 115.2 277.6L 116 278.4L 115.2 277.6z"/>
<path style="stroke:none; fill:#a17979" d="M 175.2 277.6L 176 278.4L 175.2 277.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 54.4 278.4L 55.2 279.2L 54.4 278.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 55.7334 278.666C 55.3778 279.022 56.2222 278.978 56.2666 278.934C 56.6222 278.578 55.7778 278.622 55.7334 278.666M 115.2 278.4L 115.2 279.2L 117.6 280C 116.816 278.574 116.874 278.725 115.2 278.4M 175.2 278.4L 174.4 281.6L 175.2 281.6L 176.8 278.4L 175.2 278.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 54.4 279.2L 55.2 280L 54.4 279.2z"/>
<path style="stroke:none; fill:#a17979" d="M 117.6 279.2L 118.4 280L 117.6 279.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 52.8 280L 53.6 280.8L 52.8 280z"/>
<path style="stroke:none; fill:#dddddd" d="M 52.5334 281.066C 52.1778 281.422 53.0222 281.378 53.0666 281.334C 53.4222 280.978 52.5778 281.022 52.5334 281.066z"/>
<path style="stroke:none; fill:#a17979" d="M 120 280.8L 120.8 281.6L 120 280.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 51.2 281.6L 52 282.4L 51.2 281.6M 120 281.6L 120.8 282.4L 120 281.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 49.6 284.8C 50.7653 283.918 51.1173 283.566 52 282.4C 50.3011 283.119 50.3194 283.101 49.6 284.8z"/>
<path style="stroke:none; fill:#a17979" d="M 121.6 282.4L 122.4 283.2L 121.6 282.4z"/>
<path style="stroke:none; fill:#ad9292" d="M 172.8 282.4L 172.8 284C 174.108 283.564 173.964 283.708 174.4 282.4L 172.8 282.4z"/>
<path style="stroke:none; fill:#b07070" d="M 122.4 283.2L 123.2 284L 122.4 283.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 48.8 284L 49.6 284.8L 48.8 284z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 122.4 284L 123.2 284.8L 122.4 284M 173.066 284.534C 173.022 284.578 172.978 285.422 173.334 285.066C 173.378 285.022 173.422 284.178 173.066 284.534M 48.2666 285.334C 48.2222 285.378 48.1778 286.222 48.5334 285.866C 48.5778 285.822 48.6222 284.978 48.2666 285.334z"/>
<path style="stroke:none; fill:#dddddd" d="M 123.466 285.334C 123.422 285.378 123.378 286.222 123.734 285.866C 123.778 285.822 123.822 284.978 123.466 285.334z"/>
<path style="stroke:none; fill:#927777" d="M 172 284.8L 172.8 285.6L 172 284.8z"/>
<path style="stroke:none; fill:#a17979" d="M 47.2 285.6L 48 286.4L 47.2 285.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 124 285.6L 124.8 286.4L 124 285.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 172 285.6L 172 288.8L 172.8 288.8L 173.6 285.6L 172 285.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 47.2 286.4L 48 287.2L 47.2 286.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 46.4 287.2L 45.6 290.4L 46.4 290.4L 48 287.2L 46.4 287.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 171.2 288L 172 288.8L 171.2 288z"/>
<path style="stroke:none; fill:#ad9292" d="M 126.4 288.8L 126.4 291.2L 127.2 291.2C 126.999 290.038 126.948 289.798 126.4 288.8z"/>
<path style="stroke:none; fill:#a96060" d="M 170.4 288.8L 170.4 291.2L 171.2 291.2C 170.999 290.038 170.948 289.798 170.4 288.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 44.8 290.4L 45.6 291.2L 44.8 290.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 44 291.2L 44 293.6L 44.8 293.6L 45.6 291.2L 44 291.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 127.2 291.2L 127.2 293.6L 128 293.6C 127.799 292.438 127.748 292.198 127.2 291.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 170.666 291.734C 170.622 291.778 170.578 292.622 170.934 292.266C 170.978 292.222 171.022 291.378 170.666 291.734M 169.6 292.8L 170.4 293.6L 169.6 292.8z"/>
<path style="stroke:none; fill:#eadfdf" d="M 43.2 293.6L 43.2 298.4L 44 298.4L 44.8 293.6L 43.2 293.6z"/>
<path style="stroke:none; fill:#dddddd" d="M 128.266 294.134C 128.222 294.178 128.178 295.022 128.534 294.666C 128.578 294.622 128.622 293.778 128.266 294.134z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 169.6 293.6L 168.8 301.6L 169.6 301.6C 170.262 298.817 170.722 296.28 169.6 293.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 128.8 296C 129.125 297.674 128.974 297.616 130.4 298.4C 129.847 297.29 129.612 296.911 128.8 296z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 42.6666 297.334C 42.6222 297.378 42.5778 298.222 42.9334 297.866C 42.9778 297.822 43.0222 296.978 42.6666 297.334z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 169.066 298.134C 169.022 298.178 168.978 299.022 169.334 298.666C 169.378 298.622 169.422 297.778 169.066 298.134z"/>
<path style="stroke:none; fill:#c59393" d="M 41.8666 298.934C 41.8222 298.978 41.7778 299.822 42.1334 299.466C 42.1778 299.422 42.2222 298.578 41.8666 298.934z"/>
<path style="stroke:none; fill:#dddddd" d="M 296 299.2L 295.2 302.4C 296.525 301.277 296.601 300.837 296 299.2z"/>
<path style="stroke:none; fill:#a17979" d="M 41.8666 300.534C 41.8222 300.578 41.7778 301.422 42.1334 301.066C 42.1778 301.022 42.2222 300.178 41.8666 300.534z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 129.6 300L 129.6 310.4L 130.4 310.4C 130.4 306.99 130.929 303.167 129.6 300z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 41.6 301.6L 41.6 308.8L 42.4 308.8C 42.3986 306.299 42.5703 303.912 41.6 301.6z"/>
<path style="stroke:none; fill:#a96060" d="M 168.266 302.134C 168.222 302.178 168.178 303.022 168.534 302.666C 168.578 302.622 168.622 301.778 168.266 302.134z"/>
<path style="stroke:none; fill:#915e5e" d="M 130.4 302.4L 130.4 308L 131.2 308C 131.185 305.966 131.188 304.266 130.4 302.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 295.2 302.4L 295.2 308.8L 296 308.8C 295.994 306.532 296.078 304.49 295.2 302.4z"/>
<path style="stroke:none; fill:#927777" d="M 296.266 302.934C 296.222 302.978 296.178 303.822 296.534 303.466C 296.578 303.422 296.622 302.578 296.266 302.934z"/>
<path style="stroke:none; fill:#a96060" d="M 168 306.4L 168 310.4L 168.8 310.4C 168.73 308.829 168.623 307.815 168 306.4z"/>
<path style="stroke:none; fill:#a17979" d="M 41.6 308.8L 41.6 312.8L 42.4 312.8C 42.3299 311.229 42.2231 310.215 41.6 308.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 294.666 309.334C 294.622 309.378 294.578 310.222 294.934 309.866C 294.978 309.822 295.022 308.978 294.666 309.334z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 168.8 310.4L 168.8 312.8L 169.6 312.8C 169.399 311.638 169.348 311.398 168.8 310.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 169.6 311.2L 169.6 316L 170.4 316C 170.362 314.198 170.299 312.842 169.6 311.2z"/>
<path style="stroke:none; fill:#d2abab" d="M 129.6 312L 130.4 312.8L 129.6 312z"/>
<path style="stroke:none; fill:#9f9191" d="M 42.6666 313.334C 42.6222 313.378 42.5778 314.222 42.9334 313.866C 42.9778 313.822 43.0222 312.978 42.6666 313.334z"/>
<path style="stroke:none; fill:#eadfdf" d="M 43.2 312.8C 43.2753 314.564 43.485 315.915 44 317.6L 44.8 317.6C 44.4257 315.838 44.0502 314.375 43.2 312.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 129.066 313.334C 129.022 313.378 128.978 314.222 129.334 313.866C 129.378 313.822 129.422 312.978 129.066 313.334z"/>
<path style="stroke:none; fill:#915e5e" d="M 169.066 313.334C 169.022 313.378 168.978 314.222 169.334 313.866C 169.378 313.822 169.422 312.978 169.066 313.334z"/>
<path style="stroke:none; fill:#dddddd" d="M 292.8 312.8L 292.8 316L 293.6 316L 294.4 312.8L 292.8 312.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 128 316L 128.8 316.8L 128 316z"/>
<path style="stroke:none; fill:#eadfdf" d="M 169.6 316C 169.925 317.674 169.774 317.616 171.2 318.4C 170.647 317.29 170.412 316.911 169.6 316z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 292 316L 292 317.6C 293.308 317.164 293.164 317.308 293.6 316L 292 316z"/>
<path style="stroke:none; fill:#9f9191" d="M 43.2 316.8L 44 317.6L 43.2 316.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 127.2 316.8L 127.2 319.2L 128 319.2C 127.799 318.038 127.748 317.798 127.2 316.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 128 316.8L 128.8 317.6L 128 316.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 44.2666 318.134C 44.2222 318.178 44.1778 319.022 44.5334 318.666C 44.5778 318.622 44.6222 317.778 44.2666 318.134z"/>
<path style="stroke:none; fill:#a96060" d="M 292.266 318.134C 292.222 318.178 292.178 319.022 292.534 318.666C 292.578 318.622 292.622 317.778 292.266 318.134z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 170.4 318.4L 170.4 320.8L 171.2 320.8C 170.999 319.638 170.948 319.398 170.4 318.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 291.2 318.4L 292 319.2L 291.2 318.4z"/>
<path style="stroke:none; fill:#a17979" d="M 44 319.2L 44.8 320L 44 319.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 44.8 319.2L 45.6 320L 44.8 319.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 127.2 319.2L 128 320L 127.2 319.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 291.2 319.2L 292 320L 291.2 319.2z"/>
<path style="stroke:none; fill:#a17979" d="M 126.666 320.534C 126.622 320.578 126.578 321.422 126.934 321.066C 126.978 321.022 127.022 320.178 126.666 320.534z"/>
<path style="stroke:none; fill:#a96060" d="M 170.4 320.8L 170.4 323.2L 171.2 323.2C 170.999 322.038 170.948 321.798 170.4 320.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 45.6 321.6L 46.4 322.4L 45.6 321.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 46.6666 322.134C 46.6222 322.178 46.5778 323.022 46.9334 322.666C 46.9778 322.622 47.0222 321.778 46.6666 322.134z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 125.6 321.6L 126.4 322.4L 125.6 321.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 289.866 322.134C 289.822 322.178 289.778 323.022 290.134 322.666C 290.178 322.622 290.222 321.778 289.866 322.134z"/>
<path style="stroke:none; fill:#9f9191" d="M 290.4 321.6L 291.2 322.4L 290.4 321.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 171.2 322.4L 172 323.2L 171.2 322.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 172 322.4C 172.134 324.322 172.158 325.168 173.6 326.4C 173.159 324.94 172.739 323.718 172 322.4z"/>
<path style="stroke:none; fill:#a17979" d="M 46.4 323.2L 47.2 324L 46.4 323.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 124.8 323.2L 125.6 324L 124.8 323.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 171.2 323.2L 172 324L 171.2 323.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 288.8 323.2L 289.6 324L 288.8 323.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 47.2 324L 48 324.8L 47.2 324z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 124 324L 124.8 324.8L 124 324z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 288.8 324L 289.6 324.8L 288.8 324z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 48 324.8L 48.8 325.6L 48 324.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 123.2 324.8L 123.2 326.4C 124.508 325.964 124.364 326.108 124.8 324.8L 123.2 324.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 288 325.6L 288.8 326.4L 288 325.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 48.8 326.4L 49.6 327.2L 48.8 326.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 122.4 326.4L 123.2 327.2L 122.4 326.4z"/>
<path style="stroke:none; fill:#927777" d="M 172 326.4L 172.8 327.2L 172 326.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 173.066 326.934C 173.022 326.978 172.978 327.822 173.334 327.466C 173.378 327.422 173.422 326.578 173.066 326.934z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 287.2 326.4C 286.411 327.583 286.4 327.362 286.4 328.8C 287.431 327.646 287.521 327.813 287.2 326.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 49.6 327.2L 50.4 328L 49.6 327.2M 121.6 327.2L 122.4 328L 121.6 327.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 50.9334 328.266C 50.5778 328.622 51.4222 328.578 51.4666 328.534C 51.8222 328.178 50.9778 328.222 50.9334 328.266z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 120 328L 120 329.6C 121.308 329.164 121.164 329.308 121.6 328L 120 328z"/>
<path style="stroke:none; fill:#a17979" d="M 173.066 328.534C 173.022 328.578 172.978 329.422 173.334 329.066C 173.378 329.022 173.422 328.178 173.066 328.534z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 51.2 328.8L 52 329.6L 51.2 328.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 173.6 328.8L 174.4 329.6L 173.6 328.8z"/>
<path style="stroke:none; fill:#a17979" d="M 52 329.6C 52.4361 330.908 52.2918 330.764 53.6 331.2C 53.1639 329.892 53.3082 330.036 52 329.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 52.8 329.6L 53.6 330.4L 52.8 329.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 118.4 329.6L 118.4 331.2C 119.708 330.764 119.564 330.908 120 329.6L 118.4 329.6z"/>
<path style="stroke:none; fill:#927777" d="M 173.6 329.6L 174.4 330.4L 173.6 329.6M 285.6 329.6L 286.4 330.4L 285.6 329.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 116.8 330.4L 116.8 332C 118.108 331.564 117.964 331.708 118.4 330.4L 116.8 330.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 284.8 330.4L 285.6 331.2L 284.8 330.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 54.4 331.2L 55.2 332L 54.4 331.2M 174.4 331.2L 175.2 332L 174.4 331.2z"/>
<path style="stroke:none; fill:#dddddd" d="M 175.2 331.2C 175.525 332.874 175.374 332.816 176.8 333.6C 176.247 332.49 176.012 332.111 175.2 331.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 284 331.2L 284.8 332L 284 331.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 55.7334 332.266C 55.3778 332.622 56.2222 332.578 56.2666 332.534C 56.6222 332.178 55.7778 332.222 55.7334 332.266z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 115.2 332L 116 332.8L 115.2 332z"/>
<path style="stroke:none; fill:#a96060" d="M 116.534 332.266C 116.178 332.622 117.022 332.578 117.066 332.534C 117.422 332.178 116.578 332.222 116.534 332.266z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 283.2 332L 283.2 333.6C 284.508 333.164 284.364 333.308 284.8 332L 283.2 332z"/>
<path style="stroke:none; fill:#eadfdf" d="M 56.8 332.8L 56.8 333.6L 59.2 333.6C 58.2013 333.052 57.9613 333.001 56.8 332.8M 112.8 332.8L 112.8 333.6L 115.2 333.6C 114.202 333.052 113.962 333.001 112.8 332.8z"/>
<path style="stroke:none; fill:#a17979" d="M 115.2 332.8L 116 333.6L 115.2 332.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 58.4 333.6L 59.2 334.4L 58.4 333.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 59.2 333.6C 60.3624 335.074 61.3882 335.407 63.2 336C 62.0376 334.526 61.0118 334.193 59.2 333.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 112.8 333.6L 113.6 334.4L 112.8 333.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 176.266 334.134C 176.222 334.178 176.178 335.022 176.534 334.666C 176.578 334.622 176.622 333.778 176.266 334.134z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 282.4 333.6L 283.2 334.4L 282.4 333.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 108.8 336L 112 335.2C 110.363 334.599 109.923 334.675 108.8 336z"/>
<path style="stroke:none; fill:#ad9292" d="M 112 334.4L 112.8 335.2L 112 334.4z"/>
<path style="stroke:none; fill:#927777" d="M 61.6 335.2L 62.4 336L 61.6 335.2z"/>
<path style="stroke:none; fill:#eadfdf" d="M 64.8 335.2L 64.8 336L 107.2 336C 103.225 334.332 97.88 335.2 93.6 335.2L 64.8 335.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 109.6 335.2L 110.4 336L 109.6 335.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 281.6 335.2L 282.4 336L 281.6 335.2M 66.4 336L 66.4 336.8L 103.2 336.8C 93.6488 332.792 76.8027 336 66.4 336z"/>
<path style="stroke:none; fill:#927777" d="M 103.2 336L 103.2 336.8L 105.6 336.8C 104.602 336.252 104.362 336.201 103.2 336z"/>
<path style="stroke:none; fill:#ad9292" d="M 280.8 336L 281.6 336.8L 280.8 336z"/>
<path style="stroke:none; fill:#915e5e" d="M 67.2 336.8L 67.2 337.6L 102.4 337.6C 93.2296 333.752 77.1843 336.8 67.2 336.8z"/>
<path style="stroke:none; fill:#eadfdf" d="M 177.6 336.8C 178.036 338.108 177.892 337.964 179.2 338.4L 179.2 336.8L 177.6 336.8z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 280 336.8L 280.8 337.6L 280 336.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 279.2 337.6L 280 338.4L 279.2 337.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 178.4 338.4L 179.2 339.2L 178.4 338.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 179.466 338.934C 179.422 338.978 179.378 339.822 179.734 339.466C 179.778 339.422 179.822 338.578 179.466 338.934z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 278.4 338.4L 279.2 339.2L 278.4 338.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 277.6 339.2L 278.4 340L 277.6 339.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 276.8 340L 277.6 340.8L 276.8 340M 276 340.8L 276.8 341.6L 276 340.8z"/>
<path style="stroke:none; fill:#ad9292" d="M 180.8 341.6L 181.6 342.4L 180.8 341.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 275.2 341.6L 276 342.4L 275.2 341.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 274.4 342.4L 275.2 343.2L 274.4 342.4z"/>
<path style="stroke:none; fill:#a17979" d="M 182.4 343.2L 183.2 344L 182.4 343.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 183.466 343.734C 183.422 343.778 183.378 344.622 183.734 344.266C 183.778 344.222 183.822 343.378 183.466 343.734z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 273.6 343.2L 274.4 344L 273.6 343.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 272.8 344L 273.6 344.8L 272.8 344z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 184 344.8L 184.8 345.6L 184 344.8z"/>
<path style="stroke:none; fill:#927777" d="M 272 344.8L 272.8 345.6L 272 344.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 185.334 345.866C 184.978 346.222 185.822 346.178 185.866 346.134C 186.222 345.778 185.378 345.822 185.334 345.866M 270.4 345.6L 269.6 347.2C 270.61 346.423 270.714 346.645 270.4 345.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 271.2 345.6L 272 346.4L 271.2 345.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 185.6 346.4L 186.4 347.2L 185.6 346.4z"/>
<path style="stroke:none; fill:#a17979" d="M 270.4 346.4L 271.2 347.2L 270.4 346.4z"/>
<path style="stroke:none; fill:#927777" d="M 186.4 347.2L 187.2 348L 186.4 347.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 187.2 347.2L 188 348L 187.2 347.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 268.8 347.2L 269.6 348L 268.8 347.2z"/>
<path style="stroke:none; fill:#a17979" d="M 187.2 348L 188 348.8L 187.2 348z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 266.4 349.6L 268.8 348.8C 267.387 348.479 267.554 348.569 266.4 349.6z"/>
<path style="stroke:none; fill:#927777" d="M 267.2 348.8L 268 349.6L 267.2 348.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 190.134 349.866C 189.778 350.222 190.622 350.178 190.666 350.134C 191.022 349.778 190.178 349.822 190.134 349.866z"/>
<path style="stroke:none; fill:#ad9292" d="M 190.4 350.4L 191.2 351.2L 190.4 350.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 191.2 350.4C 192.178 351.356 192.336 351.453 193.6 352C 192.622 351.044 192.464 350.947 191.2 350.4z"/>
<path style="stroke:none; fill:#dddddd" d="M 263.2 350.4L 263.2 351.2L 265.6 351.2C 264.602 350.652 264.361 350.601 263.2 350.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 263.2 351.2L 264 352L 263.2 351.2z"/>
<path style="stroke:none; fill:#a17979" d="M 192.534 352.266C 192.178 352.622 193.022 352.578 193.066 352.534C 193.422 352.178 192.578 352.222 192.534 352.266z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 193.6 352L 194.4 352.8L 193.6 352z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 260.8 352L 260.8 353.6C 262.108 353.164 261.964 353.308 262.4 352L 260.8 352z"/>
<path style="stroke:none; fill:#eadfdf" d="M 194.4 352.8L 194.4 353.6L 196.8 353.6C 195.802 353.052 195.562 353.001 194.4 352.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 196 353.6L 196.8 354.4L 196 353.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 258.4 353.6L 259.2 354.4L 258.4 353.6z"/>
<path style="stroke:none; fill:#927777" d="M 259.2 353.6L 260 354.4L 259.2 353.6z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 196.8 354.4L 196.8 355.2L 199.2 356C 198.416 354.574 198.474 354.725 196.8 354.4M 256 356L 258.4 355.2C 256.978 354.436 256.783 354.587 256 356z"/>
<path style="stroke:none; fill:#b07070" d="M 258.4 354.4L 259.2 355.2L 258.4 354.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 199.2 355.2L 199.2 356L 201.6 356C 200.602 355.452 200.362 355.401 199.2 355.2z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 200.8 356L 201.6 356.8L 200.8 356z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 253.6 356L 254.4 356.8L 253.6 356z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 201.6 356.8L 201.6 357.6L 204.8 358.4C 203.749 357.106 203.298 357.046 201.6 356.8M 250.4 358.4L 253.6 357.6C 251.963 356.999 251.523 357.075 250.4 358.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 405.6 356.8L 405.6 373.6L 406.4 373.6C 406.4 368.451 407.6 361.567 405.6 356.8M 204.8 357.6L 204.8 358.4L 208.8 358.4C 207.385 357.777 206.371 357.67 204.8 357.6M 246.4 357.6L 246.4 358.4L 250.4 358.4C 248.985 357.777 247.971 357.67 246.4 357.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 207.2 358.4L 207.2 359.2L 213.6 360.8L 213.6 360C 211.49 359.282 209.39 358.825 207.2 358.4z"/>
<path style="stroke:none; fill:#b8b7b7" d="M 245.6 360L 248 359.2C 246.578 358.436 246.383 358.587 245.6 360z"/>
<path style="stroke:none; fill:#a17979" d="M 208 359.2L 208.8 360L 208 359.2z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 240.8 360.8L 244 360C 242.363 359.399 241.923 359.475 240.8 360.8z"/>
<path style="stroke:none; fill:#eadfdf" d="M 244.534 359.466C 244.178 359.822 245.022 359.778 245.066 359.734C 245.422 359.378 244.578 359.422 244.534 359.466z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 241.6 360L 242.4 360.8L 241.6 360z"/>
<path style="stroke:none; fill:#a96060" d="M 213.334 361.066C 212.978 361.422 213.822 361.378 213.866 361.334C 214.222 360.978 213.378 361.022 213.334 361.066z"/>
<path style="stroke:none; fill:#927777" d="M 215.2 360.8L 216 361.6L 215.2 360.8z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 216.534 361.066C 216.178 361.422 217.022 361.378 217.066 361.334C 217.422 360.978 216.578 361.022 216.534 361.066z"/>
<path style="stroke:none; fill:#9f9191" d="M 236 360.8L 236 362.4C 237.308 361.964 237.164 362.108 237.6 360.8L 236 360.8z"/>
<path style="stroke:none; fill:#b07070" d="M 239.734 361.066C 239.378 361.422 240.222 361.378 240.266 361.334C 240.622 360.978 239.778 361.022 239.734 361.066z"/>
<path style="stroke:none; fill:#9f9191" d="M 216.8 361.6L 217.6 362.4L 216.8 361.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 224 361.6L 224 362.4L 236 362.4C 232.423 360.899 227.854 361.6 224 361.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 405.6 373.6L 405.6 382.4L 406.4 382.4C 406.4 379.44 406.752 376.346 405.6 373.6z"/>
<path style="stroke:none; fill:#d2abab" d="M 405.6 382.4L 405.6 388.8L 406.4 388.8C 406.394 386.531 406.478 384.49 405.6 382.4z"/>
<path style="stroke:none; fill:#c59393" d="M 405.6 388.8L 405.6 395.2L 406.4 395.2C 406.394 392.931 406.478 390.89 405.6 388.8z"/>
<path style="stroke:none; fill:#a96060" d="M 405.6 395.2L 405.6 398.4L 406.4 398.4C 406.261 397.052 406.146 396.405 405.6 395.2M 332.8 402.4L 332.8 403.2L 335.2 403.2C 334.202 402.652 333.961 402.601 332.8 402.4z"/>
<path style="stroke:none; fill:#c59393" d="M 335.2 402.4L 335.2 403.2L 340 403.2C 338.358 402.501 337.002 402.438 335.2 402.4z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 340 402.4L 340 403.2L 344.8 403.2C 343.158 402.501 341.802 402.438 340 402.4z"/>
<path style="stroke:none; fill:#eadfdf" d="M 344.8 402.4L 344.8 403.2L 352.8 403.2C 350.27 402.138 347.531 402.4 344.8 402.4z"/>
<path style="stroke:none; fill:#a96060" d="M 251.2 403.2L 251.2 404L 253.6 404C 252.602 403.452 252.362 403.401 251.2 403.2z"/>
<path style="stroke:none; fill:#b07070" d="M 253.6 403.2L 253.6 404L 256 404C 255.002 403.452 254.762 403.401 253.6 403.2z"/>
<path style="stroke:none; fill:#d2abab" d="M 256 403.2L 256 404L 262.4 404C 260.31 403.122 258.269 403.206 256 403.2z"/>
<path style="stroke:none; fill:#eadfdf" d="M 262.4 403.2L 262.4 404L 271.2 404C 268.454 402.848 265.36 403.2 262.4 403.2z"/>
<path style="stroke:none; fill:#b07070" d="M 169.6 404L 169.6 404.8L 172.8 404.8C 171.595 404.254 170.948 404.139 169.6 404z"/>
<path style="stroke:none; fill:#c59393" d="M 172.8 404L 172.8 404.8L 178.4 404.8C 176.534 404.012 174.834 404.015 172.8 404z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 178.4 404L 178.4 404.8L 181.6 404.8C 180.395 404.254 179.748 404.139 178.4 404z"/>
<path style="stroke:none; fill:#eadfdf" d="M 181.6 404L 181.6 404.8L 185.6 404.8C 184.185 404.177 183.171 404.07 181.6 404z"/>
<path style="stroke:none; fill:#b07070" d="M 88 404.8L 88 405.6L 92.8 405.6C 91.1584 404.901 89.8024 404.838 88 404.8z"/>
<path style="stroke:none; fill:#d2abab" d="M 92.8 404.8L 92.8 405.6L 98.4 405.6C 96.5344 404.812 94.8344 404.815 92.8 404.8z"/>
<path style="stroke:none; fill:#dddddd" d="M 98.4 404.8L 98.4 405.6L 104.8 405.6C 102.71 404.722 100.668 404.806 98.4 404.8z"/>
<path style="stroke:none; fill:#eadfdf" d="M 0 405.6L 0 406.4L 4.8 406.4C 3.15832 405.701 1.80226 405.638 0 405.6z"/>
<path style="stroke:none; fill:#b07070" d="M 7.2 405.6L 7.2 406.4L 11.2 406.4C 9.7848 405.777 8.77128 405.67 7.2 405.6z"/>
<path style="stroke:none; fill:#d2abab" d="M 11.2 405.6L 11.2 406.4L 16 406.4C 14.3583 405.701 13.0022 405.638 11.2 405.6z"/>
<path style="stroke:none; fill:#d0c5c5" d="M 16 405.6L 16 406.4L 20 406.4C 18.5848 405.777 17.5713 405.67 16 405.6z"/>
<path style="stroke:none; fill:#eadfdf" d="M 20 405.6L 20 406.4L 31.2 406.4C 27.8268 404.985 23.6329 405.6 20 405.6M 392.8 408.8L 392.8 409.6L 406.4 409.6C 402.421 407.93 397.09 408.8 392.8 408.8z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 85 KiB

655
svg/playlist_inactive.svg Normal file
View File

@ -0,0 +1,655 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#9b3b3b" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#a17979" d="M 274.4 34.4L 275.2 35.2L 274.4 34.4z"/>
<path style="stroke:none; fill:#ffffff" d="M 260.8 244C 255.234 243.557 250.158 240.857 244.664 240.279C 231.538 238.898 214.992 242.826 203.61 249.398C 170.339 268.615 154.068 321.738 188.412 348.552C 221.569 374.439 275.715 359.534 291.241 319.864C 299.727 298.179 296.8 273.309 296.8 250.4L 296.8 128C 303.211 129.005 308.28 133.477 313.937 136.35C 333.149 146.11 362.426 169.967 360.8 194.4C 364.006 198.626 363.2 206.085 363.2 211.2C 363.2 224.723 360.046 237.93 360 251.2C 370.301 240.978 377.475 223.358 381.443 209.631C 385.738 194.774 388.273 180.327 387.564 164.8C 385.84 127.034 360.604 93.316 332.188 70.7593C 319.293 60.5228 305.928 48.3939 291.769 40.0673C 286.616 37.037 280.283 32.811 274.243 35.5358C 254.749 44.3296 260.8 71.3197 260.8 88.8L 260.8 244z"/>
<path style="stroke:none; fill:#dedede" d="M 281.6 34.4L 281.6 36L 283.2 36C 282.764 34.6919 282.908 34.836 281.6 34.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 274.4 35.2L 275.2 36L 274.4 35.2z"/>
<path style="stroke:none; fill:#905d5d" d="M 283.2 35.2L 283.2 36L 286.4 36C 285.195 35.4536 284.548 35.3393 283.2 35.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 271.2 36L 272 36.8L 271.2 36z"/>
<path style="stroke:none; fill:#dedede" d="M 285.866 36.5334C 285.822 36.5778 285.778 37.4222 286.134 37.0667C 286.178 37.0223 286.222 36.1777 285.866 36.5334z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 269.6 36.8L 269.6 37.6L 272 37.6C 271.002 37.0522 270.762 37.001 269.6 36.8z"/>
<path style="stroke:none; fill:#c5aeae" d="M 286.4 36.8L 286.4 37.6L 288.8 38.4C 288.016 36.9734 288.074 37.1245 286.4 36.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 268.8 37.6L 269.6 38.4L 268.8 37.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 288.8 37.6L 289.6 38.4L 288.8 37.6z"/>
<path style="stroke:none; fill:#dedede" d="M 267.2 38.4C 266.411 39.5828 266.4 39.3626 266.4 40.8C 267.431 39.6458 267.521 39.813 267.2 38.4M 288.8 38.4L 288.8 39.2L 292 40L 292 39.2L 288.8 38.4z"/>
<path style="stroke:none; fill:#a17979" d="M 292 39.2L 292.8 40L 292 39.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 265.6 40L 266.4 40.8L 265.6 40z"/>
<path style="stroke:none; fill:#9f9191" d="M 292.8 40L 293.6 40.8L 292.8 40z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 264 43.2C 265.166 42.3172 265.518 41.9654 266.4 40.8C 264.701 41.5194 264.719 41.5011 264 43.2z"/>
<path style="stroke:none; fill:#dedede" d="M 293.334 41.0667C 292.978 41.4222 293.822 41.3778 293.866 41.3334C 294.222 40.9778 293.378 41.0222 293.334 41.0667z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 294.4 41.6L 295.2 42.4L 294.4 41.6M 296 42.4L 296.8 43.2L 296 42.4z"/>
<path style="stroke:none; fill:#dedede" d="M 296.534 43.4666C 296.178 43.8222 297.022 43.7778 297.066 43.7334C 297.422 43.3778 296.578 43.4222 296.534 43.4666z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 297.6 44L 298.4 44.8L 297.6 44z"/>
<path style="stroke:none; fill:#a17979" d="M 261.866 45.3334C 261.822 45.3778 261.778 46.2222 262.134 45.8666C 262.178 45.8222 262.222 44.9777 261.866 45.3334z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 262.4 44.8L 263.2 45.6L 262.4 44.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 299.2 44.8L 300 45.6L 299.2 44.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 299.734 45.8666C 299.378 46.2222 300.222 46.1778 300.266 46.1334C 300.622 45.7778 299.778 45.8222 299.734 45.8666z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 261.866 46.9334C 261.822 46.9778 261.778 47.8222 262.134 47.4666C 262.178 47.4222 262.222 46.5778 261.866 46.9334z"/>
<path style="stroke:none; fill:#ad9292" d="M 300.8 46.4L 301.6 47.2L 300.8 46.4z"/>
<path style="stroke:none; fill:#dedede" d="M 260.8 48L 260 60L 260.8 60C 261.114 56.0198 261.475 51.8834 262.4 48L 260.8 48z"/>
<path style="stroke:none; fill:#ad9292" d="M 302.934 48.2666C 302.578 48.6222 303.422 48.5778 303.466 48.5334C 303.822 48.1778 302.978 48.2223 302.934 48.2666z"/>
<path style="stroke:none; fill:#9f9191" d="M 304 48.8L 304.8 49.6L 304 48.8z"/>
<path style="stroke:none; fill:#dedede" d="M 305.066 50.1334C 305.022 50.1778 304.978 51.0222 305.334 50.6667C 305.378 50.6223 305.422 49.7777 305.066 50.1334z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 305.6 50.4L 306.4 51.2L 305.6 50.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 306.4 51.2L 307.2 52L 306.4 51.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 260.266 52.5334C 260.222 52.5779 260.178 53.4222 260.534 53.0667C 260.578 53.0222 260.622 52.1778 260.266 52.5334z"/>
<path style="stroke:none; fill:#dedede" d="M 306.4 52L 306.4 52.8L 308.8 53.6C 308.016 52.1734 308.074 52.3246 306.4 52z"/>
<path style="stroke:none; fill:#ad9292" d="M 308.8 52.8L 309.6 53.6L 308.8 52.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 260 53.6L 260 56L 260.8 56C 260.599 54.8387 260.548 54.5987 260 53.6z"/>
<path style="stroke:none; fill:#927777" d="M 310.4 53.6L 311.2 54.4L 310.4 53.6z"/>
<path style="stroke:none; fill:#dedede" d="M 310.934 54.6667C 310.578 55.0222 311.422 54.9778 311.466 54.9334C 311.822 54.5778 310.978 54.6223 310.934 54.6667z"/>
<path style="stroke:none; fill:#af6f6f" d="M 259.2 55.2L 259.2 60L 260 60C 259.962 58.1978 259.899 56.8417 259.2 55.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 312 55.2L 312.8 56L 312 55.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 313.6 56L 314.4 56.8L 313.6 56z"/>
<path style="stroke:none; fill:#dedede" d="M 314.134 57.0667C 313.778 57.4222 314.622 57.3778 314.666 57.3334C 315.022 56.9778 314.178 57.0223 314.134 57.0667z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 315.2 57.6L 316 58.4L 315.2 57.6z"/>
<path style="stroke:none; fill:#dedede" d="M 316.8 58.4L 316.8 60L 318.4 60C 317.964 58.6919 318.108 58.836 316.8 58.4z"/>
<path style="stroke:none; fill:#a17979" d="M 318.4 59.2L 319.2 60L 318.4 59.2M 259.2 60L 259.2 68L 260 68C 260 65.2685 260.262 62.5306 259.2 60z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 318.4 60L 319.2 60.8L 318.4 60z"/>
<path style="stroke:none; fill:#dedede" d="M 320 60.8L 320 62.4L 321.6 62.4C 321.164 61.0919 321.308 61.236 320 60.8z"/>
<path style="stroke:none; fill:#a17979" d="M 321.6 61.6L 322.4 62.4L 321.6 61.6z"/>
<path style="stroke:none; fill:#dedede" d="M 323.2 63.2L 323.2 64.8L 324.8 64.8C 324.364 63.4919 324.508 63.636 323.2 63.2M 326.4 65.6L 326.4 67.2L 328 67.2C 327.564 65.8919 327.708 66.036 326.4 65.6z"/>
<path style="stroke:none; fill:#af6f6f" d="M 66.1334 66.6667C 65.7778 67.0222 66.6222 66.9778 66.6666 66.9334C 67.0222 66.5778 66.1778 66.6223 66.1334 66.6667z"/>
<path style="stroke:none; fill:#c29494" d="M 67.7334 66.6667C 67.3778 67.0222 68.2222 66.9778 68.2666 66.9334C 68.6222 66.5778 67.7778 66.6223 67.7334 66.6667z"/>
<path style="stroke:none; fill:#debdbd" d="M 68.8 66.4L 68.8 67.2L 83.2 67.2C 79.0221 65.4469 73.3058 66.4 68.8 66.4z"/>
<path style="stroke:none; fill:#c29494" d="M 83.2 66.4L 83.2 67.2L 88.8 67.2C 86.9344 66.4124 85.2344 66.415 83.2 66.4z"/>
<path style="stroke:none; fill:#debdbd" d="M 88.8 66.4L 88.8 67.2L 103.2 67.2C 99.0224 65.4469 93.3056 66.4 88.8 66.4z"/>
<path style="stroke:none; fill:#c29494" d="M 103.2 66.4L 103.2 67.2L 105.6 67.2C 104.602 66.6522 104.362 66.601 103.2 66.4z"/>
<path style="stroke:none; fill:#dedede" d="M 260 66.4L 260 244L 260.8 244L 260.8 119.2L 260.8 83.2C 260.8 78.0638 261.998 71.1609 260 66.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 64.5334 67.4666C 64.1778 67.8222 65.0222 67.7778 65.0666 67.7334C 65.4223 67.3777 64.5778 67.4222 64.5334 67.4666z"/>
<path style="stroke:none; fill:#ffffff" d="M 60.8 68C 53.4217 74.695 47.0702 78.0234 43.5043 88.228C 38.4386 102.726 46.2482 122.499 61.1402 127.42C 70.256 130.433 80.1392 129.6 89.6 129.6C 99.4672 129.6 109.11 129.85 117.6 123.925C 140.453 107.974 129.631 68.235 101.6 67.2148C 88.388 66.734 73.6172 69.5976 60.8 68z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 105.6 67.2L 105.6 68L 108 68C 107.002 67.4522 106.762 67.401 105.6 67.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 62.4 68L 62.4 68.8L 65.6 68.8C 64.3951 68.2536 63.7482 68.1393 62.4 68M 106.4 68L 106.4 68.8L 111.2 68.8C 109.558 68.1006 108.202 68.0378 106.4 68z"/>
<path style="stroke:none; fill:#927777" d="M 111.2 68L 112 68.8L 111.2 68z"/>
<path style="stroke:none; fill:#af6f6f" d="M 259.2 68L 259.2 118.4L 260 118.4L 260 84C 260 79.0768 261.116 72.5659 259.2 68z"/>
<path style="stroke:none; fill:#a17979" d="M 329.6 68L 330.4 68.8L 329.6 68z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 60 68.8L 60.8 69.6L 60 68.8M 111.2 68.8L 112 69.6L 111.2 68.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 329.6 68.8L 330.4 69.6L 329.6 68.8z"/>
<path style="stroke:none; fill:#dedede" d="M 331.2 69.6L 331.2 71.2L 332.8 71.2C 332.364 69.8919 332.508 70.0361 331.2 69.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 56.5334 70.6667C 56.1778 71.0221 57.0222 70.9778 57.0666 70.9334C 57.4222 70.5778 56.5778 70.6223 56.5334 70.6667M 114.934 70.6667C 114.578 71.0223 115.422 70.9777 115.466 70.9334C 115.822 70.5779 114.978 70.6222 114.934 70.6667z"/>
<path style="stroke:none; fill:#a17979" d="M 116 70.4L 116.8 71.2L 116 70.4z"/>
<path style="stroke:none; fill:#af6f6f" d="M 332.8 70.4L 333.6 71.2L 332.8 70.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 55.2 71.2L 56 72L 55.2 71.2z"/>
<path style="stroke:none; fill:#dedede" d="M 53.6 72L 52.8 73.6L 54.4 73.6C 54.4 72.1174 54.6398 72.5198 53.6 72M 117.6 72L 117.6 73.6L 119.2 73.6C 118.764 72.2919 118.908 72.436 117.6 72z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 334.4 72L 334.4 73.6L 336 73.6C 335.564 72.2919 335.708 72.436 334.4 72z"/>
<path style="stroke:none; fill:#a17979" d="M 119.2 72.8L 120 73.6L 119.2 72.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 336 73.6L 336.8 74.4L 336 73.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 50.4 75.2L 51.2 76L 50.4 75.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 120.8 75.2L 121.6 76L 120.8 75.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 337.6 75.2L 338.4 76L 337.6 75.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 339.2 76L 340 76.8L 339.2 76z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 48.8 76.8L 49.6 77.6L 48.8 76.8M 339.734 77.0667C 339.378 77.4222 340.222 77.3778 340.266 77.3334C 340.622 76.9778 339.778 77.0222 339.734 77.0667z"/>
<path style="stroke:none; fill:#ad9292" d="M 123.2 77.6L 124 78.4L 123.2 77.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 340.8 77.6L 341.6 78.4L 340.8 77.6z"/>
<path style="stroke:none; fill:#c5aeae" d="M 124 78.4L 124.8 79.2L 124 78.4z"/>
<path style="stroke:none; fill:#dedede" d="M 47.2 79.2C 46.4114 80.3832 46.4 80.1624 46.4 81.6C 47.4314 80.4456 47.5208 80.6128 47.2 79.2z"/>
<path style="stroke:none; fill:#a17979" d="M 124.8 79.2L 125.6 80L 124.8 79.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 343.2 80L 344 80.8L 343.2 80z"/>
<path style="stroke:none; fill:#927777" d="M 125.6 80.8L 126.4 81.6L 125.6 80.8z"/>
<path style="stroke:none; fill:#a17979" d="M 344.8 80.8L 345.6 81.6L 344.8 80.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 45.6 81.6L 46.4 82.4L 45.6 81.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 125.6 81.6L 126.4 82.4L 125.6 81.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 345.6 81.6L 346.4 82.4L 345.6 81.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 126.4 82.4C 126.725 84.0736 126.574 84.016 128 84.8C 127.447 83.6888 127.213 83.3112 126.4 82.4M 345.6 82.4L 346.4 83.2L 345.6 82.4z"/>
<path style="stroke:none; fill:#dedede" d="M 45.0666 83.7336C 45.0222 83.7776 44.9778 84.6224 45.3334 84.2664C 45.3778 84.2224 45.4222 83.3776 45.0666 83.7336z"/>
<path style="stroke:none; fill:#ad9292" d="M 347.2 83.2L 348 84L 347.2 83.2M 44 84L 44.8 84.8L 44 84z"/>
<path style="stroke:none; fill:#a17979" d="M 348 84L 348.8 84.8L 348 84z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 44 84.8L 44 87.2L 44.8 87.2C 44.599 86.0384 44.5478 85.7984 44 84.8z"/>
<path style="stroke:none; fill:#dedede" d="M 127.2 84.8L 127.2 87.2L 128 87.2C 127.799 86.0384 127.748 85.7984 127.2 84.8z"/>
<path style="stroke:none; fill:#a17979" d="M 349.6 85.6L 350.4 86.4L 349.6 85.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 43.2 86.4L 44 87.2L 43.2 86.4M 128 86.4L 128.8 87.2L 128 86.4z"/>
<path style="stroke:none; fill:#905d5d" d="M 128.8 87.2L 128.8 89.6L 129.6 89.6C 129.399 88.4392 129.348 88.1984 128.8 87.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 352 88.8L 352.8 89.6L 352 88.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 42.6666 90.1336C 42.6222 90.1776 42.5778 91.0224 42.9334 90.6664C 42.9778 90.6224 43.0222 89.7776 42.6666 90.1336M 129.066 90.1336C 129.022 90.1776 128.978 91.0224 129.334 90.6664C 129.378 90.6224 129.422 89.7776 129.066 90.1336z"/>
<path style="stroke:none; fill:#a17979" d="M 41.6 90.4L 41.6 94.4L 42.4 94.4C 42.3299 92.8288 42.2231 91.8152 41.6 90.4M 129.6 90.4L 130.4 91.2L 129.6 90.4z"/>
<path style="stroke:none; fill:#dedede" d="M 129.6 91.2L 129.6 93.6L 130.4 93.6C 130.199 92.4384 130.148 92.1984 129.6 91.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 354.4 91.2L 355.2 92L 354.4 91.2z"/>
<path style="stroke:none; fill:#dedede" d="M 355.466 92.5336C 355.422 92.5776 355.378 93.4224 355.734 93.0664C 355.778 93.0224 355.822 92.1776 355.466 92.5336z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 356 92.8L 356.8 93.6L 356 92.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 129.6 93.6L 129.6 103.2L 130.4 103.2C 130.4 100.014 130.842 96.5584 129.6 93.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 41.6 94.4L 41.6 101.6L 42.4 101.6C 42.3986 99.0992 42.5703 96.712 41.6 94.4z"/>
<path style="stroke:none; fill:#905d5d" d="M 130.4 95.2L 130.4 99.2L 131.2 99.2C 131.13 97.6288 131.023 96.6152 130.4 95.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 357.6 95.2L 358.4 96L 357.6 95.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 360 97.6L 360.8 98.4L 360 97.6z"/>
<path style="stroke:none; fill:#a17979" d="M 360.8 98.4L 361.6 99.2L 360.8 98.4z"/>
<path style="stroke:none; fill:#ad9292" d="M 361.6 99.2L 362.4 100L 361.6 99.2z"/>
<path style="stroke:none; fill:#dedede" d="M 361.6 100C 362.147 101.264 362.244 101.422 363.2 102.4C 362.653 101.136 362.556 100.978 361.6 100z"/>
<path style="stroke:none; fill:#a17979" d="M 41.8666 102.134C 41.8222 102.178 41.7778 103.022 42.1334 102.666C 42.1778 102.622 42.2222 101.778 41.8666 102.134z"/>
<path style="stroke:none; fill:#9f9191" d="M 363.2 101.6L 364 102.4L 363.2 101.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 363.2 102.4L 364 103.2L 363.2 102.4z"/>
<path style="stroke:none; fill:#927777" d="M 364 102.4L 364.8 103.2L 364 102.4z"/>
<path style="stroke:none; fill:#c29494" d="M 41.6 103.2L 41.6 105.6L 42.4 105.6C 42.199 104.438 42.1478 104.198 41.6 103.2z"/>
<path style="stroke:none; fill:#dedede" d="M 129.866 103.734C 129.822 103.778 129.778 104.622 130.134 104.266C 130.178 104.222 130.222 103.378 129.866 103.734M 364.266 103.734C 364.222 103.778 364.178 104.622 364.534 104.266C 364.578 104.222 364.622 103.378 364.266 103.734z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 364.8 104L 365.6 104.8L 364.8 104z"/>
<path style="stroke:none; fill:#c5aeae" d="M 129.6 104.8L 130.4 105.6L 129.6 104.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 42.6666 106.134C 42.6222 106.178 42.5778 107.022 42.9334 106.666C 42.9778 106.622 43.0222 105.778 42.6666 106.134z"/>
<path style="stroke:none; fill:#dedede" d="M 43.2 105.6C 43.3344 107.522 43.3575 108.368 44.8 109.6C 44.3595 108.14 43.9392 106.918 43.2 105.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 129.066 106.134C 129.022 106.178 128.978 107.022 129.334 106.666C 129.378 106.622 129.422 105.778 129.066 106.134z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 365.6 105.6L 366.4 106.4L 365.6 105.6M 366.666 106.934C 366.622 106.978 366.578 107.822 366.934 107.466C 366.978 107.422 367.022 106.578 366.666 106.934z"/>
<path style="stroke:none; fill:#a17979" d="M 367.2 107.2L 368 108L 367.2 107.2z"/>
<path style="stroke:none; fill:#dedede" d="M 367.466 108.534C 367.422 108.578 367.378 109.422 367.734 109.066C 367.778 109.022 367.822 108.178 367.466 108.534z"/>
<path style="stroke:none; fill:#9f9191" d="M 368 108.8L 368.8 109.6L 368 108.8M 43.2 109.6L 44 110.4L 43.2 109.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 44 109.6L 44 112L 44.8 112C 44.599 110.838 44.5478 110.598 44 109.6z"/>
<path style="stroke:none; fill:#dedede" d="M 127.2 109.6L 127.2 112L 128 112C 127.799 110.838 127.748 110.598 127.2 109.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 128 109.6L 128.8 110.4L 128 109.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 369.866 111.734C 369.822 111.778 369.778 112.622 370.134 112.266C 370.178 112.222 370.222 111.378 369.866 111.734z"/>
<path style="stroke:none; fill:#ad9292" d="M 45.0666 112.534C 45.0222 112.578 44.9778 113.422 45.3334 113.066C 45.3778 113.022 45.4222 112.178 45.0666 112.534z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 126.4 112L 126.4 113.6C 127.708 113.164 127.564 113.308 128 112L 126.4 112z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 370.4 112.8L 371.2 113.6L 370.4 112.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 45.6 114.4L 46.4 115.2L 45.6 114.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 125.6 114.4L 126.4 115.2L 125.6 114.4z"/>
<path style="stroke:none; fill:#dedede" d="M 371.466 114.934C 371.422 114.978 371.378 115.822 371.734 115.466C 371.778 115.422 371.822 114.578 371.466 114.934z"/>
<path style="stroke:none; fill:#a36060" d="M 372.266 114.934C 372.222 114.978 372.178 115.822 372.534 115.466C 372.578 115.422 372.622 114.578 372.266 114.934z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 46.4 115.2C 46.9469 116.464 47.0439 116.622 48 117.6C 47.4531 116.336 47.3562 116.178 46.4 115.2M 125.066 115.734C 125.022 115.778 124.978 116.622 125.334 116.266C 125.378 116.222 125.422 115.378 125.066 115.734z"/>
<path style="stroke:none; fill:#dedede" d="M 124.266 116.534C 124.222 116.578 124.178 117.422 124.534 117.066C 124.578 117.022 124.622 116.178 124.266 116.534z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 372 116L 372.8 116.8L 372 116z"/>
<path style="stroke:none; fill:#dedede" d="M 372.8 116.8L 372.8 119.2L 373.6 119.2C 373.399 118.038 373.348 117.798 372.8 116.8z"/>
<path style="stroke:none; fill:#a17979" d="M 124 117.6L 124.8 118.4L 124 117.6z"/>
<path style="stroke:none; fill:#a36060" d="M 259.2 118.4L 259.2 124.8L 260 124.8C 259.994 122.531 260.078 120.49 259.2 118.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 373.6 118.4L 374.4 119.2L 373.6 118.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 122.4 119.2L 123.2 120L 122.4 119.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 49.6 120L 50.4 120.8L 49.6 120z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 121.6 120L 122.4 120.8L 121.6 120z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 120.8 120.8L 121.6 121.6L 120.8 120.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 374.4 120.8L 375.2 121.6L 374.4 120.8z"/>
<path style="stroke:none; fill:#ad9292" d="M 375.466 121.334C 375.422 121.378 375.378 122.222 375.734 121.866C 375.778 121.822 375.822 120.978 375.466 121.334M 51.2 121.6L 52 122.4L 51.2 121.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 119.2 121.6L 119.2 123.2C 120.508 122.764 120.364 122.908 120.8 121.6L 119.2 121.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 52 122.4L 52.8 123.2L 52 122.4z"/>
<path style="stroke:none; fill:#dedede" d="M 375.2 122.4L 376 125.6L 376.8 125.6C 376.391 124.038 376.214 123.634 375.2 122.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 53.6 123.2L 54.4 124L 53.6 123.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 118.4 123.2L 119.2 124L 118.4 123.2z"/>
<path style="stroke:none; fill:#a17979" d="M 53.6 124L 54.4 124.8L 53.6 124z"/>
<path style="stroke:none; fill:#dedede" d="M 54.9334 124.266C 54.5778 124.622 55.4222 124.578 55.4666 124.534C 55.8222 124.178 54.9778 124.222 54.9334 124.266z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 116 124L 116 125.6C 117.308 125.164 117.164 125.308 117.6 124L 116 124z"/>
<path style="stroke:none; fill:#a17979" d="M 117.6 124L 118.4 124.8L 117.6 124z"/>
<path style="stroke:none; fill:#ad9292" d="M 55.2 124.8L 56 125.6L 55.2 124.8z"/>
<path style="stroke:none; fill:#af6f6f" d="M 259.2 124.8L 259.2 143.2L 260 143.2C 260 137.626 261.363 129.956 259.2 124.8z"/>
<path style="stroke:none; fill:#a17979" d="M 56.8 125.6L 57.6 126.4L 56.8 125.6z"/>
<path style="stroke:none; fill:#dedede" d="M 111.2 126.4L 111.2 127.2C 112.702 127.059 113.759 126.85 115.2 126.4C 113.723 126.026 112.745 126.159 111.2 126.4z"/>
<path style="stroke:none; fill:#a36060" d="M 377.866 126.134C 377.822 126.178 377.778 127.022 378.134 126.666C 378.178 126.622 378.222 125.778 377.866 126.134z"/>
<path style="stroke:none; fill:#ad9292" d="M 57.6 126.4L 58.4 127.2L 57.6 126.4z"/>
<path style="stroke:none; fill:#dedede" d="M 58.4 126.4L 58.4 127.2L 60.8 127.2C 59.8013 126.652 59.5614 126.601 58.4 126.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 60 127.2L 60.8 128L 60 127.2M 111.2 127.2L 112 128L 111.2 127.2M 377.6 127.2L 378.4 128L 377.6 127.2z"/>
<path style="stroke:none; fill:#af6f6f" d="M 60.8 128L 60.8 128.8L 63.2 128.8C 62.2013 128.252 61.9613 128.201 60.8 128z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 63.2 128L 63.2 128.8L 66.4 129.6L 66.4 128.8L 63.2 128z"/>
<path style="stroke:none; fill:#dedede" d="M 65.6 128L 65.6 128.8L 68.8 129.6L 68.8 128.8L 65.6 128z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 105.6 128L 105.6 129.6C 106.908 129.164 106.764 129.308 107.2 128L 105.6 128z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 107.734 128.266C 107.378 128.622 108.222 128.578 108.266 128.534C 108.622 128.178 107.778 128.222 107.734 128.266z"/>
<path style="stroke:none; fill:#af6f6f" d="M 108.8 128L 108.8 128.8L 111.2 128.8C 110.202 128.252 109.962 128.201 108.8 128z"/>
<path style="stroke:none; fill:#9f9191" d="M 297.6 128L 297.6 128.8L 300 129.6C 299.216 128.174 299.274 128.325 297.6 128z"/>
<path style="stroke:none; fill:#ad9292" d="M 378.4 128L 379.2 128.8L 378.4 128z"/>
<path style="stroke:none; fill:#927777" d="M 106.934 129.066C 106.578 129.422 107.422 129.378 107.466 129.334C 107.822 128.978 106.978 129.022 106.934 129.066z"/>
<path style="stroke:none; fill:#dedede" d="M 300 128.8L 300 129.6L 302.4 129.6C 301.402 129.052 301.162 129.001 300 128.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 378.4 128.8L 378.4 131.2L 379.2 131.2C 378.999 130.038 378.948 129.798 378.4 128.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 301.6 129.6L 302.4 130.4L 301.6 129.6M 302.4 130.4L 302.4 131.2L 304.8 132C 304.016 130.574 304.074 130.725 302.4 130.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 379.2 130.4L 380 131.2L 379.2 130.4z"/>
<path style="stroke:none; fill:#dedede" d="M 304.8 131.2L 304.8 132L 307.2 132.8C 306.416 131.374 306.474 131.525 304.8 131.2z"/>
<path style="stroke:none; fill:#a17979" d="M 306.4 132.8L 307.2 133.6L 306.4 132.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 307.734 133.066C 307.378 133.422 308.222 133.378 308.266 133.334C 308.622 132.978 307.778 133.022 307.734 133.066z"/>
<path style="stroke:none; fill:#9f9191" d="M 380 132.8L 380.8 133.6L 380 132.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 380 133.6L 380.8 134.4L 380 133.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 310.4 134.4L 311.2 135.2L 310.4 134.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 380.8 134.4L 380.8 136.8L 381.6 136.8C 381.399 135.638 381.348 135.398 380.8 134.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 311.2 135.2L 311.2 136L 313.6 136C 312.602 135.452 312.362 135.401 311.2 135.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 312.8 136L 313.6 136.8L 312.8 136z"/>
<path style="stroke:none; fill:#905d5d" d="M 314.134 137.066C 313.778 137.422 314.622 137.378 314.666 137.334C 315.022 136.978 314.178 137.022 314.134 137.066z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 315.2 136.8L 316 137.6L 315.2 136.8z"/>
<path style="stroke:none; fill:#dedede" d="M 381.6 136.8C 381.734 138.722 381.758 139.568 383.2 140.8C 382.759 139.34 382.339 138.118 381.6 136.8z"/>
<path style="stroke:none; fill:#a17979" d="M 315.2 137.6L 316 138.4L 315.2 137.6z"/>
<path style="stroke:none; fill:#dedede" d="M 316 137.6L 316 138.4L 318.4 139.2C 317.616 137.774 317.674 137.925 316 137.6z"/>
<path style="stroke:none; fill:#a17979" d="M 318.134 139.466C 317.778 139.822 318.622 139.778 318.666 139.734C 319.022 139.378 318.178 139.422 318.134 139.466z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 319.2 139.2L 320 140L 319.2 139.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 382.4 139.2L 383.2 140L 382.4 139.2z"/>
<path style="stroke:none; fill:#dedede" d="M 320 140L 320 140.8L 322.4 140.8C 321.402 140.252 321.162 140.201 320 140z"/>
<path style="stroke:none; fill:#a36060" d="M 383.2 140L 383.2 143.2L 384 143.2C 383.861 141.852 383.746 141.205 383.2 140z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 321.6 140.8L 322.4 141.6L 321.6 140.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 322.4 141.6L 322.4 142.4L 324.8 143.2C 324.016 141.774 324.074 141.925 322.4 141.6z"/>
<path style="stroke:none; fill:#a36060" d="M 259.2 143.2L 259.2 149.6L 260 149.6C 259.994 147.331 260.078 145.29 259.2 143.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 325.6 143.2L 326.4 144L 325.6 143.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 383.2 143.2L 384 144L 383.2 143.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 326.934 144.266C 326.578 144.622 327.422 144.578 327.466 144.534C 327.822 144.178 326.978 144.222 326.934 144.266z"/>
<path style="stroke:none; fill:#c5aeae" d="M 384 144L 384.8 144.8L 384 144z"/>
<path style="stroke:none; fill:#9f9191" d="M 327.2 144.8L 328 145.6L 327.2 144.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 384 144.8L 384 148L 384.8 148C 384.661 146.652 384.546 146.005 384 144.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 328.8 145.6L 329.6 146.4L 328.8 145.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 329.6 146.4L 330.4 147.2L 329.6 146.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 332 148C 332.436 149.308 332.292 149.164 333.6 149.6C 333.164 148.292 333.308 148.436 332 148z"/>
<path style="stroke:none; fill:#dedede" d="M 332.8 148L 333.6 148.8L 332.8 148M 385.066 148.534C 385.022 148.578 384.978 149.422 385.334 149.066C 385.378 149.022 385.422 148.178 385.066 148.534z"/>
<path style="stroke:none; fill:#af6f6f" d="M 259.2 149.6L 259.2 168L 260 168C 260 162.426 261.363 154.756 259.2 149.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 335.2 150.4L 336 151.2L 335.2 150.4z"/>
<path style="stroke:none; fill:#a17979" d="M 335.2 151.2L 336 152L 335.2 151.2z"/>
<path style="stroke:none; fill:#dedede" d="M 336.534 151.466C 336.178 151.822 337.022 151.778 337.066 151.734C 337.422 151.378 336.578 151.422 336.534 151.466z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 336.8 152L 337.6 152.8L 336.8 152M 385.6 152L 385.6 154.4L 386.4 154.4C 386.199 153.238 386.148 152.998 385.6 152M 337.6 152.8L 338.4 153.6L 337.6 152.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 338.4 153.6L 339.2 154.4L 338.4 153.6z"/>
<path style="stroke:none; fill:#c29494" d="M 386.4 153.6L 386.4 158.4L 387.2 158.4C 387.162 156.598 387.099 155.242 386.4 153.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 339.2 154.4L 340 155.2L 339.2 154.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 340 155.2L 340.8 156L 340 155.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 340.8 156L 341.6 156.8L 340.8 156z"/>
<path style="stroke:none; fill:#ad9292" d="M 341.6 156.8L 342.4 157.6L 341.6 156.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 342.4 157.6L 343.2 158.4L 342.4 157.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 386.4 158.4L 386.4 160.8L 387.2 160.8C 386.999 159.638 386.948 159.398 386.4 158.4z"/>
<path style="stroke:none; fill:#927777" d="M 387.2 159.2L 387.2 161.6L 388 161.6C 387.799 160.438 387.748 160.198 387.2 159.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 386.4 160.8C 386.947 162.064 387.044 162.222 388 163.2C 387.453 161.936 387.356 161.778 386.4 160.8z"/>
<path style="stroke:none; fill:#927777" d="M 345.6 161.6L 346.4 162.4L 345.6 161.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 347.2 163.2L 348 164L 347.2 163.2z"/>
<path style="stroke:none; fill:#a17979" d="M 347.2 164L 348 164.8L 347.2 164z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 348 164L 348.8 164.8L 348 164z"/>
<path style="stroke:none; fill:#9f9191" d="M 348 164.8L 348.8 165.6L 348 164.8z"/>
<path style="stroke:none; fill:#dedede" d="M 387.2 165.6L 387.2 179.2L 388 179.2C 388 174.91 388.87 169.579 387.2 165.6z"/>
<path style="stroke:none; fill:#a36060" d="M 63.2 167.2L 63.2 168L 66.4 168C 65.1951 167.454 64.5482 167.339 63.2 167.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 66.4 167.2L 66.4 168L 105.6 168C 95.4784 163.753 77.4303 167.2 66.4 167.2z"/>
<path style="stroke:none; fill:#905d5d" d="M 105.6 167.2L 105.6 168L 109.6 168C 108.185 167.377 107.171 167.27 105.6 167.2z"/>
<path style="stroke:none; fill:#c5aeae" d="M 349.6 167.2L 350.4 168L 349.6 167.2z"/>
<path style="stroke:none; fill:#dedede" d="M 59.2 170.4C 61.0118 169.807 62.0376 169.474 63.2 168C 61.2851 168.518 60.371 168.826 59.2 170.4z"/>
<path style="stroke:none; fill:#ffffff" d="M 63.5395 168.58C 39.9672 176.025 34.9018 207.915 53.705 223.522C 63.917 231.998 81.264 228.8 93.6 228.8C 98.7912 228.8 104.597 229.541 109.599 227.968C 131.356 221.127 136.616 190.619 120.469 175.491C 109.496 165.211 94.752 168 80.8 168C 75.407 168 68.7199 166.943 63.5395 168.58z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 109.6 168L 110.4 168.8L 109.6 168z"/>
<path style="stroke:none; fill:#a36060" d="M 259.2 168L 259.2 174.4L 260 174.4C 259.994 172.131 260.078 170.09 259.2 168z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 350.4 168L 351.2 168.8L 350.4 168z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 109.6 168.8L 109.6 169.6L 112.8 169.6C 111.595 169.054 110.948 168.939 109.6 168.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 58.4 169.6L 59.2 170.4L 58.4 169.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 112.8 169.6L 113.6 170.4L 112.8 169.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 351.2 169.6L 352 170.4L 351.2 169.6z"/>
<path style="stroke:none; fill:#dedede" d="M 352.266 170.134C 352.222 170.178 352.178 171.022 352.534 170.666C 352.578 170.622 352.622 169.778 352.266 170.134z"/>
<path style="stroke:none; fill:#927777" d="M 56 170.4L 56.8 171.2L 56 170.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 115.2 170.4L 116 171.2L 115.2 170.4z"/>
<path style="stroke:none; fill:#a17979" d="M 54.4 171.2L 55.2 172L 54.4 171.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 55.7334 171.466C 55.3778 171.822 56.2222 171.778 56.2666 171.734C 56.6222 171.378 55.7778 171.422 55.7334 171.466z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 115.734 171.466C 115.378 171.822 116.222 171.778 116.266 171.734C 116.622 171.378 115.778 171.422 115.734 171.466z"/>
<path style="stroke:none; fill:#ad9292" d="M 116.8 171.2L 117.6 172L 116.8 171.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 352 171.2L 352.8 172L 352 171.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 54.4 172L 55.2 172.8L 54.4 172M 116.8 172L 117.6 172.8L 116.8 172z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 352.8 172L 353.6 174.4L 354.4 174.4C 353.853 173.136 353.756 172.978 352.8 172z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 52.8 172.8L 52 174.4C 53.0102 173.623 53.1135 173.845 52.8 172.8z"/>
<path style="stroke:none; fill:#dedede" d="M 116.8 172.8L 116.8 173.6L 119.2 174.4C 118.416 172.974 118.474 173.125 116.8 172.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 352.8 172.8L 353.6 173.6L 352.8 172.8z"/>
<path style="stroke:none; fill:#dedede" d="M 52.8 173.6L 53.6 174.4L 52.8 173.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 119.2 173.6L 120 174.4L 119.2 173.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 51.2 174.4L 52 175.2L 51.2 174.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 120 174.4L 120.8 175.2L 120 174.4z"/>
<path style="stroke:none; fill:#af6f6f" d="M 259.2 174.4L 259.2 192.8L 260 192.8C 260 187.226 261.363 179.556 259.2 174.4z"/>
<path style="stroke:none; fill:#dedede" d="M 49.6 177.6C 50.7654 176.718 51.1172 176.366 52 175.2C 50.3011 175.919 50.3194 175.901 49.6 177.6M 120.8 175.2C 121.549 176.759 121.914 177.24 123.2 178.4C 122.451 176.841 122.086 176.36 120.8 175.2z"/>
<path style="stroke:none; fill:#a17979" d="M 121.6 175.2L 122.4 176L 121.6 175.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 354.4 175.2L 355.2 176L 354.4 175.2z"/>
<path style="stroke:none; fill:#dedede" d="M 355.2 175.2L 355.2 177.6L 356 177.6C 355.799 176.438 355.748 176.198 355.2 175.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 48.8 176.8L 49.6 177.6L 48.8 176.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 48 177.6L 48.8 178.4L 48 177.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 123.466 178.134C 123.422 178.178 123.378 179.022 123.734 178.666C 123.778 178.622 123.822 177.778 123.466 178.134z"/>
<path style="stroke:none; fill:#a17979" d="M 355.2 177.6L 356 178.4L 355.2 177.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 356 177.6L 356 180L 356.8 180C 356.599 178.838 356.548 178.598 356 177.6M 48 178.4L 48.8 179.2L 48 178.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 124 178.4L 124.8 179.2L 124 178.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 47.2 179.2L 48 180L 47.2 179.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 46.4 180L 47.2 180.8L 46.4 180z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 124.8 180L 125.6 180.8L 124.8 180z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 356.8 180L 357.6 180.8L 356.8 180z"/>
<path style="stroke:none; fill:#dedede" d="M 357.6 180C 357.846 181.698 357.906 182.149 359.2 183.2C 358.723 181.952 358.329 181.102 357.6 180z"/>
<path style="stroke:none; fill:#9f9191" d="M 356.8 180.8L 357.6 181.6L 356.8 180.8z"/>
<path style="stroke:none; fill:#905d5d" d="M 45.0666 182.134C 45.0222 182.178 44.9778 183.022 45.3334 182.666C 45.3778 182.622 45.4222 181.778 45.0666 182.134z"/>
<path style="stroke:none; fill:#dedede" d="M 45.8666 182.134C 45.8222 182.178 45.7778 183.022 46.1334 182.666C 46.1778 182.622 46.2222 181.778 45.8666 182.134z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 125.6 181.6L 126.4 182.4L 125.6 181.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 126.4 181.6L 126.4 184L 127.2 184C 126.999 182.838 126.948 182.598 126.4 181.6z"/>
<path style="stroke:none; fill:#dedede" d="M 387.2 182.4C 386.411 183.583 386.4 183.362 386.4 184.8C 387.431 183.646 387.521 183.813 387.2 182.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 44.8 183.2L 45.6 184L 44.8 183.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 357.6 183.2L 358.4 184L 357.6 183.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 358.4 183.2L 358.4 186.4L 359.2 186.4C 359.061 185.052 358.946 184.405 358.4 183.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 44 184L 44.8 184.8L 44 184z"/>
<path style="stroke:none; fill:#dedede" d="M 127.2 184L 127.2 187.2L 128 187.2C 127.861 185.852 127.746 185.205 127.2 184z"/>
<path style="stroke:none; fill:#a17979" d="M 387.466 184.534C 387.422 184.578 387.378 185.422 387.734 185.066C 387.778 185.022 387.822 184.178 387.466 184.534z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 44.2666 185.334C 44.2222 185.378 44.1778 186.222 44.5334 185.866C 44.5778 185.822 44.6222 184.978 44.2666 185.334z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 386.4 184.8L 386.4 188L 387.2 188C 387.061 186.652 386.946 186.005 386.4 184.8M 43.2 186.4L 44 187.2L 43.2 186.4M 128 186.4L 128.8 187.2L 128 186.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 359.2 186.4L 360 187.2L 359.2 186.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 359.2 187.2L 360 188L 359.2 187.2z"/>
<path style="stroke:none; fill:#c29494" d="M 386.4 188L 386.4 192L 387.2 192C 387.13 190.429 387.023 189.415 386.4 188z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 42.6666 190.134C 42.6222 190.178 42.5778 191.022 42.9334 190.666C 42.9778 190.622 43.0222 189.778 42.6666 190.134z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 128.8 189.6C 129.691 194.401 129.6 199.134 129.6 204L 130.4 204C 130.4 199.422 131.47 193.507 128.8 189.6z"/>
<path style="stroke:none; fill:#a17979" d="M 129.6 190.4L 130.4 191.2L 129.6 190.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 360 190.4L 360.8 191.2L 360 190.4z"/>
<path style="stroke:none; fill:#dedede" d="M 360.8 190.4L 360.8 192.8L 361.6 192.8C 361.399 191.638 361.348 191.398 360.8 190.4z"/>
<path style="stroke:none; fill:#c29494" d="M 41.8666 191.734C 41.8222 191.778 41.7778 192.622 42.1334 192.266C 42.1778 192.222 42.2222 191.378 41.8666 191.734z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 385.6 192L 385.6 194.4L 386.4 194.4C 386.199 193.238 386.148 192.998 385.6 192z"/>
<path style="stroke:none; fill:#a17979" d="M 41.6 192.8L 41.6 195.2L 42.4 195.2C 42.199 194.038 42.1478 193.798 41.6 192.8z"/>
<path style="stroke:none; fill:#a36060" d="M 259.2 192.8L 259.2 199.2L 260 199.2C 259.994 196.931 260.078 194.89 259.2 192.8z"/>
<path style="stroke:none; fill:#dedede" d="M 361.334 194.666C 360.978 195.022 361.822 194.978 361.866 194.934C 362.222 194.578 361.378 194.622 361.334 194.666z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 41.6 195.2L 41.6 201.6L 42.4 201.6C 42.3942 199.332 42.4782 197.29 41.6 195.2M 361.6 195.2L 361.6 197.6L 362.4 197.6C 362.199 196.438 362.148 196.198 361.6 195.2z"/>
<path style="stroke:none; fill:#905d5d" d="M 130.4 196L 130.4 200.8L 131.2 200.8C 131.162 198.998 131.099 197.642 130.4 196z"/>
<path style="stroke:none; fill:#ad9292" d="M 361.866 198.134C 361.822 198.178 361.778 199.022 362.134 198.666C 362.178 198.622 362.222 197.778 361.866 198.134z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 384 197.6L 384 202.4L 384.8 202.4L 385.6 197.6L 384 197.6z"/>
<path style="stroke:none; fill:#927777" d="M 384.8 198.4L 385.6 199.2L 384.8 198.4z"/>
<path style="stroke:none; fill:#af6f6f" d="M 259.2 199.2L 259.2 217.6L 260 217.6C 260 212.026 261.363 204.356 259.2 199.2z"/>
<path style="stroke:none; fill:#c5aeae" d="M 361.866 199.734C 361.822 199.778 361.778 200.622 362.134 200.266C 362.178 200.222 362.222 199.378 361.866 199.734z"/>
<path style="stroke:none; fill:#a36060" d="M 361.866 201.334C 361.822 201.378 361.778 202.222 362.134 201.866C 362.178 201.822 362.222 200.978 361.866 201.334z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 362.666 201.334C 362.622 201.378 362.578 202.222 362.934 201.866C 362.978 201.822 363.022 200.978 362.666 201.334z"/>
<path style="stroke:none; fill:#c29494" d="M 41.6 201.6L 41.6 205.6L 42.4 205.6C 42.3299 204.029 42.2231 203.015 41.6 201.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 362.666 202.934C 362.622 202.978 362.578 203.822 362.934 203.466C 362.978 203.422 363.022 202.578 362.666 202.934M 383.2 202.4L 383.2 204C 384.508 203.564 384.364 203.708 384.8 202.4L 383.2 202.4z"/>
<path style="stroke:none; fill:#927777" d="M 362.4 204L 362.4 206.4L 363.2 206.4C 362.999 205.238 362.948 204.998 362.4 204z"/>
<path style="stroke:none; fill:#debdbd" d="M 129.6 204.8L 130.4 205.6L 129.6 204.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 42.6666 206.134C 42.6222 206.178 42.5778 207.022 42.9334 206.666C 42.9778 206.622 43.0222 205.778 42.6666 206.134z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 129.066 206.134C 129.022 206.178 128.978 207.022 129.334 206.666C 129.378 206.622 129.422 205.778 129.066 206.134z"/>
<path style="stroke:none; fill:#dedede" d="M 381.6 206.4L 381.6 210.4L 382.4 210.4C 382.33 208.829 382.223 207.815 381.6 206.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 382.4 206.4L 383.2 207.2L 382.4 206.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 43.2 209.6L 44 210.4L 43.2 209.6z"/>
<path style="stroke:none; fill:#dedede" d="M 127.2 209.6L 127.2 212.8L 128 212.8C 127.861 211.452 127.746 210.805 127.2 209.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 128 209.6L 128.8 210.4L 128 209.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 44.2666 210.934C 44.2222 210.978 44.1778 211.822 44.5334 211.466C 44.5778 211.422 44.6222 210.578 44.2666 210.934z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 381.066 210.934C 381.022 210.978 380.978 211.822 381.334 211.466C 381.378 211.422 381.422 210.578 381.066 210.934z"/>
<path style="stroke:none; fill:#ad9292" d="M 44 212L 44.8 212.8L 44 212z"/>
<path style="stroke:none; fill:#af6f6f" d="M 381.066 212.534C 381.022 212.578 380.978 213.422 381.334 213.066C 381.378 213.022 381.422 212.178 381.066 212.534z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 44.8 212.8L 45.6 213.6L 44.8 212.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 126.4 212.8L 127.2 213.6L 126.4 212.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 380 212.8L 380.8 213.6L 380 212.8z"/>
<path style="stroke:none; fill:#a36060" d="M 126.666 214.134C 126.622 214.178 126.578 215.022 126.934 214.666C 126.978 214.622 127.022 213.778 126.666 214.134z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 380 213.6L 380.8 214.4L 380 213.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 45.6 214.4L 46.4 215.2L 45.6 214.4z"/>
<path style="stroke:none; fill:#dedede" d="M 46.6666 214.934C 46.6222 214.978 46.5778 215.822 46.9334 215.466C 46.9778 215.422 47.0222 214.578 46.6666 214.934z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 125.6 214.4L 126.4 215.2L 125.6 214.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 46.4 216L 47.2 216.8L 46.4 216z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 124.8 216L 125.6 216.8L 124.8 216z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 379.2 216L 380 216.8L 379.2 216M 47.2 216.8L 48 217.6L 47.2 216.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 124 216.8L 124.8 217.6L 124 216.8z"/>
<path style="stroke:none; fill:#dedede" d="M 378.4 216.8L 378.4 219.2L 379.2 219.2C 378.999 218.039 378.948 217.798 378.4 216.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 48 217.6L 48.8 218.4L 48 217.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 123.2 217.6L 123.2 219.2C 124.508 218.764 124.364 218.908 124.8 217.6L 123.2 217.6z"/>
<path style="stroke:none; fill:#a36060" d="M 259.2 217.6L 259.2 224L 260 224C 259.994 221.731 260.078 219.69 259.2 217.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 48 218.4L 48.8 219.2L 48 218.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 48.8 219.2L 49.6 220L 48.8 219.2M 122.4 219.2L 123.2 220L 122.4 219.2M 377.6 219.2L 378.4 220L 377.6 219.2z"/>
<path style="stroke:none; fill:#dedede" d="M 49.6 220C 50.5782 220.956 50.736 221.053 52 221.6C 51.0218 220.644 50.864 220.547 49.6 220z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 121.6 220L 122.4 220.8L 121.6 220M 120.8 220.8L 121.6 221.6L 120.8 220.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 51.2 221.6L 52 222.4L 51.2 221.6M 120 221.6L 120.8 222.4L 120 221.6M 376.8 221.6L 377.6 222.4L 376.8 221.6M 52 222.4L 52.8 223.2L 52 222.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 118.4 222.4L 118.4 224C 119.708 223.564 119.564 223.708 120 222.4L 118.4 222.4z"/>
<path style="stroke:none; fill:#ad9292" d="M 52.8 223.2L 53.6 224L 52.8 223.2z"/>
<path style="stroke:none; fill:#905d5d" d="M 362.4 223.2L 362.4 225.6L 363.2 225.6C 362.999 224.438 362.948 224.198 362.4 223.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 54.4 224C 55.3782 224.956 55.5361 225.053 56.8 225.6L 56.8 224.8L 54.4 224M 116.8 224L 115.2 224.8L 115.2 225.6C 116.599 225.06 116.846 225.265 116.8 224z"/>
<path style="stroke:none; fill:#af6f6f" d="M 259.2 224C 259.2 230.322 259.871 237.02 258.4 243.2C 261.629 240.378 260.802 227.818 259.2 224z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 375.2 224L 375.2 225.6C 376.508 225.164 376.364 225.308 376.8 224L 375.2 224z"/>
<path style="stroke:none; fill:#a17979" d="M 54.4 224.8L 55.2 225.6L 54.4 224.8z"/>
<path style="stroke:none; fill:#ad9292" d="M 116.8 224.8L 117.6 225.6L 116.8 224.8z"/>
<path style="stroke:none; fill:#927777" d="M 56 225.6L 56.8 226.4L 56 225.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 115.2 225.6L 116 226.4L 115.2 225.6M 362.666 226.134C 362.622 226.178 362.578 227.022 362.934 226.666C 362.978 226.622 363.022 225.778 362.666 226.134z"/>
<path style="stroke:none; fill:#a36060" d="M 375.466 226.134C 375.422 226.178 375.378 227.022 375.734 226.666C 375.778 226.622 375.822 225.778 375.466 226.134z"/>
<path style="stroke:none; fill:#927777" d="M 57.3334 226.666C 56.9778 227.022 57.8222 226.978 57.8666 226.934C 58.2222 226.578 57.3778 226.622 57.3334 226.666z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 58.4 226.4L 59.2 227.2L 58.4 226.4M 112.8 226.4L 113.6 227.2L 112.8 226.4z"/>
<path style="stroke:none; fill:#a36060" d="M 114.134 226.666C 113.778 227.022 114.622 226.978 114.666 226.934C 115.022 226.578 114.178 226.622 114.134 226.666z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 374.4 226.4L 375.2 227.2L 374.4 226.4z"/>
<path style="stroke:none; fill:#dedede" d="M 59.2 227.2L 59.2 228L 64 228.8C 62.3546 227.534 61.29 227.339 59.2 227.2M 109.6 227.2L 109.6 228L 112.8 228C 111.595 227.454 110.948 227.339 109.6 227.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 362.4 227.2L 362.4 229.6L 363.2 229.6C 362.999 228.438 362.948 228.198 362.4 227.2z"/>
<path style="stroke:none; fill:#927777" d="M 374.4 227.2L 375.2 228L 374.4 227.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 61.6 228L 62.4 228.8L 61.6 228z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 108.8 228L 109.6 228.8L 108.8 228z"/>
<path style="stroke:none; fill:#9f9191" d="M 109.6 228L 110.4 228.8L 109.6 228z"/>
<path style="stroke:none; fill:#a36060" d="M 361.6 228L 361.6 230.4L 362.4 230.4C 362.199 229.239 362.148 228.998 361.6 228z"/>
<path style="stroke:none; fill:#a17979" d="M 63.2 228.8L 63.2 229.6L 66.4 229.6C 65.1951 229.054 64.5482 228.939 63.2 228.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 66.4 228.8L 66.4 229.6L 105.6 229.6C 95.4784 225.353 77.4303 228.8 66.4 228.8z"/>
<path style="stroke:none; fill:#a36060" d="M 105.6 228.8L 105.6 229.6L 108 229.6C 107.002 229.052 106.762 229.001 105.6 228.8z"/>
<path style="stroke:none; fill:#c29494" d="M 108 228.8L 108.8 229.6L 108 228.8z"/>
<path style="stroke:none; fill:#dedede" d="M 372.8 228.8L 372.8 231.2L 373.6 231.2C 373.399 230.038 373.348 229.798 372.8 228.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 373.6 228.8L 374.4 229.6L 373.6 228.8z"/>
<path style="stroke:none; fill:#905d5d" d="M 67.2 229.6L 67.2 230.4L 104.8 230.4C 95.0584 226.313 77.812 229.6 67.2 229.6z"/>
<path style="stroke:none; fill:#debdbd" d="M 361.6 230.4L 361.6 232.8L 362.4 232.8C 362.199 231.639 362.148 231.398 361.6 230.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 372 231.2L 372.8 232L 372 231.2z"/>
<path style="stroke:none; fill:#a36060" d="M 372.266 232.534C 372.222 232.578 372.178 233.422 372.534 233.066C 372.578 233.022 372.622 232.178 372.266 232.534z"/>
<path style="stroke:none; fill:#ad9292" d="M 361.866 233.334C 361.822 233.378 361.778 234.222 362.134 233.866C 362.178 233.822 362.222 232.978 361.866 233.334z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 361.6 234.4L 360.8 238.4L 361.6 238.4C 362.074 236.676 362.219 236.035 361.6 234.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 369.866 235.734C 369.822 235.778 369.778 236.622 370.134 236.266C 370.178 236.222 370.222 235.378 369.866 235.734z"/>
<path style="stroke:none; fill:#a17979" d="M 370.4 235.2L 371.2 236L 370.4 235.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 369.6 236.8L 370.4 237.6L 369.6 236.8z"/>
<path style="stroke:none; fill:#a17979" d="M 368.8 237.6L 369.6 238.4L 368.8 237.6z"/>
<path style="stroke:none; fill:#dedede" d="M 367.466 239.734C 367.422 239.778 367.378 240.622 367.734 240.266C 367.778 240.222 367.822 239.378 367.466 239.734z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 368 239.2L 368.8 240L 368 239.2M 223.2 240.8L 223.2 241.6C 225.48 241.583 227.417 241.448 229.6 240.8C 227.483 240.148 225.419 240.63 223.2 240.8z"/>
<path style="stroke:none; fill:#dedede" d="M 228.8 240.8L 228.8 241.6C 233.343 240.757 237.794 240.8 242.4 240.8C 238.542 239.182 232.759 239.63 228.8 240.8M 246.666 240.534C 246.622 240.578 246.578 241.422 246.934 241.066C 246.978 241.022 247.022 240.178 246.666 240.534z"/>
<path style="stroke:none; fill:#927777" d="M 247.734 240.266C 247.378 240.622 248.222 240.578 248.266 240.534C 248.622 240.178 247.778 240.222 247.734 240.266z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 247.2 240.8L 247.2 241.6L 249.6 241.6C 248.602 241.052 248.362 241.001 247.2 240.8z"/>
<path style="stroke:none; fill:#c5aeae" d="M 249.6 240.8L 249.6 241.6L 252.8 241.6C 251.595 241.054 250.948 240.939 249.6 240.8z"/>
<path style="stroke:none; fill:#dedede" d="M 360.8 240.8L 360.8 244.8L 361.6 244.8C 361.53 243.229 361.423 242.215 360.8 240.8z"/>
<path style="stroke:none; fill:#ad9292" d="M 367.2 240.8L 368 241.6L 367.2 240.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 222.134 241.866C 221.778 242.222 222.622 242.178 222.666 242.134C 223.022 241.778 222.178 241.822 222.134 241.866z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 253.334 241.866C 252.978 242.222 253.822 242.178 253.866 242.134C 254.222 241.778 253.378 241.822 253.334 241.866z"/>
<path style="stroke:none; fill:#9f9191" d="M 366.4 241.6L 367.2 242.4L 366.4 241.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 216.8 244C 218.064 243.453 218.222 243.356 219.2 242.4C 217.936 242.947 217.778 243.044 216.8 244z"/>
<path style="stroke:none; fill:#dedede" d="M 220 242.4L 220 243.2L 223.2 243.2C 221.995 242.654 221.348 242.539 220 242.4M 252.8 242.4L 252.8 243.2L 257.6 244C 256.213 242.398 254.916 242.462 252.8 242.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 257.6 242.4C 258.384 243.826 258.326 243.675 260 244L 260 243.2L 257.6 242.4z"/>
<path style="stroke:none; fill:#9f9191" d="M 360 242.4L 360 244.8L 360.8 244.8C 360.599 243.639 360.548 243.398 360 242.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 365.6 242.4L 366.4 243.2L 365.6 242.4z"/>
<path style="stroke:none; fill:#af6f6f" d="M 214.4 243.2L 214.4 244L 216.8 244C 215.802 243.452 215.562 243.401 214.4 243.2z"/>
<path style="stroke:none; fill:#dedede" d="M 365.066 243.734C 365.022 243.778 364.978 244.622 365.334 244.266C 365.378 244.222 365.422 243.378 365.066 243.734z"/>
<path style="stroke:none; fill:#9f9191" d="M 365.6 243.2L 366.4 244L 365.6 243.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 213.6 244L 214.4 244.8L 213.6 244z"/>
<path style="stroke:none; fill:#a17979" d="M 210.4 244.8L 211.2 245.6L 210.4 244.8z"/>
<path style="stroke:none; fill:#dedede" d="M 211.2 244.8L 211.2 245.6L 214.4 245.6C 213.195 245.054 212.548 244.939 211.2 244.8z"/>
<path style="stroke:none; fill:#905d5d" d="M 359.2 244.8L 359.2 248.8L 360 248.8C 359.93 247.229 359.823 246.215 359.2 244.8z"/>
<path style="stroke:none; fill:#a36060" d="M 208 245.6L 208 246.4L 210.4 246.4C 209.402 245.852 209.162 245.801 208 245.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 210.4 245.6L 211.2 246.4L 210.4 245.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 364 245.6L 364.8 246.4L 364 245.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 208 246.4L 208.8 247.2L 208 246.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 363.2 246.4L 364 247.2L 363.2 246.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 205.6 248.8L 208.8 248C 207.163 247.399 206.723 247.475 205.6 248.8z"/>
<path style="stroke:none; fill:#905d5d" d="M 203.734 248.266C 203.378 248.622 204.222 248.578 204.266 248.534C 204.622 248.178 203.778 248.222 203.734 248.266z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 204.8 248L 205.6 248.8L 204.8 248z"/>
<path style="stroke:none; fill:#dedede" d="M 361.866 248.534C 361.822 248.578 361.778 249.422 362.134 249.066C 362.178 249.022 362.222 248.178 361.866 248.534z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 362.4 248L 363.2 248.8L 362.4 248z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 359.2 248.8L 360 252L 360.8 252C 360.323 250.752 359.929 249.902 359.2 248.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 202.134 249.866C 201.778 250.222 202.622 250.178 202.666 250.134C 203.022 249.778 202.178 249.822 202.134 249.866z"/>
<path style="stroke:none; fill:#a17979" d="M 361.6 249.6L 362.4 250.4L 361.6 249.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 200.8 250.4L 201.6 251.2L 200.8 250.4z"/>
<path style="stroke:none; fill:#ad9292" d="M 358.4 250.4L 359.2 251.2L 358.4 250.4M 360.8 250.4L 361.6 251.2L 360.8 250.4z"/>
<path style="stroke:none; fill:#dedede" d="M 198.4 252L 198.4 252.8L 201.6 252C 200.153 251.541 199.945 251.628 198.4 252M 358.4 251.2C 358.947 252.464 359.044 252.622 360 253.6L 360 251.2L 358.4 251.2z"/>
<path style="stroke:none; fill:#a17979" d="M 197.6 252L 198.4 252.8L 197.6 252z"/>
<path style="stroke:none; fill:#927777" d="M 196.8 252.8L 197.6 253.6L 196.8 252.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 358.4 252.8L 359.2 253.6L 358.4 252.8z"/>
<path style="stroke:none; fill:#dedede" d="M 195.2 255.2C 196.464 254.653 196.622 254.556 197.6 253.6C 196.336 254.147 196.178 254.244 195.2 255.2z"/>
<path style="stroke:none; fill:#af6f6f" d="M 194.4 254.4L 195.2 255.2L 194.4 254.4z"/>
<path style="stroke:none; fill:#927777" d="M 193.6 255.2L 194.4 256L 193.6 255.2z"/>
<path style="stroke:none; fill:#dedede" d="M 190.4 259.2C 192.286 258.317 193.101 257.635 194.4 256C 192.514 256.883 191.699 257.565 190.4 259.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 189.6 259.2L 190.4 260L 189.6 259.2M 188 260.8L 188.8 261.6L 188 260.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 187.2 261.6L 188 262.4L 187.2 261.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 185.6 263.2L 186.4 264L 185.6 263.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 184 264.8L 184.8 265.6L 184 264.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 182.4 267.2L 183.2 268L 182.4 267.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 181.6 268L 182.4 268.8L 181.6 268z"/>
<path style="stroke:none; fill:#a17979" d="M 180.8 268.8L 181.6 269.6L 180.8 268.8z"/>
<path style="stroke:none; fill:#dedede" d="M 181.6 268.8C 180.811 269.983 180.8 269.762 180.8 271.2C 181.831 270.046 181.921 270.213 181.6 268.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 180 270.4L 180.8 271.2L 180 270.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 179.2 272L 180 272.8L 179.2 272z"/>
<path style="stroke:none; fill:#dedede" d="M 178.4 272.8L 177.6 276L 178.4 276C 178.772 274.455 178.859 274.247 178.4 272.8z"/>
<path style="stroke:none; fill:#905d5d" d="M 67.2 273.6L 67.2 274.4L 104 274.4C 94.4488 270.392 77.6028 273.6 67.2 273.6z"/>
<path style="stroke:none; fill:#9f9191" d="M 177.6 273.6L 178.4 274.4L 177.6 273.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 63.2 274.4L 63.2 275.2L 66.4 275.2C 65.1951 274.654 64.5482 274.539 63.2 274.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 66.4 274.4L 66.4 275.2L 108.8 275.2C 104.825 273.532 99.48 274.4 95.2 274.4L 66.4 274.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 62.1334 275.466C 61.7778 275.822 62.6222 275.778 62.6666 275.734C 63.0222 275.378 62.1778 275.422 62.1334 275.466z"/>
<path style="stroke:none; fill:#ffffff" d="M 130.4 298.4C 124.021 290.719 124.054 282 113.464 277.437C 105.944 274.195 97.612 275.2 89.6 275.2C 81.7168 275.2 71.8766 273.615 64.2284 275.567C 47.1736 279.921 38.0442 299.565 43.5247 315.999C 50.6282 337.302 70.3769 336 88.8 336C 100.918 336 111.369 336.895 120.959 328.172C 130.306 319.67 128.358 309.398 130.4 298.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 109.334 275.466C 108.978 275.822 109.822 275.778 109.866 275.734C 110.222 275.378 109.378 275.422 109.334 275.466z"/>
<path style="stroke:none; fill:#927777" d="M 176.8 275.2L 177.6 276L 176.8 275.2z"/>
<path style="stroke:none; fill:#dedede" d="M 59.2 277.6L 63.2 276.8C 61.3597 276.067 60.4986 276.097 59.2 277.6M 109.6 276L 109.6 276.8L 112.8 276.8C 111.595 276.254 110.948 276.139 109.6 276z"/>
<path style="stroke:none; fill:#9f9191" d="M 112.8 276C 113.584 277.426 113.526 277.275 115.2 277.6L 115.2 276.8L 112.8 276M 56.8 276.8L 56.8 277.6L 59.2 277.6C 58.2014 277.052 57.9612 277.001 56.8 276.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 176.266 277.334C 176.222 277.378 176.178 278.222 176.534 277.866C 176.578 277.822 176.622 276.978 176.266 277.334z"/>
<path style="stroke:none; fill:#9f9191" d="M 56 277.6L 56.8 278.4L 56 277.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 115.2 277.6L 116 278.4L 115.2 277.6z"/>
<path style="stroke:none; fill:#a17979" d="M 175.2 277.6L 176 278.4L 175.2 277.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 54.4 278.4L 55.2 279.2L 54.4 278.4z"/>
<path style="stroke:none; fill:#dedede" d="M 55.7334 278.666C 55.3778 279.022 56.2222 278.978 56.2666 278.934C 56.6222 278.578 55.7778 278.622 55.7334 278.666M 115.2 278.4L 115.2 279.2L 117.6 280C 116.816 278.574 116.874 278.725 115.2 278.4M 175.2 278.4L 174.4 281.6L 175.2 281.6L 176.8 278.4L 175.2 278.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 54.4 279.2L 55.2 280L 54.4 279.2z"/>
<path style="stroke:none; fill:#a17979" d="M 117.6 279.2L 118.4 280L 117.6 279.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 52.8 280L 53.6 280.8L 52.8 280z"/>
<path style="stroke:none; fill:#dedede" d="M 52.5334 281.066C 52.1778 281.422 53.0222 281.378 53.0666 281.334C 53.4222 280.978 52.5778 281.022 52.5334 281.066z"/>
<path style="stroke:none; fill:#a17979" d="M 120 280.8L 120.8 281.6L 120 280.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 51.2 281.6L 52 282.4L 51.2 281.6M 120 281.6L 120.8 282.4L 120 281.6z"/>
<path style="stroke:none; fill:#dedede" d="M 49.6 284.8C 50.7653 283.918 51.1173 283.566 52 282.4C 50.3011 283.119 50.3194 283.101 49.6 284.8z"/>
<path style="stroke:none; fill:#a17979" d="M 121.6 282.4L 122.4 283.2L 121.6 282.4z"/>
<path style="stroke:none; fill:#c29494" d="M 172.8 282.4L 172.8 284C 174.108 283.564 173.964 283.708 174.4 282.4L 172.8 282.4z"/>
<path style="stroke:none; fill:#af6f6f" d="M 122.4 283.2L 123.2 284L 122.4 283.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 48.8 284L 49.6 284.8L 48.8 284z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 122.4 284L 123.2 284.8L 122.4 284M 173.066 284.534C 173.022 284.578 172.978 285.422 173.334 285.066C 173.378 285.022 173.422 284.178 173.066 284.534M 48.2666 285.334C 48.2222 285.378 48.1778 286.222 48.5334 285.866C 48.5778 285.822 48.6222 284.978 48.2666 285.334z"/>
<path style="stroke:none; fill:#dedede" d="M 123.466 285.334C 123.422 285.378 123.378 286.222 123.734 285.866C 123.778 285.822 123.822 284.978 123.466 285.334z"/>
<path style="stroke:none; fill:#927777" d="M 172 284.8L 172.8 285.6L 172 284.8z"/>
<path style="stroke:none; fill:#a17979" d="M 47.2 285.6L 48 286.4L 47.2 285.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 124 285.6L 124.8 286.4L 124 285.6z"/>
<path style="stroke:none; fill:#dedede" d="M 172 285.6L 172 288.8L 172.8 288.8L 173.6 285.6L 172 285.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 47.2 286.4L 48 287.2L 47.2 286.4z"/>
<path style="stroke:none; fill:#dedede" d="M 46.4 287.2L 45.6 290.4L 46.4 290.4L 48 287.2L 46.4 287.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 171.2 288L 172 288.8L 171.2 288z"/>
<path style="stroke:none; fill:#ad9292" d="M 126.4 288.8L 126.4 291.2L 127.2 291.2C 126.999 290.038 126.948 289.798 126.4 288.8z"/>
<path style="stroke:none; fill:#a36060" d="M 170.4 288.8L 170.4 291.2L 171.2 291.2C 170.999 290.038 170.948 289.798 170.4 288.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 44.8 290.4L 45.6 291.2L 44.8 290.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 44 291.2L 44 293.6L 44.8 293.6L 45.6 291.2L 44 291.2z"/>
<path style="stroke:none; fill:#dedede" d="M 127.2 291.2L 127.2 293.6L 128 293.6C 127.799 292.438 127.748 292.198 127.2 291.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 170.666 291.734C 170.622 291.778 170.578 292.622 170.934 292.266C 170.978 292.222 171.022 291.378 170.666 291.734z"/>
<path style="stroke:none; fill:#c5aeae" d="M 169.6 292.8L 170.4 293.6L 169.6 292.8z"/>
<path style="stroke:none; fill:#dedede" d="M 128.266 294.134C 128.222 294.178 128.178 295.022 128.534 294.666C 128.578 294.622 128.622 293.778 128.266 294.134z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 169.6 293.6L 168.8 301.6L 169.6 301.6C 170.262 298.817 170.722 296.28 169.6 293.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 128.8 296C 129.125 297.674 128.974 297.616 130.4 298.4C 129.847 297.29 129.612 296.911 128.8 296z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 42.6666 297.334C 42.6222 297.378 42.5778 298.222 42.9334 297.866C 42.9778 297.822 43.0222 296.978 42.6666 297.334z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 169.066 298.134C 169.022 298.178 168.978 299.022 169.334 298.666C 169.378 298.622 169.422 297.778 169.066 298.134z"/>
<path style="stroke:none; fill:#c29494" d="M 41.8666 298.934C 41.8222 298.978 41.7778 299.822 42.1334 299.466C 42.1778 299.422 42.2222 298.578 41.8666 298.934z"/>
<path style="stroke:none; fill:#dedede" d="M 296 299.2L 295.2 302.4C 296.525 301.277 296.601 300.837 296 299.2z"/>
<path style="stroke:none; fill:#a17979" d="M 41.8666 300.534C 41.8222 300.578 41.7778 301.422 42.1334 301.066C 42.1778 301.022 42.2222 300.178 41.8666 300.534z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 129.6 300L 129.6 310.4L 130.4 310.4C 130.4 306.99 130.929 303.167 129.6 300z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 41.6 301.6L 41.6 308.8L 42.4 308.8C 42.3986 306.299 42.5703 303.912 41.6 301.6z"/>
<path style="stroke:none; fill:#a36060" d="M 168.266 302.134C 168.222 302.178 168.178 303.022 168.534 302.666C 168.578 302.622 168.622 301.778 168.266 302.134z"/>
<path style="stroke:none; fill:#905d5d" d="M 130.4 302.4L 130.4 308L 131.2 308C 131.185 305.966 131.188 304.266 130.4 302.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 295.2 302.4L 295.2 308.8L 296 308.8C 295.994 306.532 296.078 304.49 295.2 302.4z"/>
<path style="stroke:none; fill:#927777" d="M 296.266 302.934C 296.222 302.978 296.178 303.822 296.534 303.466C 296.578 303.422 296.622 302.578 296.266 302.934z"/>
<path style="stroke:none; fill:#a36060" d="M 168 306.4L 168 310.4L 168.8 310.4C 168.73 308.829 168.623 307.815 168 306.4z"/>
<path style="stroke:none; fill:#a17979" d="M 41.6 308.8L 41.6 312.8L 42.4 312.8C 42.3299 311.229 42.2231 310.215 41.6 308.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 294.666 309.334C 294.622 309.378 294.578 310.222 294.934 309.866C 294.978 309.822 295.022 308.978 294.666 309.334z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 168.8 310.4L 168.8 312.8L 169.6 312.8C 169.399 311.638 169.348 311.398 168.8 310.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 169.6 311.2L 169.6 316L 170.4 316C 170.362 314.198 170.299 312.842 169.6 311.2z"/>
<path style="stroke:none; fill:#c5aeae" d="M 129.6 312L 130.4 312.8L 129.6 312z"/>
<path style="stroke:none; fill:#9f9191" d="M 42.6666 313.334C 42.6222 313.378 42.5778 314.222 42.9334 313.866C 42.9778 313.822 43.0222 312.978 42.6666 313.334z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 129.066 313.334C 129.022 313.378 128.978 314.222 129.334 313.866C 129.378 313.822 129.422 312.978 129.066 313.334z"/>
<path style="stroke:none; fill:#905d5d" d="M 169.066 313.334C 169.022 313.378 168.978 314.222 169.334 313.866C 169.378 313.822 169.422 312.978 169.066 313.334z"/>
<path style="stroke:none; fill:#dedede" d="M 292.8 312.8L 292.8 316L 293.6 316L 294.4 312.8L 292.8 312.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 128 316L 128.8 316.8L 128 316z"/>
<path style="stroke:none; fill:#dedede" d="M 169.6 316C 169.925 317.674 169.774 317.616 171.2 318.4C 170.647 317.29 170.412 316.911 169.6 316z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 292 316L 292 317.6C 293.308 317.164 293.164 317.308 293.6 316L 292 316z"/>
<path style="stroke:none; fill:#9f9191" d="M 43.2 316.8L 44 317.6L 43.2 316.8z"/>
<path style="stroke:none; fill:#dedede" d="M 127.2 316.8L 127.2 319.2L 128 319.2C 127.799 318.038 127.748 317.798 127.2 316.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 128 316.8L 128.8 317.6L 128 316.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 44.2666 318.134C 44.2222 318.178 44.1778 319.022 44.5334 318.666C 44.5778 318.622 44.6222 317.778 44.2666 318.134z"/>
<path style="stroke:none; fill:#a36060" d="M 292.266 318.134C 292.222 318.178 292.178 319.022 292.534 318.666C 292.578 318.622 292.622 317.778 292.266 318.134z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 170.4 318.4L 170.4 320.8L 171.2 320.8C 170.999 319.638 170.948 319.398 170.4 318.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 291.2 318.4L 292 319.2L 291.2 318.4z"/>
<path style="stroke:none; fill:#a17979" d="M 44 319.2L 44.8 320L 44 319.2z"/>
<path style="stroke:none; fill:#dedede" d="M 44.8 319.2L 45.6 320L 44.8 319.2z"/>
<path style="stroke:none; fill:#ad9292" d="M 127.2 319.2L 128 320L 127.2 319.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 291.2 319.2L 292 320L 291.2 319.2z"/>
<path style="stroke:none; fill:#a17979" d="M 126.666 320.534C 126.622 320.578 126.578 321.422 126.934 321.066C 126.978 321.022 127.022 320.178 126.666 320.534z"/>
<path style="stroke:none; fill:#a36060" d="M 170.4 320.8L 170.4 323.2L 171.2 323.2C 170.999 322.038 170.948 321.798 170.4 320.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 45.6 321.6L 46.4 322.4L 45.6 321.6z"/>
<path style="stroke:none; fill:#dedede" d="M 46.6666 322.134C 46.6222 322.178 46.5778 323.022 46.9334 322.666C 46.9778 322.622 47.0222 321.778 46.6666 322.134z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 125.6 321.6L 126.4 322.4L 125.6 321.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 289.866 322.134C 289.822 322.178 289.778 323.022 290.134 322.666C 290.178 322.622 290.222 321.778 289.866 322.134z"/>
<path style="stroke:none; fill:#9f9191" d="M 290.4 321.6L 291.2 322.4L 290.4 321.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 171.2 322.4L 172 323.2L 171.2 322.4z"/>
<path style="stroke:none; fill:#dedede" d="M 172 322.4C 172.134 324.322 172.158 325.168 173.6 326.4C 173.159 324.94 172.739 323.718 172 322.4z"/>
<path style="stroke:none; fill:#a17979" d="M 46.4 323.2L 47.2 324L 46.4 323.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 124.8 323.2L 125.6 324L 124.8 323.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 171.2 323.2L 172 324L 171.2 323.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 288.8 323.2L 289.6 324L 288.8 323.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 47.2 324L 48 324.8L 47.2 324z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 124 324L 124.8 324.8L 124 324z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 288.8 324L 289.6 324.8L 288.8 324z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 48 324.8L 48.8 325.6L 48 324.8z"/>
<path style="stroke:none; fill:#9f9191" d="M 123.2 324.8L 123.2 326.4C 124.508 325.964 124.364 326.108 124.8 324.8L 123.2 324.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 288 325.6L 288.8 326.4L 288 325.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 48.8 326.4L 49.6 327.2L 48.8 326.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 122.4 326.4L 123.2 327.2L 122.4 326.4z"/>
<path style="stroke:none; fill:#927777" d="M 172 326.4L 172.8 327.2L 172 326.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 173.066 326.934C 173.022 326.978 172.978 327.822 173.334 327.466C 173.378 327.422 173.422 326.578 173.066 326.934z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 287.2 326.4C 286.411 327.583 286.4 327.362 286.4 328.8C 287.431 327.646 287.521 327.813 287.2 326.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 49.6 327.2L 50.4 328L 49.6 327.2M 121.6 327.2L 122.4 328L 121.6 327.2z"/>
<path style="stroke:none; fill:#dedede" d="M 50.9334 328.266C 50.5778 328.622 51.4222 328.578 51.4666 328.534C 51.8222 328.178 50.9778 328.222 50.9334 328.266z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 120 328L 120 329.6C 121.308 329.164 121.164 329.308 121.6 328L 120 328z"/>
<path style="stroke:none; fill:#a17979" d="M 173.066 328.534C 173.022 328.578 172.978 329.422 173.334 329.066C 173.378 329.022 173.422 328.178 173.066 328.534z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 51.2 328.8L 52 329.6L 51.2 328.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 173.6 328.8L 174.4 329.6L 173.6 328.8z"/>
<path style="stroke:none; fill:#a17979" d="M 52 329.6C 52.4361 330.908 52.2918 330.764 53.6 331.2C 53.1639 329.892 53.3082 330.036 52 329.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 52.8 329.6L 53.6 330.4L 52.8 329.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 118.4 329.6L 118.4 331.2C 119.708 330.764 119.564 330.908 120 329.6L 118.4 329.6z"/>
<path style="stroke:none; fill:#927777" d="M 173.6 329.6L 174.4 330.4L 173.6 329.6M 285.6 329.6L 286.4 330.4L 285.6 329.6z"/>
<path style="stroke:none; fill:#dedede" d="M 116.8 330.4L 116.8 332C 118.108 331.564 117.964 331.708 118.4 330.4L 116.8 330.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 284.8 330.4L 285.6 331.2L 284.8 330.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 54.4 331.2L 55.2 332L 54.4 331.2M 174.4 331.2L 175.2 332L 174.4 331.2z"/>
<path style="stroke:none; fill:#dedede" d="M 175.2 331.2C 175.525 332.874 175.374 332.816 176.8 333.6C 176.247 332.49 176.012 332.111 175.2 331.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 284 331.2L 284.8 332L 284 331.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 55.7334 332.266C 55.3778 332.622 56.2222 332.578 56.2666 332.534C 56.6222 332.178 55.7778 332.222 55.7334 332.266z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 115.2 332L 116 332.8L 115.2 332z"/>
<path style="stroke:none; fill:#a36060" d="M 116.534 332.266C 116.178 332.622 117.022 332.578 117.066 332.534C 117.422 332.178 116.578 332.222 116.534 332.266z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 283.2 332L 283.2 333.6C 284.508 333.164 284.364 333.308 284.8 332L 283.2 332z"/>
<path style="stroke:none; fill:#dedede" d="M 56.8 332.8L 56.8 333.6L 59.2 333.6C 58.2013 333.052 57.9613 333.001 56.8 332.8M 112.8 332.8L 112.8 333.6L 115.2 333.6C 114.202 333.052 113.962 333.001 112.8 332.8z"/>
<path style="stroke:none; fill:#a17979" d="M 115.2 332.8L 116 333.6L 115.2 332.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 58.4 333.6L 59.2 334.4L 58.4 333.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 59.2 333.6C 60.3624 335.074 61.3882 335.407 63.2 336C 62.0376 334.526 61.0118 334.193 59.2 333.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 112.8 333.6L 113.6 334.4L 112.8 333.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 176.266 334.134C 176.222 334.178 176.178 335.022 176.534 334.666C 176.578 334.622 176.622 333.778 176.266 334.134z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 282.4 333.6L 283.2 334.4L 282.4 333.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 108.8 336L 112 335.2C 110.363 334.599 109.923 334.675 108.8 336z"/>
<path style="stroke:none; fill:#ad9292" d="M 112 334.4L 112.8 335.2L 112 334.4z"/>
<path style="stroke:none; fill:#927777" d="M 61.6 335.2L 62.4 336L 61.6 335.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 109.6 335.2L 110.4 336L 109.6 335.2z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 281.6 335.2L 282.4 336L 281.6 335.2M 66.4 336L 66.4 336.8L 103.2 336.8C 93.6488 332.792 76.8027 336 66.4 336z"/>
<path style="stroke:none; fill:#927777" d="M 103.2 336L 103.2 336.8L 105.6 336.8C 104.602 336.252 104.362 336.201 103.2 336z"/>
<path style="stroke:none; fill:#ad9292" d="M 280.8 336L 281.6 336.8L 280.8 336z"/>
<path style="stroke:none; fill:#905d5d" d="M 67.2 336.8L 67.2 337.6L 102.4 337.6C 93.2296 333.752 77.1843 336.8 67.2 336.8z"/>
<path style="stroke:none; fill:#dedede" d="M 177.6 336.8C 178.036 338.108 177.892 337.964 179.2 338.4L 179.2 336.8L 177.6 336.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 280 336.8L 280.8 337.6L 280 336.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 279.2 337.6L 280 338.4L 279.2 337.6z"/>
<path style="stroke:none; fill:#ad9292" d="M 178.4 338.4L 179.2 339.2L 178.4 338.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 179.466 338.934C 179.422 338.978 179.378 339.822 179.734 339.466C 179.778 339.422 179.822 338.578 179.466 338.934z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 278.4 338.4L 279.2 339.2L 278.4 338.4z"/>
<path style="stroke:none; fill:#dedede" d="M 277.6 339.2L 278.4 340L 277.6 339.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 276.8 340L 277.6 340.8L 276.8 340M 276 340.8L 276.8 341.6L 276 340.8z"/>
<path style="stroke:none; fill:#ad9292" d="M 180.8 341.6L 181.6 342.4L 180.8 341.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 275.2 341.6L 276 342.4L 275.2 341.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 274.4 342.4L 275.2 343.2L 274.4 342.4z"/>
<path style="stroke:none; fill:#a17979" d="M 182.4 343.2L 183.2 344L 182.4 343.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 183.466 343.734C 183.422 343.778 183.378 344.622 183.734 344.266C 183.778 344.222 183.822 343.378 183.466 343.734z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 273.6 343.2L 274.4 344L 273.6 343.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 272.8 344L 273.6 344.8L 272.8 344z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 184 344.8L 184.8 345.6L 184 344.8z"/>
<path style="stroke:none; fill:#927777" d="M 272 344.8L 272.8 345.6L 272 344.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 185.334 345.866C 184.978 346.222 185.822 346.178 185.866 346.134C 186.222 345.778 185.378 345.822 185.334 345.866M 270.4 345.6L 269.6 347.2C 270.61 346.423 270.714 346.645 270.4 345.6z"/>
<path style="stroke:none; fill:#c29494" d="M 271.2 345.6L 272 346.4L 271.2 345.6z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 185.6 346.4L 186.4 347.2L 185.6 346.4z"/>
<path style="stroke:none; fill:#a17979" d="M 270.4 346.4L 271.2 347.2L 270.4 346.4z"/>
<path style="stroke:none; fill:#927777" d="M 186.4 347.2L 187.2 348L 186.4 347.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 187.2 347.2L 188 348L 187.2 347.2z"/>
<path style="stroke:none; fill:#9f9191" d="M 268.8 347.2L 269.6 348L 268.8 347.2z"/>
<path style="stroke:none; fill:#a17979" d="M 187.2 348L 188 348.8L 187.2 348z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 266.4 349.6L 268.8 348.8C 267.387 348.479 267.554 348.569 266.4 349.6z"/>
<path style="stroke:none; fill:#927777" d="M 267.2 348.8L 268 349.6L 267.2 348.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 190.134 349.866C 189.778 350.222 190.622 350.178 190.666 350.134C 191.022 349.778 190.178 349.822 190.134 349.866z"/>
<path style="stroke:none; fill:#ad9292" d="M 190.4 350.4L 191.2 351.2L 190.4 350.4z"/>
<path style="stroke:none; fill:#dedede" d="M 191.2 350.4C 192.178 351.356 192.336 351.453 193.6 352C 192.622 351.044 192.464 350.947 191.2 350.4M 263.2 350.4L 263.2 351.2L 265.6 351.2C 264.602 350.652 264.361 350.601 263.2 350.4z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 263.2 351.2L 264 352L 263.2 351.2z"/>
<path style="stroke:none; fill:#a17979" d="M 192.534 352.266C 192.178 352.622 193.022 352.578 193.066 352.534C 193.422 352.178 192.578 352.222 192.534 352.266z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 193.6 352L 194.4 352.8L 193.6 352z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 260.8 352L 260.8 353.6C 262.108 353.164 261.964 353.308 262.4 352L 260.8 352z"/>
<path style="stroke:none; fill:#dedede" d="M 194.4 352.8L 194.4 353.6L 196.8 353.6C 195.802 353.052 195.562 353.001 194.4 352.8z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 196 353.6L 196.8 354.4L 196 353.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 258.4 353.6L 259.2 354.4L 258.4 353.6z"/>
<path style="stroke:none; fill:#927777" d="M 259.2 353.6L 260 354.4L 259.2 353.6z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 196.8 354.4L 196.8 355.2L 199.2 356C 198.416 354.574 198.474 354.725 196.8 354.4M 256 356L 258.4 355.2C 256.978 354.436 256.783 354.587 256 356z"/>
<path style="stroke:none; fill:#a17979" d="M 258.4 354.4L 259.2 355.2L 258.4 354.4z"/>
<path style="stroke:none; fill:#dedede" d="M 199.2 355.2L 199.2 356L 201.6 356C 200.602 355.452 200.362 355.401 199.2 355.2z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 200.8 356L 201.6 356.8L 200.8 356z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 253.6 356L 254.4 356.8L 253.6 356z"/>
<path style="stroke:none; fill:#c5aeae" d="M 201.6 356.8L 201.6 357.6L 204.8 358.4C 203.749 357.106 203.298 357.046 201.6 356.8z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 250.4 358.4L 253.6 357.6C 251.963 356.999 251.523 357.075 250.4 358.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 207.2 358.4L 207.2 359.2L 213.6 360.8L 213.6 360C 211.49 359.282 209.39 358.825 207.2 358.4z"/>
<path style="stroke:none; fill:#b7b6b6" d="M 245.6 360L 248 359.2C 246.578 358.436 246.383 358.587 245.6 360z"/>
<path style="stroke:none; fill:#a17979" d="M 208 359.2L 208.8 360L 208 359.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 240.8 360.8L 244 360C 242.363 359.399 241.923 359.475 240.8 360.8z"/>
<path style="stroke:none; fill:#dedede" d="M 244.534 359.466C 244.178 359.822 245.022 359.778 245.066 359.734C 245.422 359.378 244.578 359.422 244.534 359.466z"/>
<path style="stroke:none; fill:#a8a6a6" d="M 241.6 360L 242.4 360.8L 241.6 360z"/>
<path style="stroke:none; fill:#a36060" d="M 213.334 361.066C 212.978 361.422 213.822 361.378 213.866 361.334C 214.222 360.978 213.378 361.022 213.334 361.066z"/>
<path style="stroke:none; fill:#927777" d="M 215.2 360.8L 216 361.6L 215.2 360.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 216.534 361.066C 216.178 361.422 217.022 361.378 217.066 361.334C 217.422 360.978 216.578 361.022 216.534 361.066z"/>
<path style="stroke:none; fill:#9f9191" d="M 236 360.8L 236 362.4C 237.308 361.964 237.164 362.108 237.6 360.8L 236 360.8z"/>
<path style="stroke:none; fill:#af6f6f" d="M 239.734 361.066C 239.378 361.422 240.222 361.378 240.266 361.334C 240.622 360.978 239.778 361.022 239.734 361.066z"/>
<path style="stroke:none; fill:#9f9191" d="M 216.8 361.6L 217.6 362.4L 216.8 361.6z"/>
<path style="stroke:none; fill:#dedede" d="M 224 361.6L 224 362.4L 236 362.4C 232.423 360.899 227.854 361.6 224 361.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 76 KiB

338
svg/prev.svg Normal file
View File

@ -0,0 +1,338 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#9b3b3b" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#adadad" d="M 58.9334 25.8666C 58.5778 26.2222 59.4222 26.1778 59.4666 26.1334C 59.8222 25.7778 58.9778 25.8222 58.9334 25.8666z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 60 25.6L 60 26.4L 62.4 26.4C 61.4013 25.8522 61.1613 25.801 60 25.6z"/>
<path style="stroke:none; fill:#ffffff" d="M 62.4 25.9395C 56.8088 26.6758 51.5343 27.3178 46.4 29.9019C 16.5447 44.9274 25.6 90.2368 25.6 117.6L 25.6 291.2L 25.6 334.4C 25.6 344.505 25.4605 355.81 30.7802 364.8C 43.9914 387.128 74.1133 386.339 96.8 382.961C 138.072 376.814 128 320.63 128 291.2L 128 120.8L 128 76.8C 128 66.6682 128.386 55.7142 123.698 46.4C 112.614 24.3742 83.9864 23.0969 62.4 25.9395z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 90.4 25.6L 90.4 26.4L 94.4 26.4C 92.9848 25.7769 91.9712 25.6701 90.4 25.6z"/>
<path style="stroke:none; fill:#918080" d="M 94.4 25.6L 95.2 26.4L 94.4 25.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 338.934 25.8666C 338.578 26.2222 339.422 26.1778 339.466 26.1334C 339.822 25.7778 338.978 25.8222 338.934 25.8666z"/>
<path style="stroke:none; fill:#dedede" d="M 340 25.6L 340 26.4L 346.4 26.4C 344.31 25.5219 342.269 25.6058 340 25.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 346.4 25.6L 346.4 26.4L 348.8 26.4C 347.802 25.8522 347.562 25.801 346.4 25.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 54.4 26.4L 55.2 27.2L 54.4 26.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 97.6 26.4L 98.4 27.2L 97.6 26.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 98.4 26.4L 99.2 27.2L 98.4 26.4z"/>
<path style="stroke:none; fill:#8d7373" d="M 333.6 26.4L 334.4 27.2L 333.6 26.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 334.4 26.4L 335.2 27.2L 334.4 26.4z"/>
<path style="stroke:none; fill:#ffffff" d="M 335.2 26.7716C 315.82 30.2658 300.089 51.1823 286.4 63.9284C 252.453 95.5384 217.074 125.876 184 158.398C 167.464 174.658 150.114 187.818 154.772 213.6C 157.595 229.228 170.73 238.747 181.6 248.872L 244.8 307.272L 297.6 356.031C 313.316 371.034 328.29 387.103 352 382.828C 389.299 376.103 384 333.6 384 305.6C 384 226.654 387.422 146.86 383.969 68C 382.821 41.7983 362.153 21.912 335.2 26.7716z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 352 26.4L 352.8 27.2L 352 26.4z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 52 27.2L 52.8 28L 52 27.2M 100.8 27.2L 101.6 28L 100.8 27.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 331.2 27.2L 332 28L 331.2 27.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 355.2 27.2L 356 28L 355.2 27.2z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 49.6 28L 50.4 28.8L 49.6 28M 103.2 28L 104 28.8L 103.2 28z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 328.8 28L 329.6 28.8L 328.8 28z"/>
<path style="stroke:none; fill:#948e8e" d="M 357.6 28L 358.4 28.8L 357.6 28z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 327.2 28.8L 328 29.6L 327.2 28.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 359.2 28.8L 360 29.6L 359.2 28.8z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 360.8 29.6L 361.6 30.4L 360.8 29.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 108 30.4L 108.8 31.2L 108 30.4M 324 30.4L 324.8 31.2L 324 30.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 362.4 30.4L 363.2 31.2L 362.4 30.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 43.2 31.2L 44 32L 43.2 31.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 109.6 31.2L 110.4 32L 109.6 31.2z"/>
<path style="stroke:none; fill:#bababa" d="M 322.4 31.2L 323.2 32L 322.4 31.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 364 31.2L 364.8 32L 364 31.2z"/>
<path style="stroke:none; fill:#8d7373" d="M 320.8 32L 321.6 32.8L 320.8 32z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 40.8 32.8L 41.6 33.6L 40.8 32.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 112 32.8L 112.8 33.6L 112 32.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 320 32.8L 320.8 33.6L 320 32.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 366.4 32.8L 367.2 33.6L 366.4 32.8z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 40 33.6L 40.8 34.4L 40 33.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 112.8 33.6L 113.6 34.4L 112.8 33.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 317.6 34.4L 318.4 35.2L 317.6 34.4z"/>
<path style="stroke:none; fill:#adadad" d="M 316.8 35.2L 317.6 36L 316.8 35.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 369.6 35.2L 370.4 36L 369.6 35.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 316 36L 316.8 36.8L 316 36z"/>
<path style="stroke:none; fill:#adadad" d="M 370.4 36L 371.2 36.8L 370.4 36z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 315.2 36.8L 316 37.6L 315.2 36.8z"/>
<path style="stroke:none; fill:#bababa" d="M 371.2 36.8L 372 37.6L 371.2 36.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 372 37.6L 372.8 38.4L 372 37.6z"/>
<path style="stroke:none; fill:#adadad" d="M 372.8 38.4L 373.6 39.2L 372.8 38.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 373.6 39.2L 374.4 40L 373.6 39.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 33.6 40L 34.4 40.8L 33.6 40z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 119.2 40L 120 40.8L 119.2 40z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 32.8 40.8L 33.6 41.6L 32.8 40.8M 120 40.8L 120.8 41.6L 120 40.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 308.8 42.4L 309.6 43.2L 308.8 42.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 376 42.4L 376.8 43.2L 376 42.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 31.2 43.2L 32 44L 31.2 43.2M 121.6 43.2L 122.4 44L 121.6 43.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 308 43.2L 308.8 44L 308 43.2z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 307.2 44L 308 44.8L 307.2 44z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 306.4 44.8L 307.2 45.6L 306.4 44.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 377.6 44.8L 378.4 45.6L 377.6 44.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 305.6 45.6L 306.4 46.4L 305.6 45.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 304.8 46.4L 305.6 47.2L 304.8 46.4M 378.4 46.4L 379.2 47.2L 378.4 46.4z"/>
<path style="stroke:none; fill:#adadad" d="M 28 49.6L 28.8 50.4L 28 49.6z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 124.8 49.6L 125.6 50.4L 124.8 49.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 380 49.6L 380.8 50.4L 380 49.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 380.8 51.2L 381.6 52L 380.8 51.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 27.2 52L 28 52.8L 27.2 52z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 125.6 52L 126.4 52.8L 125.6 52z"/>
<path style="stroke:none; fill:#948e8e" d="M 298.4 52L 299.2 52.8L 298.4 52z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 297.6 52.8L 298.4 53.6L 297.6 52.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 296.8 53.6L 297.6 54.4L 296.8 53.6z"/>
<path style="stroke:none; fill:#adadad" d="M 381.6 53.6L 382.4 54.4L 381.6 53.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 26.4 54.4L 27.2 55.2L 26.4 54.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 126.4 54.4L 127.2 55.2L 126.4 54.4z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 296 54.4L 296.8 55.2L 296 54.4z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 26.4 55.2L 27.2 56L 26.4 55.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 126.4 55.2L 127.2 56L 126.4 55.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 295.2 55.2L 296 56L 295.2 55.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 294.4 56L 295.2 56.8L 294.4 56z"/>
<path style="stroke:none; fill:#918080" d="M 382.4 56L 383.2 56.8L 382.4 56z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 382.4 56.8L 383.2 57.6L 382.4 56.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 25.8666 58.9334C 25.8222 58.9778 25.7778 59.8222 26.1334 59.4666C 26.1778 59.4222 26.2222 58.5778 25.8666 58.9334z"/>
<path style="stroke:none; fill:#adadad" d="M 127.466 58.9334C 127.422 58.9778 127.378 59.8222 127.734 59.4666C 127.778 59.4222 127.822 58.5779 127.466 58.9334z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 25.8666 60.5334C 25.8222 60.5778 25.7778 61.4222 26.1334 61.0667C 26.1778 61.0222 26.2222 60.1778 25.8666 60.5334z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 127.2 60L 127.2 62.4L 128 62.4C 127.799 61.2387 127.748 60.9987 127.2 60z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 383.2 60L 383.2 62.4L 384 62.4C 383.799 61.2387 383.748 60.9987 383.2 60z"/>
<path style="stroke:none; fill:#948e8e" d="M 288 61.6L 288.8 62.4L 288 61.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 287.2 62.4L 288 63.2L 287.2 62.4z"/>
<path style="stroke:none; fill:#dedede" d="M 383.2 62.4L 383.2 64.8L 384 64.8C 383.799 63.6387 383.748 63.3987 383.2 62.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 286.4 63.2L 287.2 64L 286.4 63.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 285.6 64L 286.4 64.8L 285.6 64z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 284.8 64.8L 285.6 65.6L 284.8 64.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 284 65.6L 284.8 66.4L 284 65.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 277.6 71.2L 278.4 72L 277.6 71.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 276.8 72L 277.6 72.8L 276.8 72z"/>
<path style="stroke:none; fill:#adadad" d="M 276 72.8L 276.8 73.6L 276 72.8z"/>
<path style="stroke:none; fill:#bababa" d="M 275.2 73.6L 276 74.4L 275.2 73.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 274.4 74.4L 275.2 75.2L 274.4 74.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 273.6 75.2L 274.4 76L 273.6 75.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 267.2 80.8L 268 81.6L 267.2 80.8z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 266.4 81.6L 267.2 82.4L 266.4 81.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 265.6 82.4L 266.4 83.2L 265.6 82.4z"/>
<path style="stroke:none; fill:#bababa" d="M 264.8 83.2L 265.6 84L 264.8 83.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 264 84L 264.8 84.8L 264 84z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 263.2 84.8L 264 85.6L 263.2 84.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 256.8 90.4L 257.6 91.2L 256.8 90.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 256 91.2L 256.8 92L 256 91.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 255.2 92L 256 92.8L 255.2 92z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 254.4 92.8L 255.2 93.6L 254.4 92.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 253.6 93.6L 254.4 94.4L 253.6 93.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 252.8 94.4L 253.6 95.2L 252.8 94.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 246.4 100L 247.2 100.8L 246.4 100z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 245.6 100.8L 246.4 101.6L 245.6 100.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 244.8 101.6L 245.6 102.4L 244.8 101.6z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 244 102.4L 244.8 103.2L 244 102.4z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 243.2 103.2L 244 104L 243.2 103.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 242.4 104L 243.2 104.8L 242.4 104z"/>
<path style="stroke:none; fill:#948e8e" d="M 236 109.6L 236.8 110.4L 236 109.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 235.2 110.4L 236 111.2L 235.2 110.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 234.4 111.2L 235.2 112L 234.4 111.2z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 233.6 112L 234.4 112.8L 233.6 112z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 232.8 112.8L 233.6 113.6L 232.8 112.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 232 113.6L 232.8 114.4L 232 113.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 225.6 119.2L 226.4 120L 225.6 119.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 224.8 120L 225.6 120.8L 224.8 120z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 224 120.8L 224.8 121.6L 224 120.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 223.2 121.6L 224 122.4L 223.2 121.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 222.4 122.4L 223.2 123.2L 222.4 122.4z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 221.6 123.2L 222.4 124L 221.6 123.2z"/>
<path style="stroke:none; fill:#918080" d="M 215.2 128.8L 216 129.6L 215.2 128.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 214.4 129.6L 215.2 130.4L 214.4 129.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 213.6 130.4L 214.4 131.2L 213.6 130.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 212.8 131.2L 213.6 132L 212.8 131.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 212 132L 212.8 132.8L 212 132z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 211.2 132.8L 212 133.6L 211.2 132.8z"/>
<path style="stroke:none; fill:#918080" d="M 204.8 138.4L 205.6 139.2L 204.8 138.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 204 139.2L 204.8 140L 204 139.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 203.2 140L 204 140.8L 203.2 140z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 202.4 140.8L 203.2 141.6L 202.4 140.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 201.6 141.6L 202.4 142.4L 201.6 141.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 200.8 142.4L 201.6 143.2L 200.8 142.4z"/>
<path style="stroke:none; fill:#8d7373" d="M 194.4 148L 195.2 148.8L 194.4 148z"/>
<path style="stroke:none; fill:#948e8e" d="M 193.6 148.8L 194.4 149.6L 193.6 148.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 192.8 149.6L 193.6 150.4L 192.8 149.6z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 192 150.4L 192.8 151.2L 192 150.4z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 191.2 151.2L 192 152L 191.2 151.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 190.4 152L 191.2 152.8L 190.4 152z"/>
<path style="stroke:none; fill:#8d7373" d="M 184 157.6L 184.8 158.4L 184 157.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 183.2 158.4L 184 159.2L 183.2 158.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 182.4 159.2L 183.2 160L 182.4 159.2z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 181.6 160L 182.4 160.8L 181.6 160z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 180.8 160.8L 181.6 161.6L 180.8 160.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 180 161.6L 180.8 162.4L 180 161.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 179.2 162.4L 180 163.2L 179.2 162.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 172.8 168L 173.6 168.8L 172.8 168z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 172 168.8L 172.8 169.6L 172 168.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 171.2 169.6L 172 170.4L 171.2 169.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 170.4 170.4L 171.2 171.2L 170.4 170.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 169.6 171.2L 170.4 172L 169.6 171.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 168.8 172L 169.6 172.8L 168.8 172z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 163.2 177.6L 164 178.4L 163.2 177.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 162.4 178.4L 163.2 179.2L 162.4 178.4z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 160.8 180.8L 161.6 181.6L 160.8 180.8z"/>
<path style="stroke:none; fill:#8d7373" d="M 160 181.6L 160.8 182.4L 160 181.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 159.2 183.2L 160 184L 159.2 183.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 158.4 184.8L 159.2 185.6L 158.4 184.8M 157.6 186.4L 158.4 187.2L 157.6 186.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 156.8 188L 157.6 188.8L 156.8 188z"/>
<path style="stroke:none; fill:#948e8e" d="M 156 189.6L 156.8 190.4L 156 189.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 155.2 192L 156 192.8L 155.2 192z"/>
<path style="stroke:none; fill:#adadad" d="M 154.4 195.2L 155.2 196L 154.4 195.2z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 153.6 199.2L 153.6 202.4L 154.4 202.4C 154.261 201.052 154.146 200.405 153.6 199.2z"/>
<path style="stroke:none; fill:#dedede" d="M 153.866 206.134C 153.822 206.178 153.778 207.022 154.134 206.666C 154.178 206.622 154.222 205.778 153.866 206.134z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 153.6 207.2L 153.6 209.6L 154.4 209.6C 154.199 208.438 154.148 208.198 153.6 207.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 153.6 209.6L 154.4 210.4L 153.6 209.6z"/>
<path style="stroke:none; fill:#adadad" d="M 154.4 213.6L 155.2 214.4L 154.4 213.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 155.2 216.8L 156 217.6L 155.2 216.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 156 219.2L 156.8 220L 156 219.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 156.8 220.8L 157.6 221.6L 156.8 220.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 157.6 222.4L 158.4 223.2L 157.6 222.4M 158.4 224L 159.2 224.8L 158.4 224z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 159.2 225.6L 160 226.4L 159.2 225.6z"/>
<path style="stroke:none; fill:#8d7373" d="M 160 227.2L 160.8 228L 160 227.2z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 160.8 228L 161.6 228.8L 160.8 228z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 162.4 230.4L 163.2 231.2L 162.4 230.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 163.2 231.2L 164 232L 163.2 231.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 168.8 236.8L 169.6 237.6L 168.8 236.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 169.6 237.6L 170.4 238.4L 169.6 237.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 170.4 238.4L 171.2 239.2L 170.4 238.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 171.2 239.2L 172 240L 171.2 239.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 172 240L 172.8 240.8L 172 240z"/>
<path style="stroke:none; fill:#948e8e" d="M 172.8 240.8L 173.6 241.6L 172.8 240.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 179.2 246.4L 180 247.2L 179.2 246.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 180 247.2L 180.8 248L 180 247.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 180.8 248L 181.6 248.8L 180.8 248z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 181.6 248.8L 182.4 249.6L 181.6 248.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 182.4 249.6L 183.2 250.4L 182.4 249.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 183.2 250.4L 184 251.2L 183.2 250.4z"/>
<path style="stroke:none; fill:#8d7373" d="M 184 251.2L 184.8 252L 184 251.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 190.4 256.8L 191.2 257.6L 190.4 256.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 191.2 257.6L 192 258.4L 191.2 257.6z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 192 258.4L 192.8 259.2L 192 258.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 192.8 259.2L 193.6 260L 192.8 259.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 193.6 260L 194.4 260.8L 193.6 260z"/>
<path style="stroke:none; fill:#8d7373" d="M 194.4 260.8L 195.2 261.6L 194.4 260.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 200.8 266.4L 201.6 267.2L 200.8 266.4z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 201.6 267.2L 202.4 268L 201.6 267.2z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 202.4 268L 203.2 268.8L 202.4 268z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 203.2 268.8L 204 269.6L 203.2 268.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 204 269.6L 204.8 270.4L 204 269.6z"/>
<path style="stroke:none; fill:#918080" d="M 204.8 270.4L 205.6 271.2L 204.8 270.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 211.2 276L 212 276.8L 211.2 276z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 212 276.8L 212.8 277.6L 212 276.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 212.8 277.6L 213.6 278.4L 212.8 277.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 213.6 278.4L 214.4 279.2L 213.6 278.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 214.4 279.2L 215.2 280L 214.4 279.2z"/>
<path style="stroke:none; fill:#918080" d="M 215.2 280L 216 280.8L 215.2 280z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 221.6 285.6L 222.4 286.4L 221.6 285.6z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 222.4 286.4L 223.2 287.2L 222.4 286.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 223.2 287.2L 224 288L 223.2 287.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 224 288L 224.8 288.8L 224 288z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 224.8 288.8L 225.6 289.6L 224.8 288.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 225.6 289.6L 226.4 290.4L 225.6 289.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 232 295.2L 232.8 296L 232 295.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 232.8 296L 233.6 296.8L 232.8 296z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 233.6 296.8L 234.4 297.6L 233.6 296.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 234.4 297.6L 235.2 298.4L 234.4 297.6z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 235.2 298.4L 236 299.2L 235.2 298.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 236 299.2L 236.8 300L 236 299.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 242.4 304.8L 243.2 305.6L 242.4 304.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 243.2 305.6L 244 306.4L 243.2 305.6z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 244 306.4L 244.8 307.2L 244 306.4z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 244.8 307.2L 245.6 308L 244.8 307.2z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 245.6 308L 246.4 308.8L 245.6 308z"/>
<path style="stroke:none; fill:#948e8e" d="M 246.4 308.8L 247.2 309.6L 246.4 308.8z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 252.8 314.4L 253.6 315.2L 252.8 314.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 253.6 315.2L 254.4 316L 253.6 315.2z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 254.4 316L 255.2 316.8L 254.4 316z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 255.2 316.8L 256 317.6L 255.2 316.8z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 256 317.6L 256.8 318.4L 256 317.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 256.8 318.4L 257.6 319.2L 256.8 318.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 263.2 324L 264 324.8L 263.2 324z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 264 324.8L 264.8 325.6L 264 324.8z"/>
<path style="stroke:none; fill:#bababa" d="M 264.8 325.6L 265.6 326.4L 264.8 325.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 265.6 326.4L 266.4 327.2L 265.6 326.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 266.4 327.2L 267.2 328L 266.4 327.2z"/>
<path style="stroke:none; fill:#948e8e" d="M 267.2 328L 268 328.8L 267.2 328z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 273.6 333.6L 274.4 334.4L 273.6 333.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 274.4 334.4L 275.2 335.2L 274.4 334.4z"/>
<path style="stroke:none; fill:#bababa" d="M 275.2 335.2L 276 336L 275.2 335.2z"/>
<path style="stroke:none; fill:#adadad" d="M 276 336L 276.8 336.8L 276 336z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 276.8 336.8L 277.6 337.6L 276.8 336.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 277.6 337.6L 278.4 338.4L 277.6 337.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 284 343.2L 284.8 344L 284 343.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 284.8 344L 285.6 344.8L 284.8 344z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 285.6 344.8L 286.4 345.6L 285.6 344.8z"/>
<path style="stroke:none; fill:#dedede" d="M 383.2 344.8L 383.2 347.2L 384 347.2C 383.799 346.038 383.748 345.798 383.2 344.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 286.4 345.6L 287.2 346.4L 286.4 345.6z"/>
<path style="stroke:none; fill:#dedede" d="M 25.6 346.4L 25.6 348.8L 26.4 348.8C 26.199 347.638 26.1478 347.398 25.6 346.4M 127.2 346.4L 127.2 348.8L 128 348.8C 127.799 347.638 127.748 347.398 127.2 346.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 287.2 346.4L 288 347.2L 287.2 346.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 288 347.2L 288.8 348L 288 347.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 383.2 347.2L 383.2 349.6L 384 349.6C 383.799 348.438 383.748 348.198 383.2 347.2z"/>
<path style="stroke:none; fill:#adadad" d="M 25.8666 349.334C 25.8222 349.378 25.7778 350.222 26.1334 349.866C 26.1778 349.822 26.2222 348.978 25.8666 349.334M 127.2 348.8L 127.2 351.2L 128 351.2C 127.799 350.038 127.748 349.798 127.2 348.8z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 382.4 352L 383.2 352.8L 382.4 352z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 294.4 352.8L 295.2 353.6L 294.4 352.8z"/>
<path style="stroke:none; fill:#918080" d="M 382.4 352.8L 383.2 353.6L 382.4 352.8z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 26.4 353.6L 27.2 354.4L 26.4 353.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 126.4 353.6L 127.2 354.4L 126.4 353.6z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 295.2 353.6L 296 354.4L 295.2 353.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 26.4 354.4L 27.2 355.2L 26.4 354.4z"/>
<path style="stroke:none; fill:#9e9b9b" d="M 126.4 354.4L 127.2 355.2L 126.4 354.4z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 296 354.4L 296.8 355.2L 296 354.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 296.8 355.2L 297.6 356L 296.8 355.2z"/>
<path style="stroke:none; fill:#adadad" d="M 381.6 355.2L 382.4 356L 381.6 355.2z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 297.6 356L 298.4 356.8L 297.6 356z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 27.2 356.8L 28 357.6L 27.2 356.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 125.6 356.8L 126.4 357.6L 125.6 356.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 298.4 356.8L 299.2 357.6L 298.4 356.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 380.8 357.6L 381.6 358.4L 380.8 357.6z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 28 359.2L 28.8 360L 28 359.2M 124.8 359.2L 125.6 360L 124.8 359.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 380 359.2L 380.8 360L 380 359.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 304.8 362.4L 305.6 363.2L 304.8 362.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 305.6 363.2L 306.4 364L 305.6 363.2z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 306.4 364L 307.2 364.8L 306.4 364z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 377.6 364L 378.4 364.8L 377.6 364M 307.2 364.8L 308 365.6L 307.2 364.8z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 31.2 365.6L 32 366.4L 31.2 365.6z"/>
<path style="stroke:none; fill:#adadad" d="M 121.6 365.6L 122.4 366.4L 121.6 365.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 308 365.6L 308.8 366.4L 308 365.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 308.8 366.4L 309.6 367.2L 308.8 366.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 376 366.4L 376.8 367.2L 376 366.4z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 32.8 368L 33.6 368.8L 32.8 368M 120 368L 120.8 368.8L 120 368z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 33.6 368.8L 34.4 369.6L 33.6 368.8z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 119.2 368.8L 120 369.6L 119.2 368.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 373.6 369.6L 374.4 370.4L 373.6 369.6z"/>
<path style="stroke:none; fill:#adadad" d="M 372.8 370.4L 373.6 371.2L 372.8 370.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 372 371.2L 372.8 372L 372 371.2z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 315.2 372L 316 372.8L 315.2 372z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 371.2 372L 372 372.8L 371.2 372z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 316 372.8L 316.8 373.6L 316 372.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 370.4 372.8L 371.2 373.6L 370.4 372.8z"/>
<path style="stroke:none; fill:#adadad" d="M 316.8 373.6L 317.6 374.4L 316.8 373.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 369.6 373.6L 370.4 374.4L 369.6 373.6z"/>
<path style="stroke:none; fill:#948e8e" d="M 317.6 374.4L 318.4 375.2L 317.6 374.4z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 40 375.2L 40.8 376L 40 375.2M 112.8 375.2L 113.6 376L 112.8 375.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 40.8 376L 41.6 376.8L 40.8 376z"/>
<path style="stroke:none; fill:#948e8e" d="M 112 376L 112.8 376.8L 112 376z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 320 376L 320.8 376.8L 320 376z"/>
<path style="stroke:none; fill:#bababa" d="M 366.4 376L 367.2 376.8L 366.4 376z"/>
<path style="stroke:none; fill:#8d7373" d="M 320.8 376.8L 321.6 377.6L 320.8 376.8z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 43.2 377.6L 44 378.4L 43.2 377.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 109.6 377.6L 110.4 378.4L 109.6 377.6z"/>
<path style="stroke:none; fill:#bababa" d="M 322.4 377.6L 323.2 378.4L 322.4 377.6z"/>
<path style="stroke:none; fill:#adadad" d="M 364 377.6L 364.8 378.4L 364 377.6z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 108 378.4L 108.8 379.2L 108 378.4z"/>
<path style="stroke:none; fill:#cdcdcd" d="M 362.4 378.4L 363.2 379.2L 362.4 378.4M 360.8 379.2L 361.6 380L 360.8 379.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 327.2 380L 328 380.8L 327.2 380z"/>
<path style="stroke:none; fill:#c0c0c0" d="M 359.2 380L 360 380.8L 359.2 380z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 49.6 380.8L 50.4 381.6L 49.6 380.8M 103.2 380.8L 104 381.6L 103.2 380.8z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 328.8 380.8L 329.6 381.6L 328.8 380.8z"/>
<path style="stroke:none; fill:#948e8e" d="M 357.6 380.8L 358.4 381.6L 357.6 380.8z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 52 381.6L 52.8 382.4L 52 381.6M 100.8 381.6L 101.6 382.4L 100.8 381.6z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 331.2 381.6L 332 382.4L 331.2 381.6z"/>
<path style="stroke:none; fill:#9f9f9f" d="M 355.2 381.6L 356 382.4L 355.2 381.6M 54.4 382.4L 55.2 383.2L 54.4 382.4z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 97.6 382.4L 98.4 383.2L 97.6 382.4z"/>
<path style="stroke:none; fill:#948e8e" d="M 98.4 382.4L 99.2 383.2L 98.4 382.4z"/>
<path style="stroke:none; fill:#918080" d="M 333.6 382.4L 334.4 383.2L 333.6 382.4z"/>
<path style="stroke:none; fill:#b4b4b4" d="M 334.4 382.4L 335.2 383.2L 334.4 382.4z"/>
<path style="stroke:none; fill:#adadad" d="M 352 382.4L 352.8 383.2L 352 382.4M 58.9334 383.466C 58.5778 383.822 59.4222 383.778 59.4666 383.734C 59.8222 383.378 58.9778 383.422 58.9334 383.466z"/>
<path style="stroke:none; fill:#d2d2d2" d="M 60 383.2L 60 384L 62.4 384C 61.4013 383.452 61.1613 383.401 60 383.2z"/>
<path style="stroke:none; fill:#c6c6c6" d="M 90.4 383.2L 90.4 384L 94.4 384C 92.9848 383.377 91.9712 383.27 90.4 383.2z"/>
<path style="stroke:none; fill:#918080" d="M 94.4 383.2L 95.2 384L 94.4 383.2z"/>
<path style="stroke:none; fill:#adadad" d="M 338.4 383.2L 338.4 384L 340.8 384C 339.802 383.452 339.561 383.401 338.4 383.2z"/>
<path style="stroke:none; fill:#dedede" d="M 340.8 383.2L 340.8 384L 346.4 384C 344.534 383.212 342.834 383.215 340.8 383.2z"/>
<path style="stroke:none; fill:#a9a9a9" d="M 346.4 383.2L 346.4 384L 348.8 384C 347.802 383.452 347.561 383.401 346.4 383.2z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

207
svg/stop.svg Normal file
View File

@ -0,0 +1,207 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Created with sK1/UniConvertor (http://sk1project.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="409.6pt" height="409.6pt" viewBox="0 0 409.6 409.6"
fill-rule="evenodd">
<g>
<path style="stroke:none; fill:#9b3b3b" d="M 0 0L 0 409.6L 409.6 409.6L 409.6 0L 0 0z"/>
<path style="stroke:none; fill:#9c8787" d="M 125.334 29.8666C 124.978 30.2223 125.822 30.1778 125.866 30.1334C 126.222 29.7779 125.378 29.8222 125.334 29.8666z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 126.934 29.8666C 126.578 30.2223 127.422 30.1778 127.466 30.1334C 127.822 29.7779 126.978 29.8222 126.934 29.8666z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 128 29.6L 128 30.4L 133.6 30.4C 131.734 29.6124 130.034 29.615 128 29.6z"/>
<path style="stroke:none; fill:#ffffff" d="M 133.6 29.9395C 118.318 31.946 103.945 33.0119 89.6 39.5099C 81.2104 43.3105 73.4632 48.4631 66.4 54.3364C 16.8485 95.54 28 163.3 28 220.8C 28 263.007 23.5265 306.506 51.5593 341.6C 90.988 390.959 156.682 381.6 212.8 381.6C 240.297 381.6 268.893 383.646 296 379.323C 306.962 377.574 318.352 373.259 328 367.888C 336.644 363.077 344.898 357.318 351.988 350.369C 395.44 307.778 383.2 237.534 383.2 182.4C 383.2 144.903 386.39 106.646 363.649 74.4C 326.499 21.7242 262.9 29.6 206.4 29.6C 182.694 29.6 157.093 26.8549 133.6 29.9395z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 277.6 29.6L 277.6 30.4L 281.6 30.4C 280.185 29.7769 279.171 29.6701 277.6 29.6z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 281.6 29.6L 281.6 30.4L 284 30.4C 283.002 29.8522 282.762 29.801 281.6 29.6z"/>
<path style="stroke:none; fill:#9c8787" d="M 284 29.6L 284 30.4L 286.4 30.4C 285.402 29.8522 285.162 29.801 284 29.6z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 118.934 30.6667C 118.578 31.0223 119.422 30.9777 119.466 30.9334C 119.822 30.5779 118.978 30.6223 118.934 30.6667z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 120.534 30.6667C 120.178 31.0223 121.022 30.9777 121.066 30.9334C 121.422 30.5779 120.578 30.6223 120.534 30.6667z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 289.6 30.4L 289.6 31.2L 292 31.2C 291.002 30.6522 290.762 30.601 289.6 30.4z"/>
<path style="stroke:none; fill:#ac6969" d="M 292 30.4L 292 31.2L 294.4 31.2C 293.402 30.6522 293.162 30.601 292 30.4z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 112.8 31.2L 112.8 32L 115.2 32C 114.202 31.4522 113.962 31.401 112.8 31.2z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 115.734 31.4666C 115.378 31.8222 116.222 31.7778 116.266 31.7334C 116.622 31.3779 115.778 31.4221 115.734 31.4666z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 294.4 31.2L 294.4 32L 296.8 32C 295.802 31.4522 295.562 31.401 294.4 31.2z"/>
<path style="stroke:none; fill:#ac6969" d="M 297.334 31.4666C 296.978 31.8222 297.822 31.7778 297.866 31.7334C 298.222 31.3778 297.378 31.4223 297.334 31.4666z"/>
<path style="stroke:none; fill:#c5acac" d="M 110.134 32.2666C 109.778 32.6223 110.622 32.5777 110.666 32.5334C 111.022 32.1779 110.178 32.2221 110.134 32.2666z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 111.734 32.2666C 111.378 32.6223 112.222 32.5777 112.266 32.5334C 112.622 32.178 111.778 32.2221 111.734 32.2666z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 298.4 32L 298.4 32.8L 300.8 32.8C 299.802 32.2522 299.562 32.201 298.4 32z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 300.8 32L 301.6 32.8L 300.8 32z"/>
<path style="stroke:none; fill:#9d7979" d="M 106.4 32.8L 107.2 33.6L 106.4 32.8z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 107.2 32.8L 107.2 33.6L 109.6 33.6C 108.602 33.0522 108.362 33.001 107.2 32.8M 301.6 32.8L 301.6 33.6L 304 33.6C 303.002 33.0522 302.762 33.001 301.6 32.8z"/>
<path style="stroke:none; fill:#ae9292" d="M 304 32.8L 304.8 33.6L 304 32.8z"/>
<path style="stroke:none; fill:#b5afaf" d="M 104 33.6L 104.8 34.4L 104 33.6M 306.4 33.6L 307.2 34.4L 306.4 33.6M 101.6 34.4L 102.4 35.2L 101.6 34.4M 308.8 34.4L 309.6 35.2L 308.8 34.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 99.2 35.2L 100 36L 99.2 35.2z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 311.2 35.2L 312 36L 311.2 35.2z"/>
<path style="stroke:none; fill:#ae9292" d="M 96.8 36L 97.6 36.8L 96.8 36z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 97.6 36L 98.4 36.8L 97.6 36z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 312.8 36L 313.6 36.8L 312.8 36z"/>
<path style="stroke:none; fill:#ae9292" d="M 313.6 36L 314.4 36.8L 313.6 36z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 94.4 36.8L 95.2 37.6L 94.4 36.8z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 95.7336 37.0667C 95.3776 37.4222 96.2224 37.3778 96.2664 37.3334C 96.6224 36.9777 95.7776 37.0222 95.7336 37.0667z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 315.2 36.8L 316 37.6L 315.2 36.8z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 316 36.8L 316.8 37.6L 316 36.8z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 93.3336 37.8666C 92.9776 38.2222 93.8224 38.1778 93.8664 38.1334C 94.2224 37.7777 93.3776 37.8222 93.3336 37.8666z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 317.6 37.6L 318.4 38.4L 317.6 37.6z"/>
<path style="stroke:none; fill:#ac6969" d="M 87.2 40L 88 40.8L 87.2 40z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 322.4 40L 323.2 40.8L 322.4 40z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 85.6 40.8L 86.4 41.6L 85.6 40.8z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 86.4 40.8L 87.2 41.6L 86.4 40.8M 324 40.8L 324.8 41.6L 324 40.8z"/>
<path style="stroke:none; fill:#ac6969" d="M 324.8 40.8L 325.6 41.6L 324.8 40.8z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 84 41.6L 84.8 42.4L 84 41.6z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 325.6 41.6L 326.4 42.4L 325.6 41.6z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 326.4 41.6L 327.2 42.4L 326.4 41.6z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 81.6 43.2L 82.4 44L 81.6 43.2M 328.8 43.2L 329.6 44L 328.8 43.2z"/>
<path style="stroke:none; fill:#ae9292" d="M 80 44L 80.8 44.8L 80 44z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 330.4 44L 331.2 44.8L 330.4 44z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 77.6 45.6L 78.4 46.4L 77.6 45.6M 332.8 45.6L 333.6 46.4L 332.8 45.6z"/>
<path style="stroke:none; fill:#ae9292" d="M 76 46.4L 76.8 47.2L 76 46.4M 334.4 46.4L 335.2 47.2L 334.4 46.4M 73.6 48L 74.4 48.8L 73.6 48M 336.8 48L 337.6 48.8L 336.8 48z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 72.8 48.8L 73.6 49.6L 72.8 48.8z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 337.6 48.8L 338.4 49.6L 337.6 48.8z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 70.4 50.4L 71.2 51.2L 70.4 50.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 340 50.4L 340.8 51.2L 340 50.4z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 69.6 51.2L 70.4 52L 69.6 51.2z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 340.8 51.2L 341.6 52L 340.8 51.2z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 67.2 52.8L 68 53.6L 67.2 52.8z"/>
<path style="stroke:none; fill:#ae9292" d="M 343.2 52.8L 344 53.6L 343.2 52.8z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 66.4 53.6L 67.2 54.4L 66.4 53.6z"/>
<path style="stroke:none; fill:#b5afaf" d="M 344 53.6L 344.8 54.4L 344 53.6z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 65.6 54.4L 66.4 55.2L 65.6 54.4M 344.8 54.4L 345.6 55.2L 344.8 54.4z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 64.8 55.2L 65.6 56L 64.8 55.2M 345.6 55.2L 346.4 56L 345.6 55.2z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 62.4 56.8L 63.2 57.6L 62.4 56.8M 348 56.8L 348.8 57.6L 348 56.8M 61.6 57.6L 62.4 58.4L 61.6 57.6M 348.8 57.6L 349.6 58.4L 348.8 57.6M 60.8 58.4L 61.6 59.2L 60.8 58.4M 349.6 58.4L 350.4 59.2L 349.6 58.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 60 59.2L 60.8 60L 60 59.2M 350.4 59.2L 351.2 60L 350.4 59.2M 59.2 60L 60 60.8L 59.2 60M 351.2 60L 352 60.8L 351.2 60M 58.4 60.8L 59.2 61.6L 58.4 60.8M 352 60.8L 352.8 61.6L 352 60.8M 57.6 61.6L 58.4 62.4L 57.6 61.6M 352.8 61.6L 353.6 62.4L 352.8 61.6M 56.8 62.4L 57.6 63.2L 56.8 62.4M 353.6 62.4L 354.4 63.2L 353.6 62.4z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 56 63.2L 56.8 64L 56 63.2z"/>
<path style="stroke:none; fill:#ae9292" d="M 354.4 63.2L 355.2 64L 354.4 63.2M 55.2 64L 56 64.8L 55.2 64z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 355.2 64L 356 64.8L 355.2 64z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 52 68L 52.8 68.8L 52 68M 358.4 68L 359.2 68.8L 358.4 68z"/>
<path style="stroke:none; fill:#c5acac" d="M 51.2 68.8L 52 69.6L 51.2 68.8M 359.2 68.8L 360 69.6L 359.2 68.8z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 50.4 69.6L 51.2 70.4L 50.4 69.6M 360 69.6L 360.8 70.4L 360 69.6z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 48.8 72L 49.6 72.8L 48.8 72M 361.6 72L 362.4 72.8L 361.6 72z"/>
<path style="stroke:none; fill:#ae9292" d="M 48 72.8L 48.8 73.6L 48 72.8z"/>
<path style="stroke:none; fill:#9c8787" d="M 362.4 72.8L 363.2 73.6L 362.4 72.8z"/>
<path style="stroke:none; fill:#b5afaf" d="M 46.4 75.2L 47.2 76L 46.4 75.2M 364 75.2L 364.8 76L 364 75.2z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 44.8 77.6L 45.6 78.4L 44.8 77.6z"/>
<path style="stroke:none; fill:#ae9292" d="M 365.6 77.6L 366.4 78.4L 365.6 77.6z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 366.4 79.2L 367.2 80L 366.4 79.2z"/>
<path style="stroke:none; fill:#ae9292" d="M 43.2 80L 44 80.8L 43.2 80M 367.2 80L 368 80.8L 367.2 80z"/>
<path style="stroke:none; fill:#9d7979" d="M 41.6 82.4L 42.4 83.2L 41.6 82.4M 368.8 82.4L 369.6 83.2L 368.8 82.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 40.8 84L 41.6 84.8L 40.8 84M 369.6 84L 370.4 84.8L 369.6 84M 40 85.6L 40.8 86.4L 40 85.6M 370.4 85.6L 371.2 86.4L 370.4 85.6z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 39.2 87.2L 40 88L 39.2 87.2z"/>
<path style="stroke:none; fill:#ae9292" d="M 371.2 87.2L 372 88L 371.2 87.2z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 38.4 88.8L 39.2 89.6L 38.4 88.8z"/>
<path style="stroke:none; fill:#b5afaf" d="M 372 88.8L 372.8 89.6L 372 88.8M 37.6 90.4L 38.4 91.2L 37.6 90.4z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 372.8 90.4L 373.6 91.2L 372.8 90.4M 36.8 92L 37.6 92.8L 36.8 92z"/>
<path style="stroke:none; fill:#ae9292" d="M 373.6 92L 374.4 92.8L 373.6 92M 36 93.6L 36.8 94.4L 36 93.6M 374.4 93.6L 375.2 94.4L 374.4 93.6z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 35.2 96L 36 96.8L 35.2 96M 375.2 96L 376 96.8L 375.2 96z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 34.4 97.6L 35.2 98.4L 34.4 97.6z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 34.4 98.4L 35.2 99.2L 34.4 98.4M 376 98.4L 376.8 99.2L 376 98.4z"/>
<path style="stroke:none; fill:#9d7979" d="M 33.6 100L 34.4 100.8L 33.6 100M 376.8 100L 377.6 100.8L 376.8 100z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 32.8 102.4L 33.6 103.2L 32.8 102.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 377.6 102.4L 378.4 103.2L 377.6 102.4z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 32 104.8L 32.8 105.6L 32 104.8z"/>
<path style="stroke:none; fill:#ae9292" d="M 378.4 104.8L 379.2 105.6L 378.4 104.8z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 31.2 107.2L 32 108L 31.2 107.2z"/>
<path style="stroke:none; fill:#9d7979" d="M 379.2 107.2L 380 108L 379.2 107.2z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 31.2 108L 31.2 110.4L 32 110.4C 31.799 109.238 31.7478 108.998 31.2 108M 379.2 108L 379.2 110.4L 380 110.4C 379.799 109.238 379.748 108.998 379.2 108z"/>
<path style="stroke:none; fill:#c5acac" d="M 30.6666 110.934C 30.6222 110.978 30.5778 111.822 30.9334 111.466C 30.9778 111.422 31.0222 110.578 30.6666 110.934M 380.266 110.934C 380.222 110.978 380.178 111.822 380.534 111.466C 380.578 111.422 380.622 110.578 380.266 110.934z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 30.6666 112.534C 30.6222 112.578 30.5778 113.422 30.9334 113.066C 30.9778 113.022 31.0222 112.178 30.6666 112.534M 380.266 112.534C 380.222 112.578 380.178 113.422 380.534 113.066C 380.578 113.022 380.622 112.178 380.266 112.534z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 29.8666 114.134C 29.8222 114.178 29.7778 115.022 30.1334 114.666C 30.1778 114.622 30.2222 113.778 29.8666 114.134M 380.8 113.6L 380.8 116L 381.6 116C 381.399 114.838 381.348 114.598 380.8 113.6z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 29.6 115.2L 29.6 117.6L 30.4 117.6C 30.199 116.438 30.1478 116.198 29.6 115.2z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 381.066 116.534C 381.022 116.578 380.978 117.422 381.334 117.066C 381.378 117.022 381.422 116.178 381.066 116.534z"/>
<path style="stroke:none; fill:#b5afaf" d="M 29.0666 119.734C 29.0222 119.778 28.9778 120.622 29.3334 120.266C 29.3778 120.222 29.4222 119.378 29.0666 119.734z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 381.6 120L 381.6 122.4L 382.4 122.4C 382.199 121.238 382.148 120.998 381.6 120z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 29.0666 121.334C 29.0222 121.378 28.9778 122.222 29.3334 121.866C 29.3778 121.822 29.4222 120.978 29.0666 121.334z"/>
<path style="stroke:none; fill:#9d7979" d="M 28.2666 125.334C 28.2222 125.378 28.1778 126.222 28.5334 125.866C 28.5778 125.822 28.6222 124.978 28.2666 125.334z"/>
<path style="stroke:none; fill:#9c8787" d="M 382.666 126.134C 382.622 126.178 382.578 127.022 382.934 126.666C 382.978 126.622 383.022 125.778 382.666 126.134z"/>
<path style="stroke:none; fill:#b5afaf" d="M 28 126.4L 28 128.8L 28.8 128.8C 28.599 127.638 28.5478 127.398 28 126.4M 382.666 127.734C 382.622 127.778 382.578 128.622 382.934 128.266C 382.978 128.222 383.022 127.378 382.666 127.734z"/>
<path style="stroke:none; fill:#ececec" d="M 28 128.8L 28 133.6L 28.8 133.6C 28.7622 131.798 28.6994 130.442 28 128.8z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 382.4 128.8L 382.4 133.6L 383.2 133.6C 383.162 131.798 383.099 130.442 382.4 128.8M 28 276.8L 28 281.6L 28.8 281.6C 28.7622 279.798 28.6994 278.442 28 276.8z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 382.4 277.6L 382.4 281.6L 383.2 281.6C 383.13 280.029 383.023 279.015 382.4 277.6z"/>
<path style="stroke:none; fill:#b5afaf" d="M 28 281.6L 28 284L 28.8 284C 28.599 282.839 28.5478 282.598 28 281.6M 382.4 281.6L 382.4 284L 383.2 284C 382.999 282.838 382.948 282.598 382.4 281.6z"/>
<path style="stroke:none; fill:#936363" d="M 28.2666 284.534C 28.2222 284.578 28.1778 285.422 28.5334 285.066C 28.5778 285.022 28.6222 284.178 28.2666 284.534M 382.666 284.534C 382.622 284.578 382.578 285.422 382.934 285.066C 382.978 285.022 383.022 284.178 382.666 284.534z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 381.6 288L 381.6 290.4L 382.4 290.4C 382.199 289.238 382.148 288.998 381.6 288z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 28.8 288.8L 28.8 291.2L 29.6 291.2C 29.399 290.039 29.3478 289.798 28.8 288.8M 29.8666 294.134C 29.8222 294.178 29.7778 295.022 30.1334 294.666C 30.1778 294.622 30.2222 293.778 29.8666 294.134z"/>
<path style="stroke:none; fill:#b5afaf" d="M 381.066 294.134C 381.022 294.178 380.978 295.022 381.334 294.666C 381.378 294.622 381.422 293.778 381.066 294.134z"/>
<path style="stroke:none; fill:#ac6969" d="M 29.6 295.2L 29.6 297.6L 30.4 297.6C 30.199 296.438 30.1478 296.198 29.6 295.2M 381.066 295.734C 381.022 295.778 380.978 296.622 381.334 296.266C 381.378 296.222 381.422 295.378 381.066 295.734z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 30.4 297.6L 30.4 300L 31.2 300C 30.999 298.838 30.9478 298.598 30.4 297.6z"/>
<path style="stroke:none; fill:#c5acac" d="M 380 297.6L 380 300L 380.8 300C 380.599 298.838 380.548 298.598 380 297.6z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 31.2 300L 31.2 302.4L 32 302.4C 31.799 301.238 31.7478 300.998 31.2 300M 379.2 300L 379.2 302.4L 380 302.4C 379.799 301.238 379.748 300.998 379.2 300z"/>
<path style="stroke:none; fill:#c5acac" d="M 31.2 302.4L 32 303.2L 31.2 302.4M 379.2 302.4L 380 303.2L 379.2 302.4z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 32 304.8L 32.8 305.6L 32 304.8z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 378.4 304.8L 379.2 305.6L 378.4 304.8z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 377.6 307.2L 378.4 308L 377.6 307.2z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 33.6 309.6L 34.4 310.4L 33.6 309.6z"/>
<path style="stroke:none; fill:#b5afaf" d="M 376.8 309.6L 377.6 310.4L 376.8 309.6z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 34.4 312L 35.2 312.8L 34.4 312z"/>
<path style="stroke:none; fill:#ae9292" d="M 376 312L 376.8 312.8L 376 312z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 35.2 313.6L 36 314.4L 35.2 313.6M 375.2 313.6L 376 314.4L 375.2 313.6z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 35.2 314.4L 36 315.2L 35.2 314.4M 375.2 314.4L 376 315.2L 375.2 314.4z"/>
<path style="stroke:none; fill:#c5acac" d="M 36 316L 36.8 316.8L 36 316M 374.4 316L 375.2 316.8L 374.4 316z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 373.6 317.6L 374.4 318.4L 373.6 317.6z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 39.2 322.4L 40 323.2L 39.2 322.4M 371.2 322.4L 372 323.2L 371.2 322.4z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 40 324L 40.8 324.8L 40 324M 370.4 324L 371.2 324.8L 370.4 324z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 40.8 325.6L 41.6 326.4L 40.8 325.6M 369.6 325.6L 370.4 326.4L 369.6 325.6z"/>
<path style="stroke:none; fill:#c5acac" d="M 41.6 327.2L 42.4 328L 41.6 327.2M 368.8 327.2L 369.6 328L 368.8 327.2z"/>
<path style="stroke:none; fill:#9c8787" d="M 42.4 328.8L 43.2 329.6L 42.4 328.8z"/>
<path style="stroke:none; fill:#9d7979" d="M 368 328.8L 368.8 329.6L 368 328.8z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 44 331.2L 44.8 332L 44 331.2z"/>
<path style="stroke:none; fill:#ae9292" d="M 366.4 331.2L 367.2 332L 366.4 331.2z"/>
<path style="stroke:none; fill:#c5acac" d="M 45.6 333.6L 46.4 334.4L 45.6 333.6M 364.8 333.6L 365.6 334.4L 364.8 333.6z"/>
<path style="stroke:none; fill:#ae9292" d="M 47.2 336L 48 336.8L 47.2 336M 363.2 336L 364 336.8L 363.2 336z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 48 336.8L 48.8 337.6L 48 336.8M 362.4 336.8L 363.2 337.6L 362.4 336.8z"/>
<path style="stroke:none; fill:#ae9292" d="M 49.6 339.2L 50.4 340L 49.6 339.2z"/>
<path style="stroke:none; fill:#9c8787" d="M 360.8 339.2L 361.6 340L 360.8 339.2z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 50.4 340L 51.2 340.8L 50.4 340M 360 340L 360.8 340.8L 360 340z"/>
<path style="stroke:none; fill:#9c8787" d="M 52.8 343.2L 53.6 344L 52.8 343.2z"/>
<path style="stroke:none; fill:#9d7979" d="M 357.6 343.2L 358.4 344L 357.6 343.2z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 53.6 344L 54.4 344.8L 53.6 344M 356.8 344L 357.6 344.8L 356.8 344z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 54.4 344.8L 55.2 345.6L 54.4 344.8M 356 344.8L 356.8 345.6L 356 344.8M 63.2 353.6L 64 354.4L 63.2 353.6M 347.2 353.6L 348 354.4L 347.2 353.6z"/>
<path style="stroke:none; fill:#b5afaf" d="M 64 354.4L 64.8 355.2L 64 354.4M 346.4 354.4L 347.2 355.2L 346.4 354.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 64.8 355.2L 65.6 356L 64.8 355.2z"/>
<path style="stroke:none; fill:#9c8787" d="M 345.6 355.2L 346.4 356L 345.6 355.2z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 68 357.6L 68.8 358.4L 68 357.6M 342.4 357.6L 343.2 358.4L 342.4 357.6z"/>
<path style="stroke:none; fill:#9c8787" d="M 68.8 358.4L 69.6 359.2L 68.8 358.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 341.6 358.4L 342.4 359.2L 341.6 358.4M 72 360.8L 72.8 361.6L 72 360.8M 338.4 360.8L 339.2 361.6L 338.4 360.8z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 336.8 361.6L 337.6 362.4L 336.8 361.6z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 74.4 362.4L 75.2 363.2L 74.4 362.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 336 362.4L 336.8 363.2L 336 362.4M 76.8 364L 77.6 364.8L 76.8 364z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 333.6 364L 334.4 364.8L 333.6 364z"/>
<path style="stroke:none; fill:#ae9292" d="M 79.2 365.6L 80 366.4L 79.2 365.6M 331.2 365.6L 332 366.4L 331.2 365.6z"/>
<path style="stroke:none; fill:#c5acac" d="M 80.8 366.4L 81.6 367.2L 80.8 366.4z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 329.6 366.4L 330.4 367.2L 329.6 366.4z"/>
<path style="stroke:none; fill:#b5afaf" d="M 82.4 367.2L 83.2 368L 82.4 367.2z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 328 367.2L 328.8 368L 328 367.2z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 326.4 368L 327.2 368.8L 326.4 368z"/>
<path style="stroke:none; fill:#9d7979" d="M 324 369.6L 324.8 370.4L 324 369.6z"/>
<path style="stroke:none; fill:#ac7a7a" d="M 88 370.4L 88.8 371.2L 88 370.4M 322.4 370.4L 323.2 371.2L 322.4 370.4z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 320 371.2L 320.8 372L 320 371.2z"/>
<path style="stroke:none; fill:#ae9292" d="M 92 372L 92.8 372.8L 92 372M 318.4 372L 319.2 372.8L 318.4 372z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 94.4 372.8L 95.2 373.6L 94.4 372.8z"/>
<path style="stroke:none; fill:#9d7979" d="M 316.8 372.8L 317.6 373.6L 316.8 372.8z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 96 373.6L 96.8 374.4L 96 373.6z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 314.4 373.6L 315.2 374.4L 314.4 373.6z"/>
<path style="stroke:none; fill:#9c8787" d="M 97.6 374.4L 98.4 375.2L 97.6 374.4z"/>
<path style="stroke:none; fill:#9d7979" d="M 312.8 374.4L 313.6 375.2L 312.8 374.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 100 375.2L 100.8 376L 100 375.2z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 101.334 375.466C 100.978 375.822 101.822 375.778 101.866 375.734C 102.222 375.378 101.378 375.422 101.334 375.466z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 309.334 375.466C 308.978 375.822 309.822 375.778 309.866 375.734C 310.222 375.378 309.378 375.422 309.334 375.466z"/>
<path style="stroke:none; fill:#ae9292" d="M 310.4 375.2L 311.2 376L 310.4 375.2z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 102.4 376L 102.4 376.8L 104.8 376.8C 103.802 376.252 103.562 376.201 102.4 376M 306.4 376L 306.4 376.8L 308.8 376.8C 307.802 376.252 307.561 376.201 306.4 376z"/>
<path style="stroke:none; fill:#ae9292" d="M 105.6 376.8L 106.4 377.6L 105.6 376.8z"/>
<path style="stroke:none; fill:#ccc6c6" d="M 106.4 376.8L 107.2 377.6L 106.4 376.8M 304 376.8L 304.8 377.6L 304 376.8z"/>
<path style="stroke:none; fill:#ae9292" d="M 304.8 376.8L 305.6 377.6L 304.8 376.8z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 108.8 377.6L 109.6 378.4L 108.8 377.6z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 300.8 377.6L 301.6 378.4L 300.8 377.6z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 301.6 377.6L 302.4 378.4L 301.6 377.6M 112 378.4L 112.8 379.2L 112 378.4M 298.4 378.4L 299.2 379.2L 298.4 378.4z"/>
<path style="stroke:none; fill:#ae9292" d="M 116 379.2L 116.8 380L 116 379.2z"/>
<path style="stroke:none; fill:#ececec" d="M 118.4 379.2L 118.4 380L 121.6 380C 120.395 379.454 119.748 379.339 118.4 379.2M 289.6 379.2L 289.6 380L 292.8 380C 291.595 379.454 290.948 379.339 289.6 379.2z"/>
<path style="stroke:none; fill:#b3a6a6" d="M 294.4 379.2L 295.2 380L 294.4 379.2z"/>
<path style="stroke:none; fill:#ae9292" d="M 120.534 380.266C 120.178 380.622 121.022 380.578 121.066 380.534C 121.422 380.178 120.578 380.222 120.534 380.266z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 121.6 380L 121.6 380.8L 128 380.8C 125.91 379.922 123.868 380.006 121.6 380z"/>
<path style="stroke:none; fill:#ececec" d="M 277.6 381.6L 282.4 380.8C 280.377 379.969 279.059 379.926 277.6 381.6z"/>
<path style="stroke:none; fill:#e0e0e0" d="M 282.4 380L 282.4 380.8L 289.6 380.8C 287.288 379.83 284.901 380.002 282.4 380z"/>
<path style="stroke:none; fill:#936363" d="M 290.134 380.266C 289.778 380.622 290.622 380.578 290.666 380.534C 291.022 380.178 290.178 380.222 290.134 380.266z"/>
<path style="stroke:none; fill:#9c8787" d="M 126.134 381.066C 125.778 381.422 126.622 381.378 126.666 381.334C 127.022 380.978 126.178 381.022 126.134 381.066z"/>
<path style="stroke:none; fill:#b5afaf" d="M 127.734 381.066C 127.378 381.422 128.222 381.378 128.266 381.334C 128.622 380.978 127.778 381.022 127.734 381.066z"/>
<path style="stroke:none; fill:#d4d3d3" d="M 128.8 380.8L 128.8 381.6L 132 381.6C 130.795 381.054 130.148 380.939 128.8 380.8z"/>
<path style="stroke:none; fill:#c1bdbd" d="M 279.2 380.8L 279.2 381.6L 283.2 381.6C 281.785 380.977 280.771 380.87 279.2 380.8z"/>
<path style="stroke:none; fill:#9d7979" d="M 283.734 381.066C 283.378 381.422 284.222 381.378 284.266 381.334C 284.622 380.978 283.778 381.022 283.734 381.066z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB