diff options
Diffstat (limited to 'packaging')
136 files changed, 38834 insertions, 0 deletions
diff --git a/packaging/README.md b/packaging/README.md new file mode 100644 index 0000000..a99995b --- /dev/null +++ b/packaging/README.md @@ -0,0 +1,6 @@ +Packaging +========= + +This directory contains files and utilities for creating source and +binary packages of Inkscape. Items in this directory typically are not +referenced, used, or included in the regular Inkscape builds. diff --git a/packaging/appimage/AppRun b/packaging/appimage/AppRun new file mode 100644 index 0000000..696ef23 --- /dev/null +++ b/packaging/appimage/AppRun @@ -0,0 +1,75 @@ +#!/bin/bash + +HERE="$(dirname "$(readlink -f "${0}")")" + +# Temporary workaround for broken libgc +if [ -z "$_INKSCAPE_GC" ] ; then + echo "Setting _INKSCAPE_GC=disable as a workaround for broken libgc" >&2 + export _INKSCAPE_GC=disable +fi + +# Custom AppRun script for Inkscape +# by Simon Peter + +############################################################################################ +# Allow AppRun or the AppImage to be symlinked to, e.g., +# /usr/local/bin/inkview +# or to be called with ./Inkscape*.AppImage inkview +############################################################################################ + +if [ ! -z $APPIMAGE ] ; then + BINARY_NAME=$(basename "$ARGV0") +else + BINARY_NAME=$(basename "$0") +fi +if [ ! -z "$1" ] && [ -e "$HERE/bin/$1" ] ; then + MAIN="$HERE/bin/$1" ; shift +elif [ ! -z "$1" ] && [ -e "$HERE/usr/bin/$1" ] ; then + MAIN="$HERE/usr/bin/$1" ; shift +elif [ -e "$HERE/bin/$BINARY_NAME" ] ; then + MAIN="$HERE/bin/$BINARY_NAME" +elif [ -e "$HERE/usr/bin/$BINARY_NAME" ] ; then + MAIN="$HERE/usr/bin/$BINARY_NAME" +else + MAIN="$HERE/usr/bin/inkscape" +fi + +############################################################################################ +# Prefer to run the bundled executables (e.g., Python) +############################################################################################ + +export PATH="${HERE}"/usr/bin/:"${HERE}"/usr/sbin/:"${HERE}"/usr/games/:"${HERE}"/bin/:"${HERE}"/sbin/:"${PATH}" + +############################################################################################ +# Use bundled Python +############################################################################################ + +export PYTHONHOME="$HERE/usr/" + +############################################################################################ +# Run experimental bundle that bundles everything if a private ld-linux-x86-64.so.2 is there +############################################################################################ + +if [ -e "$HERE/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2" ] ; then + echo "Run experimental bundle that bundles everything" + export GCONV_PATH="$HERE/usr/lib/x86_64-linux-gnu/gconv" + export FONTCONFIG_FILE="$HERE/etc/fonts/fonts.conf" + export LIBRARY_PATH="$HERE/usr/lib":$LIBRARY_PATH + export LIBRARY_PATH="$HERE/lib":$LIBRARY_PATH + export LIBRARY_PATH="$HERE/usr/lib/i386-linux-gnu":$LIBRARY_PATH + export LIBRARY_PATH="$HERE/lib/i386-linux-gnu":$LIBRARY_PATH + export LIBRARY_PATH="$HERE/usr/lib/i386-linux-gnu/pulseaudio":$LIBRARY_PATH + export LIBRARY_PATH="$HERE/usr/lib/i386-linux-gnu/alsa-lib":$LIBRARY_PATH + export LIBRARY_PATH="$HERE/usr/lib/x86_64-linux-gnu":$LIBRARY_PATH + export LIBRARY_PATH="$HERE/lib/x86_64-linux-gnu":$LIBRARY_PATH + export LIBRARY_PATH="$HERE/usr/lib/x86_64-linux-gnu/pulseaudio":$LIBRARY_PATH + export LIBRARY_PATH="$HERE/usr/lib/x86_64-linux-gnu/alsa-lib":$LIBRARY_PATH + export GTK_EXE_PREFIX="$HERE/usr" + export GDK_PIXBUF_MODULEDIR=$(readlink -f "$HERE"/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/ ) + export GDK_PIXBUF_MODULE_FILE=$(readlink -f "$HERE"/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders.cache ) # Patched to contain no paths + export LIBRARY_PATH=$GDK_PIXBUF_MODULEDIR:$LIBRARY_PATH # Otherwise getting "Unable to load image-loading module" + export INKSCAPE_DATADIR=${XDG_CONFIG_HOME:-~/.config}/inkscape-1.0 + exec "${HERE}/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2" --inhibit-cache --library-path "${LIBRARY_PATH}" "${MAIN}" "$@" +else + exec "${MAIN}" "$@" +fi diff --git a/packaging/appimage/generate.sh b/packaging/appimage/generate.sh new file mode 100644 index 0000000..46b2bb7 --- /dev/null +++ b/packaging/appimage/generate.sh @@ -0,0 +1,140 @@ +#!/bin/bash + +######################################################################## +# Install build-time and run-time dependencies +######################################################################## + +export DEBIAN_FRONTEND=noninteractive + +######################################################################## +# Build Inkscape and install to appdir/ +######################################################################## + +mkdir -p build && cd build +cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_BINRELOC=ON \ +-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_COMPILER_LAUNCHER=ccache \ +-DCMAKE_CXX_COMPILER_LAUNCHER=ccache +make -j$(nproc) +make DESTDIR=appdir -j$(nproc) install ; find appdir/ +cp ../packaging/appimage/AppRun appdir/AppRun ; chmod +x appdir/AppRun +( cd appdir/usr/lib/ ; ln -s ../* . ) # FIXME: Why is this needed? +( cd appdir/ ; ln -s usr/* . ) # FIXME: Why is this needed? +cp ./appdir/usr/share/icons/hicolor/256x256/apps/org.inkscape.Inkscape.png ./appdir/ +sed -i -e 's|^Icon=.*|Icon=org.inkscape.Inkscape|g' ./appdir/usr/share/applications/org.inkscape.Inkscape.desktop # FIXME +cd appdir/ + +######################################################################## +# Bundle everyhting +# to allow the AppImage to run on older systems as well +######################################################################## + +# Bundle all of glibc; this should eventually be done by linuxdeployqt +apt update +apt-get download libc6 +find *.deb -exec dpkg-deb -x {} . \; +rm *deb + +# Make absolutely sure it will not load stuff from /lib or /usr +sed -i -e 's|/usr|/xxx|g' lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +sed -i -e 's|/usr/lib|/ooo/ooo|g' lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 + +# Bundle Gdk pixbuf loaders without which the bundled Gtk does not work; +# this should eventually be done by linuxdeployqt +apt-get download librsvg2-common libgdk-pixbuf2.0-0 +find *.deb -exec dpkg-deb -x {} . \; +rm *deb +cp /usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/* usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/ +cp /usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders.cache usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/ +sed -i -e 's|/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/||g' usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders.cache + +# Bundle fontconfig settings +mkdir -p etc/fonts/ +cp /etc/fonts/fonts.conf etc/fonts/ + +# Bundle Python +apt-get download libpython3.8-stdlib python3.8 python3.8-minimal libpython3.8-minimal python3-lxml python3-numpy python3-scour python3-gi +find *.deb -exec dpkg-deb -x {} . \; +rm *deb +cd - + +######################################################################## +# Generate AppImage +######################################################################## + +wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" +chmod a+x linuxdeployqt-continuous-x86_64.AppImage + +./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract-and-run appdir/usr/share/applications/org.inkscape.Inkscape.desktop \ + -appimage -unsupported-bundle-everything -executable=appdir/usr/bin/inkview \ + -executable=appdir/usr/lib/inkscape/libinkscape_base.so \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-xpm.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-xbm.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-tiff.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-tga.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-svg.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-qtif.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-pnm.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-png.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-jpeg.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-ico.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-icns.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-gif.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-bmp.so) \ + -executable=$(readlink -f appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/libpixbufloader-ani.so) \ + -executable=appdir/usr/bin/python3.8 \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/lxml/_elementpath.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/lxml/builder.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/lxml/etree.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/lxml/html/clean.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/lxml/html/diff.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/lxml/objectify.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/core/_dummy.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/core/multiarray.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/core/multiarray_tests.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/core/operand_flag_tests.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/core/struct_ufunc_test.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/core/test_rational.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/core/umath.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/core/umath_tests.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/fft/fftpack_lite.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/linalg/_umath_linalg.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/linalg/lapack_lite.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3/dist-packages/numpy/random/mtrand.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_bsddb.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_codecs_cn.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_codecs_hk.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_codecs_iso2022.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_codecs_jp.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_codecs_kr.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_codecs_tw.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_csv.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_ctypes.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_ctypes_test.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_curses.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_curses_panel.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_elementtree.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_hashlib.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_hotshot.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_json.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_lsprof.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_multibytecodec.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_multiprocessing.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_sqlite3.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_ssl.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/_testcapi.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/audioop.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/bz2.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/crypt.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/dbm.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/future_builtins.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/linuxaudiodev.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/mmap.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/nis.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/ossaudiodev.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/parser.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/pyexpat.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/readline.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/resource.*.so) \ + -executable=$(readlink -f appdir/usr/lib/python3.8/lib-dynload/termios.*.so) + +mv Inkscape*.AppImage* ../ diff --git a/packaging/inkscape.16.png.bz2 b/packaging/inkscape.16.png.bz2 Binary files differnew file mode 100644 index 0000000..6e8a821 --- /dev/null +++ b/packaging/inkscape.16.png.bz2 diff --git a/packaging/inkscape.32.png.bz2 b/packaging/inkscape.32.png.bz2 Binary files differnew file mode 100644 index 0000000..5934273 --- /dev/null +++ b/packaging/inkscape.32.png.bz2 diff --git a/packaging/inkscape.48.png.bz2 b/packaging/inkscape.48.png.bz2 Binary files differnew file mode 100644 index 0000000..172e05f --- /dev/null +++ b/packaging/inkscape.48.png.bz2 diff --git a/packaging/macos/020-vars.sh b/packaging/macos/020-vars.sh new file mode 100644 index 0000000..98f7a1b --- /dev/null +++ b/packaging/macos/020-vars.sh @@ -0,0 +1,207 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 020-vars.sh ### +# This file contains all the global variables (as in: configuration for the +# build pipeline) and gets sourced by all the other scripts. +# If you want to override settings, the suggested way is that you create a +# `0nn-custom.sh` file and put them there. All files named '0nn-*.sh' get +# sourced in numerical order. + +[ -z $VARS_INCLUDED ] && VARS_INCLUDED=true || return # include guard + +### name and directory ######################################################### + +SELF_NAME=$(basename $0) + +### nesting level when trapping errors ######################################### + +ERRTRACE_COUNT=0 + +### multithreading ############################################################# + +CORES=$(sysctl -n hw.ncpu) # use all available cores +export MAKEFLAGS="-j $CORES" + +### target OS version ########################################################## + +# The current build setup is +# - Xcode 12 +# - OS X El Capitan 10.11 SDK (part of Xcode 7.3.1) +# - macOS Catalina 10.15.6 + +SDK_VERSION=10.11 +[ -z $SDKROOT_DIR ] && SDKROOT_DIR=/opt/sdks +export SDKROOT=$SDKROOT_DIR/MacOSX${SDK_VERSION}.sdk + +### build system/toolset version ############################################### + +TOOLSET_VERSION=0.37.6 + +### ramdisk #################################################################### + +# Using the toolset dmg, a small writable overlay is required. +OVERLAY_RAMDISK_SIZE=3 # unit is GiB + +### toolset root directory ##################################################### + +# This is the main directory where all the action takes place below. It is +# one level above WRK_DIR (which in previous releases has been called the +# main directory) so we can manage and switch between multiple different WRK_DIR +# versions as required. + +# Allow this to be overridable or use the default. +[ -z $TOOLSET_ROOT_DIR ] && TOOLSET_ROOT_DIR=/Users/Shared/work || true + +if [ $(mkdir -p $TOOLSET_ROOT_DIR 2>/dev/null; echo $?) -eq 0 ] && + [ -w $TOOLSET_ROOT_DIR ] ; then + : # nothing to do, everything ok +else + echo "⌠directory not usable (TOOLSET_ROOT_DIR): $TOOLSET_ROOT_DIR" + exit 1 +fi + +### toolset directories ######################################################## + +# This is where .dmg files with pre-compiled toolsets are downloaded to. +TOOLSET_REPO_DIR=$TOOLSET_ROOT_DIR/repo +# Persistent location for ccache. +export CCACHE_DIR=$TOOLSET_ROOT_DIR/ccache + +### work directory and subdirectories ########################################## + +# Allow this to be overrideable or use version number as default. +[ -z $WRK_DIR ] && WRK_DIR=$TOOLSET_ROOT_DIR/$TOOLSET_VERSION || true + +OPT_DIR=$WRK_DIR/opt +BIN_DIR=$OPT_DIR/bin +INC_DIR=$OPT_DIR/include +LIB_DIR=$OPT_DIR/lib +SRC_DIR=$OPT_DIR/src +TMP_DIR=$OPT_DIR/tmp + +### use TMP_DIR for everything temporary ####################################### + +export TMP=$TMP_DIR +export TEMP=$TMP_DIR +export TMPDIR=$TMP_DIR +export XDG_CACHE_HOME=$TMP_DIR # instead ~/.cache +export XDG_CONFIG_HOME=$TMP_DIR # instead ~/.config +export PIP_CACHE_DIR=$TMP_DIR # instead ~/Library/Caches/pip +export PIPENV_CACHE_DIR=$TMP_DIR # instead ~/Library/Caches/pipenv + +# TODO: ~/Library/Caches/pip-tools ? + +### JHBuild subdirectories and configuration ################################### + +export DEVROOT=$WRK_DIR/gtk-osx +export DEVPREFIX=$DEVROOT/local +export DEV_SRC_ROOT=$DEVROOT/source + +export JHBUILDRC=$DEVROOT/jhbuildrc # requires modified gtk-osx-setup.sh +export JHBUILDRC_CUSTOM=$JHBUILDRC-custom + +### Inkscape Git repository directory ########################################## + +# Location is different when running as GitLab CI job. + +if [ -z $CI_JOB_ID ]; then + INK_DIR=$SRC_DIR/inkscape +else + INK_DIR=$SELF_DIR/../.. # SELF_DIR needs to be set by the sourcing script + INK_DIR=$(cd $INK_DIR; pwd -P) # make path canoncial +fi + +### artifact path ############################################################## + +# This is the location where the final product - like application bundle or +# diskimage (no intermediate programs/libraries/...) - is created in. + +ARTIFACT_DIR=$WRK_DIR/artifacts + +### application bundle paths ################################################### + +APP_DIR=$ARTIFACT_DIR/Inkscape.app +APP_CON_DIR=$APP_DIR/Contents +APP_RES_DIR=$APP_CON_DIR/Resources +APP_FRA_DIR=$APP_CON_DIR/Frameworks +APP_BIN_DIR=$APP_RES_DIR/bin +APP_ETC_DIR=$APP_RES_DIR/etc +APP_EXE_DIR=$APP_CON_DIR/MacOS +APP_LIB_DIR=$APP_RES_DIR/lib + +APP_PLIST=$APP_CON_DIR/Info.plist + +### bundled Python version ##################################################### + +PY3_MAJOR=3 +PY3_MINOR=8 +PY3_PATCH=5 +PY3_BUILD=2 # custom framework build number + +### download URLs for dependencies ############################################# + +# https://github.com/dehesselle/gtk-osx +# Forked from https://gitlab.gnome.org/GNOME/gtk-osx +URL_GTK_OSX=https://raw.githubusercontent.com/dehesselle/gtk-osx/inkscape-1.0.x-10 +URL_GTK_OSX_SETUP=$URL_GTK_OSX/gtk-osx-setup.sh +URL_GTK_OSX_MODULESET=$URL_GTK_OSX/modulesets-stable/gtk-osx.modules + +### download URLs for auxiliary software ####################################### + +# These are versioned URLs of software that is not a direct dependency but +# required for building, packaging or similar. + +# create application bundle +# https://github.com/dehesselle/gtk-mac-bundler +# Forked from https://gitlab.gnome.org/GNOME/gtk-mac-bundler +URL_GTK_MAC_BUNDLER=https://github.com/dehesselle/gtk-mac-bundler/archive/f96a9daf2236814af7ace7a2fa91bbfb4f077779.tar.gz +# Inkscapge Git repo (for standalone/non-CI builds) +URL_INKSCAPE=https://gitlab.com/inkscape/inkscape +# disk image icon +URL_INKSCAPE_DMG_ICNS=https://github.com/dehesselle/mibap/raw/master/inkscape_dmg.icns +# convert PNG image to iconset in ICNS format +# https://github.com/bitboss-ca/png2icns +URL_PNG2ICNS=https://github.com/bitboss-ca/png2icns/archive/v0.1.tar.gz +# This is a relocatable Python.framework to be bundled with the app. +# https://github.com/dehesselle/py3framework +URL_PYTHON=https://github.com/dehesselle/py3framework/releases/download/py$PY3_MAJOR$PY3_MINOR$PY3_PATCH.$PY3_BUILD/py$PY3_MAJOR$PY3_MINOR${PY3_PATCH}_framework_$PY3_BUILD.tar.xz +# A pre-compiled version of the whole toolset. +# https://github.com/dehesselle/mibap +URL_TOOLSET=https://github.com/dehesselle/mibap/releases/download/v$TOOLSET_VERSION/mibap_v$TOOLSET_VERSION.dmg + +### Python: packages for Inkscape ############################################## + +# The following Python packages are bundled with Inkscape. + +# https://cairocffi.readthedocs.io/en/stable/ +# https://github.com/Kozea/cairocffi +PYTHON_CAIROCFFI=cairocffi==1.1.0 +# https://lxml.de +# https://github.com/lxml/lxml +# https://github.com/dehesselle/py3framework +PYTHON_LXML=$(dirname $URL_PYTHON)/lxml-4.5.2-cp$PY3_MAJOR$PY3_MINOR-cp$PY3_MAJOR$PY3_MINOR-macosx_10_9_x86_64.whl +# https://github.com/numpy/numpy +PYTHON_NUMPY=numpy==1.19.1 +# https://pygobject.readthedocs.io/en/latest/ +PYTHON_PYGOBJECT=PyGObject==3.36.1 +# https://github.com/scour-project/scour +PYTHON_SCOUR=scour==0.37 +# https://pyserial.readthedocs.io/en/latest/ +# https://github.com/pyserial/pyserial +PYTHON_PYSERIAL=pyserial==3.4 + +### Python: auxiliary packages ################################################# + +# convert SVG to PNG +# https://cairosvg.org +PYTHON_CAIROSVG=cairosvg==2.4.2 +# create DMG +# https://dmgbuild.readthedocs.io/en/latest/ +# https://github.com/al45tair/dmgbuild +PYTHON_DMGBUILD="biplist==1.0.3 dmgbuild==1.4.2" + +### path ####################################################################### + +export PATH=$DEVPREFIX/bin:$BIN_DIR:/usr/bin:/bin:/usr/sbin:/sbin diff --git a/packaging/macos/030-funcs.sh b/packaging/macos/030-funcs.sh new file mode 100644 index 0000000..3b08141 --- /dev/null +++ b/packaging/macos/030-funcs.sh @@ -0,0 +1,406 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 030-funcs.sh ### +# This file contains all the functions used by the other scripts. It helps +# modularizing functionality and keeping the scripts that do the real work +# as readable as possible. +# This file does not include the "vars" files it requires itself (on purpose, +# for flexibility reasons), the script that wants to use these functions +# needs to do that. The suggested way is to always source all the "0nn-*.sh" +# files in order. + +[ -z $FUNCS_INCLUDED ] && FUNCS_INCLUDED=true || return # include guard + +### get repository version string ############################################## + +function get_repo_version +{ + local repo=$1 + # do it the same way as in CMakeScripts/inkscape-version.cmake + echo $(git -C $repo rev-parse --short HEAD) +} + +### get Inkscape version from CMakeLists.txt ################################### + +function get_inkscape_version +{ + local file=$INK_DIR/CMakeLists.txt + local ver_major=$(grep INKSCAPE_VERSION_MAJOR $file | head -n 1 | awk '{ print $2+0 }') + local ver_minor=$(grep INKSCAPE_VERSION_MINOR $file | head -n 1 | awk '{ print $2+0 }') + local ver_patch=$(grep INKSCAPE_VERSION_PATCH $file | head -n 1 | awk '{ print $2+0 }') + local ver_suffix=$(grep INKSCAPE_VERSION_SUFFIX $file | head -n 1 | awk '{ print $2 }') + + ver_suffix=${ver_suffix%\"*} # remove "double quote and everything after" from end + ver_suffix=${ver_suffix#\"} # remove "double quote" from beginning + + echo $ver_major.$ver_minor.$ver_patch$ver_suffix +} + +### get compression flag by filename extension ################################# + +function get_comp_flag +{ + local file=$1 + + local extension=${file##*.} + + case $extension in + bz2) echo "j" ;; + gz) echo "z" ;; + tgz) echo "z" ;; + xz) echo "J" ;; + *) echo "ERROR unknown extension $extension" + esac +} + +### download and extract source tarball ######################################## + +function install_source +{ + local url=$1 + local target_dir=$2 # optional: target directory, defaults to $SRC_DIR + local options=$3 # optional: additional options for 'tar' + + [ ! -d $TMP_DIR ] && mkdir -p $TMP_DIR + local log=$(mktemp $TMP_DIR/$FUNCNAME.XXXX) + [ -z $target_dir ] && target_dir=$SRC_DIR + [ ! -d $SRC_DIR ] && mkdir -p $SRC_DIR + + cd $target_dir + + # This downloads a file and pipes it directly into tar (file is not saved + # to disk) to extract it. Output from stderr is saved temporarily to + # determine the directory the files have been extracted to. + curl -L $(preferCachedUrl $url) | tar xv$(get_comp_flag $url) $options 2>$log + cd $(head -1 $log | awk '{ print $2 }') + [ $? -eq 0 ] && rm $log || echo "$FUNCNAME: check $log" +} + +### download a file and save to disk ########################################### + +function save_file +{ + local url=$1 + local target_dir=$2 # optional argument, defaults to $SRC_DIR + + [ -z $target_dir ] && target_dir=$SRC_DIR + + local file=$target_dir/$(basename $url) + if [ -f $file ]; then + echo "$FUNCNAME: file $file exists" + else + curl -o $file -L $url + fi +} + +### make, make install in jhbuild environment ################################## + +function make_makeinstall +{ + jhbuild run make + jhbuild run make install +} + +### configure, make, make install in jhbuild environment ####################### + +function configure_make_makeinstall +{ + local flags="$*" + + jhbuild run ./configure --prefix=$OPT_DIR $flags + make_makeinstall +} + +### cmake, make, make install in jhbuild environment ########################### + +function cmake_make_makeinstall +{ + local flags="$*" + + mkdir builddir + cd builddir + jhbuild run cmake -DCMAKE_INSTALL_PREFIX=$OPT_DIR $flags .. + make_makeinstall +} + +### create and mount ramdisk ################################################### + +# There is a more common approach to do this using +# diskutil eraseVolume HFS+ VolName $(hdiutil attach -nomount ram://<size>) +# but that always attaches the ramdisk below '/Volumes'. +# To have full control, we need to do it as follows. + +function create_ramdisk +{ + local dir=$1 # mountpoint + local size=$2 # unit is GiB + + if [ $(mount | grep $dir | wc -l) -eq 0 ]; then + local device=$(hdiutil attach -nomount ram://$(expr $size \* 1024 \* 2048)) + newfs_hfs -v "RAMDISK" $device + mount -o noatime,nobrowse -t hfs $device $dir + fi +} + +### insert line into a textfile ################################################ + +# usage: +# insert_before <filename> <insert before this pattern> <line to insert> + +function insert_before +{ + local file=$1 + local pattern=$2 + local line=$3 + + local file_tmp=$(mktemp) + awk "/${pattern}/{print \"$line\"}1" $file > $file_tmp + cat $file_tmp > $file # we don't 'mv' to preserve permissions + rm $file_tmp +} + +### escape replacement string for sed ########################################## + +# Escape slashes, backslashes and ampersands in strings to be used s as +# replacement strings when using 'sed'. Newlines are not taken into +# consideartion here. +# reference: https://stackoverflow.com/a/2705678 + +function escape_sed +{ + local string="$*" + + echo "$string" | sed -e 's/[\/&]/\\&/g' +} + +### replace line that matches pattern ########################################## + +function replace_line +{ + local file=$1 + local pattern=$2 + local replacement=$3 + + sed -i '' "s/.*${pattern}.*/$(escape_sed $replacement)/" $file +} + +### relocate a library dependency ############################################## + +function relocate_dependency +{ + local target=$1 # fully qualified path and library name to new location + local library=$2 # library to be modified (change 'source' to 'target'I + + local source_lib=${target##*/} # get library filename from target location + local source=$(otool -L $library | grep $source_lib | awk '{ print $1 }') + + install_name_tool -change $source $target $library +} + +### relocate all neighbouring libraries in a directory ######################### + +function relocate_neighbouring_libs +{ + local dir=$1 + + for lib in $dir/*.dylib; do + for linked_lib in $(otool -L $lib | tail -n +3 | awk '{ print $1 }'); do + if [ -f $APP_LIB_DIR/$(basename $linked_lib) ]; then + relocate_dependency @loader_path/$(basename $linked_lib) $lib + fi + done + done +} + +### 'readlink -f' replacement ################################################## + +# This is what the oneliner setting SELF_DIR (see top of file) is based on. + +function readlinkf +{ + # 'readlink -f' replacement: https://stackoverflow.com/a/1116890 + # 'do while' replacement: https://stackoverflow.com/a/16491478 + + local file=$1 + + # iterate down a (possible) chain of symlinks + while + [ ! -z $(readlink $file) ] && file=$(readlink $file) + cd $(dirname $file) + file=$(basename $file) + [ -L "$file" ] + do + : + done + + # Compute the canonicalized name by finding the physical path + # for the directory we're in and appending the target file. + echo $(pwd -P)/$file +} + +### create disk image ########################################################## + +function create_dmg +{ + local app=$1 + local dmg=$2 + local cfg=$3 + + # set application + sed -i '' "s/PLACEHOLDERAPPLICATION/$(escape_sed $app)/" $cfg + + # set disk image icon (if it exists) + local icon=$SRC_DIR/$(basename -s .py $cfg).icns + if [ -f $icon ]; then + sed -i '' "s/PLACEHOLDERICON/$(escape_sed $icon)/" $cfg + fi + + # set background image (if it exists) + local background=$SRC_DIR/$(basename -s .py $cfg).png + if [ -f $background ]; then + sed -i '' "s/PLACEHOLDERBACKGROUND/$(escape_sed $background)/" $cfg + fi + + # create disk image + dmgbuild -s $cfg "$(basename -s .app $app)" $dmg +} + +### run script via Terminal.app ################################################ + +# This is for commands that otherwise don't behave when running in CI. +# It requires a running desktop session (i.e. logged in user) and special +# permissions on newer macOS versions. +# Adapted from: https://stackoverflow.com/a/27970527 +# https://gist.github.com/masci/ff51d9cf40a87a80094c + +function run_in_terminal +{ + local command=$1 + + #local window_id=$(uuidgen) # this would be really unique but... + local window_id=$(date +%s) # ...seconds would help more with debugging + + osascript <<EOF +tell application "Terminal" + set _tab to do script "echo -n -e \"\\\033]0;$window_id\\\007\"; $command; exit" + delay 1 + repeat while _tab is busy + delay 1 + end repeat + close (every window whose name contains "$window_id") +end tell +EOF +} + +### replacements for plain echo: ok, error, info, warning ###################### + +function echo_ok +{ + echo -e "✅ $*" +} + +function echo_err +{ + echo -e "⌠$*" +} + +function echo_warn +{ + echo -e "âš ï¸ $*" +} + +function echo_info +{ + echo -e "â„¹ï¸ $*" +} + +function echo_act # action +{ + echo -e "âž¡ï¸ $*" +} + +### create a ramdisk and return the device ##################################### + +function create_ram_device +{ + local size_gib=$1 # unit is GiB + local name=$2 # volume name + + [ -z $name ] && name=$(uuidgen | md5 | head -c 8) # generate random name + + local size_sectors=$(expr $size_gib \* 1024 \* 2048) + local device=$(hdiutil attach -nomount ram://$size_sectors) + newfs_hfs -v "$name" $device >/dev/null + + echo $device +} + +### attach a disk image and return the device ################################## + +function create_dmg_device +{ + local dmg=$1 + local options=$2 # optional arguments for hdiutil + + local device=$(hdiutil attach -nomount $dmg $options | grep "^/dev/disk" | \ + grep "Apple_HFS" | awk '{ print $1 }') + + echo $device +} + +### replace URL ################################################################ + +function preferCachedUrl +{ + local url=$1 + + # This is a placeholder function you can use to replace URLs with locally + # mirrored ones. + + echo $url +} + +### install Python package with Python.framework ############################### + +function pip_install +{ + local package=$1 + + local PATH_ORIGINAL=$PATH + export PATH=$APP_FRA_DIR/Python.framework/Versions/Current/bin:$PATH + + pip$PY3_MAJOR install \ + --prefix=$APP_RES_DIR \ + --ignore-installed \ + $package + + export PATH=$PATH_ORIGINAL +} + +### this function is called on "trap ERR" ###################################### + +# macOS' old bash 3.x has a bug that causes the line number of the error +# to point to the function entry instead of the command inside the function. + +function catch_error +{ + local file=$1 + local line=$2 + local func=$3 + local command=$4 + local rc=$5 + + [ -z $func ] && func="main" || true + + ((ERRTRACE_COUNT++)) + + case $ERRTRACE_COUNT in + 1) echo -e "\033[97m\033[101m\033[1m[$file:$line] $func failed with rc=$rc\033[39m\033[49m\033[0m" + echo -e "\033[93m$command\033[39m" + ;; + *) echo -e "[$file:$line] <- $func" + ;; + esac +} diff --git a/packaging/macos/110-sysprep.sh b/packaging/macos/110-sysprep.sh new file mode 100755 index 0000000..56bc5eb --- /dev/null +++ b/packaging/macos/110-sysprep.sh @@ -0,0 +1,40 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 110-sysprep.sh ### +# System preparation tasks. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +### initial information ######################################################## + +echo_info "TOOLSET_ROOT_DIR = $TOOLSET_ROOT_DIR" +echo_info "WRK_DIR = $WRK_DIR" + +### check for presence of SDK ################################################## + +if [ ! -d $SDKROOT ]; then + echo_err "SDK not found: $SDKROOT" + exit 1 +fi + +### create work directory ###################################################### + +[ ! -d $WRK_DIR ] && mkdir -p $WRK_DIR || true + +### create temporary directory ################################################# + +[ ! -d $TMP_DIR ] && mkdir -p $TMP_DIR || true + +### create binary directory ################################################# + +[ ! -d $BIN_DIR ] && mkdir -p $BIN_DIR || true + +### create toolset repository directory ######################################## + +[ ! -d $TOOLSET_REPO_DIR ] && mkdir -p $TOOLSET_REPO_DIR || true diff --git a/packaging/macos/130-jhbuild-bootstrap.sh b/packaging/macos/130-jhbuild-bootstrap.sh new file mode 100755 index 0000000..d6611bc --- /dev/null +++ b/packaging/macos/130-jhbuild-bootstrap.sh @@ -0,0 +1,69 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 130-jhbuild-bootstrap.sh ### +# Bootstrap the JHBuild environment. + +### load global settings and functions ######################################### + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +### local settings ############################################################# + +export PYTHONUSERBASE=$DEVPREFIX +export PIP_CONFIG_DIR=$DEVROOT/pip + +### install and configure jhbuild ############################################## + +bash <(curl -s $URL_GTK_OSX_SETUP) # run jhbuild setup script + +# JHBuild: paths +echo "checkoutroot = '$SRC_DIR/checkout'" >> $JHBUILDRC_CUSTOM +echo "prefix = '$OPT_DIR'" >> $JHBUILDRC_CUSTOM +echo "tarballdir = '$SRC_DIR/download'" >> $JHBUILDRC_CUSTOM + +# JHBuild: console output +echo "quiet_mode = True" >> $JHBUILDRC_CUSTOM +echo "progress_bar = True" >> $JHBUILDRC_CUSTOM + +# JHBuild: moduleset +echo "moduleset = '$URL_GTK_OSX_MODULESET'" >> $JHBUILDRC_CUSTOM + +# JHBuild: macOS SDK +sed -i "" "s/^setup_sdk/#setup_sdk/" $JHBUILDRC_CUSTOM +echo "setup_sdk(target=\"$SDK_VERSION\")" >> $JHBUILDRC_CUSTOM +echo "os.environ[\"SDKROOT\"]=\"$SDKROOT\"" >> $JHBUILDRC_CUSTOM + +# JHBuild: TODO: I have forgotten why this is here +echo "if \"openssl\" in skip:" >> $JHBUILDRC_CUSTOM +echo " skip.remove(\"openssl\")" >> $JHBUILDRC_CUSTOM + +# Remove harmful settings in regards to the target platform: +# - MACOSX_DEPLOYMENT_TARGET +# - -mmacosx-version-min +# +# otool -l <library> | grep -A 3 -B 1 LC_VERSION_MIN_MACOSX +# +# cmd LC_VERSION_MIN_MACOSX +# cmdsize 16 +# version 10.11 +# sdk n/a < - - - notarized app won't load this library +echo "os.environ.pop(\"MACOSX_DEPLOYMENT_TARGET\")" \ + >> $JHBUILDRC_CUSTOM +echo "os.environ[\"CFLAGS\"] = \"-O2 -I$SDKROOT/usr/include -isysroot $SDKROOT\"" \ + >> $JHBUILDRC_CUSTOM +echo "os.environ[\"CPPFLAGS\"] = \"-I$INC_DIR -I$SDKROOT/usr/include -isysroot $SDKROOT\"" \ + >> $JHBUILDRC_CUSTOM +echo "os.environ[\"CXXFLAGS\"] = \"-O2 -I$SDKROOT/usr/include -isysroot $SDKROOT\"" \ + >> $JHBUILDRC_CUSTOM +echo "os.environ[\"LDFLAGS\"] = \"-L$LIB_DIR -L$SDKROOT/usr/lib -isysroot $SDKROOT -Wl,-headerpad_max_install_names\"" \ + >> $JHBUILDRC_CUSTOM +echo "os.environ[\"OBJCFLAGS\"] = \"-O2 -I$SDKROOT/usr/include -isysroot $SDKROOT\"" \ + >> $JHBUILDRC_CUSTOM + +### bootstrap JHBuild ########################################################## + +jhbuild bootstrap-gtk-osx diff --git a/packaging/macos/140-jhbuild-gtk3.sh b/packaging/macos/140-jhbuild-gtk3.sh new file mode 100755 index 0000000..73709f0 --- /dev/null +++ b/packaging/macos/140-jhbuild-gtk3.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 140-jhbuild-gtk3.sh ### +# Install GTK3 libraries. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +### install GTK3 libraries ##################################################### + +jhbuild build \ + meta-gtk-osx-bootstrap \ + meta-gtk-osx-gtk3 \ + meta-gtk-osx-gtkmm3 diff --git a/packaging/macos/150-jhbuild-inkdeps.sh b/packaging/macos/150-jhbuild-inkdeps.sh new file mode 100755 index 0000000..1de75d2 --- /dev/null +++ b/packaging/macos/150-jhbuild-inkdeps.sh @@ -0,0 +1,37 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 150-jhbuild-inkdeps.sh ### +# Install additional dependencies into our jhbuild environment required for +# building Inkscape. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +### install Inkscape dependencies ############################################## + +# Part of gtk-osx module sets. + +jhbuild build \ + libsoup + +# Part of inkscape module set. + +jhbuild build \ + boehm_gc \ + double_conversion \ + gdl \ + ghostscript \ + google_test \ + gsl \ + gtkspell3 \ + imagemagick \ + libcdr \ + openjpeg \ + openmp \ + poppler \ + potrace diff --git a/packaging/macos/160-jhbuild-other.sh b/packaging/macos/160-jhbuild-other.sh new file mode 100755 index 0000000..cb54da7 --- /dev/null +++ b/packaging/macos/160-jhbuild-other.sh @@ -0,0 +1,61 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 160-jhbuild-other.sh ### +# Install additional components that are not direct dependencies, like tools +# required for packaging. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +set -e -o errtrace +trap 'catch_error "$SELF_NAME" "$LINENO" "$FUNCNAME" "${BASH_COMMAND}" "${?}"' ERR + +### install disk image creator ################################################# + +jhbuild run pip3 install $PYTHON_DMGBUILD + +### download icon for disk image ############################################### + +# dmgbuild offers to generate a badged version of the disk image icon, but +# it doesn't work and I have not investigated yet. We use a pre-made image +# for now. + +save_file $URL_INKSCAPE_DMG_ICNS + +### install gtk-mac-bundler #################################################### + +( + export GMB_BINDIR=$BIN_DIR + + install_source $URL_GTK_MAC_BUNDLER + jhbuild run make install +) + +### install svg to png convertor ############################################### + +jhbuild run pip3 install $PYTHON_CAIROSVG +jhbuild run pip3 install $PYTHON_CAIROCFFI + +### install png to icns converter ############################################## + +install_source $URL_PNG2ICNS +ln -s $(pwd)/png2icns.sh $BIN_DIR + +### downlaod a pre-built Python.framework ###################################### + +# This will be bundled with the application. + +save_file $URL_PYTHON + +### install compiler cache ##################################################### + +jhbuild build ccache + +################################################################################ + +# vim: expandtab:shiftwidth=2:tabstop=2:softtabstop=2 : diff --git a/packaging/macos/210-inkscape-build.sh b/packaging/macos/210-inkscape-build.sh new file mode 100755 index 0000000..5f6f61e --- /dev/null +++ b/packaging/macos/210-inkscape-build.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 210-inkscape-build.sh ### +# Build Inscape. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +set -e -o errtrace +trap 'catch_error "$SELF_NAME" "$LINENO" "$FUNCNAME" "${BASH_COMMAND}" "${?}"' ERR + +### build Inkscape ############################################################# + +if [ -z $CI_JOB_ID ]; then # running standalone + git clone --recurse-submodules --depth 10 $URL_INKSCAPE $INK_DIR +fi + +[ -d $INK_DIR.build ] && rm -rf $INK_DIR.build || true # cleanup previous run + +mkdir -p $INK_DIR.build +cd $INK_DIR.build + +# about the '-DOpenMP_*' arguments: +# All the settings for OpenMP are to trigger the detection during 'cmake'. +# Experimenting with a "Hello World"-style example shows that linking with +# '-lomp' would suffice, no '-fopenmp' required. +# TODO further investigation into required flags + +cmake \ + -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ + -DCMAKE_PREFIX_PATH=$OPT_DIR \ + -DCMAKE_INSTALL_PREFIX=$OPT_DIR \ + -DOpenMP_CXX_FLAGS="-Xclang -fopenmp" \ + -DOpenMP_C_FLAGS="-Xclang -fopenmp" \ + -DOpenMP_CXX_LIB_NAMES="omp" \ + -DOpenMP_C_LIB_NAMES="omp" \ + -DOpenMP_omp_LIBRARY=$LIB_DIR/libomp.dylib \ + $INK_DIR + +make +make install +make tests + +### patch Poppler library locations ############################################ + +relocate_dependency $LIB_DIR/libpoppler.94.dylib $BIN_DIR/inkscape +relocate_dependency $LIB_DIR/libpoppler-glib.8.dylib $BIN_DIR/inkscape +relocate_dependency $LIB_DIR/libpoppler.94.dylib $LIB_DIR/inkscape/libinkscape_base.dylib +relocate_dependency $LIB_DIR/libpoppler-glib.8.dylib $LIB_DIR/inkscape/libinkscape_base.dylib + +### patch OpenMP library locations ############################################# + +relocate_dependency $LIB_DIR/libomp.dylib $BIN_DIR/inkscape +relocate_dependency $LIB_DIR/libomp.dylib $LIB_DIR/inkscape/libinkscape_base.dylib diff --git a/packaging/macos/220-inkscape-package.sh b/packaging/macos/220-inkscape-package.sh new file mode 100755 index 0000000..903bcf9 --- /dev/null +++ b/packaging/macos/220-inkscape-package.sh @@ -0,0 +1,175 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 220-inkscape-package.sh ### +# Create Inkscape application bundle. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +set -e -o errtrace +trap 'catch_error "$SELF_NAME" "$LINENO" "$FUNCNAME" "${BASH_COMMAND}" "${?}"' ERR + +### create application bundle ################################################## + +mkdir -p $ARTIFACT_DIR + +( # use subshell to fence temporary variables + + BUILD_DIR=$SRC_DIR/gtk-mac-bundler.build + mkdir -p $BUILD_DIR + + cp $SELF_DIR/inkscape.bundle $BUILD_DIR + cp $SELF_DIR/inkscape.plist $BUILD_DIR + + export ARTIFACT_DIR # referenced in inkscape.bundle + cd $BUILD_DIR + jhbuild run gtk-mac-bundler inkscape.bundle +) + +# Rename to get from lowercase to capitalized "i". This works only on +# case-insensitive filesystems (default on macOS). + +mv $APP_DIR $APP_DIR.tmp +mv $APP_DIR.tmp $APP_DIR + +# Patch library link paths. + +relocate_dependency @executable_path/../Resources/lib/inkscape/libinkscape_base.dylib $APP_EXE_DIR/inkscape + +relocate_dependency @loader_path/../libpoppler.94.dylib $APP_LIB_DIR/inkscape/libinkscape_base.dylib +relocate_dependency @loader_path/../libpoppler-glib.8.dylib $APP_LIB_DIR/inkscape/libinkscape_base.dylib + +relocate_neighbouring_libs $APP_LIB_DIR + +# update Inkscape version information +/usr/libexec/PlistBuddy -c "Set CFBundleShortVersionString '$(get_inkscape_version) ($(get_repo_version $INK_DIR))'" $APP_PLIST +/usr/libexec/PlistBuddy -c "Set CFBundleVersion '$(get_inkscape_version) ($(get_repo_version $INK_DIR))'" $APP_PLIST + +# update minimum system version according to deployment target +/usr/libexec/PlistBuddy -c "Set LSMinimumSystemVersion '$SDK_VERSION'" $APP_PLIST + +### generate application icon ################################################## + +# svg to png + +( + export DYLD_FALLBACK_LIBRARY_PATH=$LIB_DIR + jhbuild run cairosvg -f png -s 8 -o $SRC_DIR/inkscape.png $INK_DIR/share/branding/inkscape.svg +) + +# png to icns + +cd $SRC_DIR # png2icns.sh outputs to current directory +png2icns.sh inkscape.png +mv inkscape.icns $APP_RES_DIR + +### bundle Python.framework #################################################### + +# This section deals with bundling Python.framework into the application. + +mkdir $APP_FRA_DIR +install_source file://$SRC_DIR/$(basename $URL_PYTHON) $APP_FRA_DIR --exclude="Versions/$PY3_MAJOR.$PY3_MINOR/lib/python$PY3_MAJOR.$PY3_MINOR/test/"'*' + +# link it to $APP_BIN_DIR so it'll be in $PATH for the app +ln -sf ../../Frameworks/Python.framework/Versions/Current/bin/python$PY3_MAJOR $APP_BIN_DIR + +# create '.pth' file inside Framework to include our site-packages directory +echo "./../../../../../../../Resources/lib/python$PY3_MAJOR.$PY3_MINOR/site-packages" > $APP_FRA_DIR/Python.framework/Versions/Current/lib/python$PY3_MAJOR.$PY3_MINOR/site-packages/inkscape.pth + +### install Python package: lxml ############################################### + +pip_install $PYTHON_LXML + +# patch 'etree' +relocate_dependency @loader_path/../../../libxml2.2.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/lxml/etree.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libz.1.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/lxml/etree.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libxslt.1.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/lxml/etree.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libexslt.0.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/lxml/etree.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +# patch 'objectify' +relocate_dependency @loader_path/../../../libxml2.2.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/lxml/objectify.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libz.1.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/lxml/objectify.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libxslt.1.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/lxml/objectify.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libexslt.0.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/lxml/objectify.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so + +### install Python package: NumPy ############################################## + +pip_install $PYTHON_NUMPY + +### install Python package: PyGObject ########################################## + +pip_install $PYTHON_PYGOBJECT + +# patch '_gi' +relocate_dependency @loader_path/../../../libglib-2.0.0.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libintl.8.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libgio-2.0.0.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libgobject-2.0.0.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libgirepository-1.0.1.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libffi.7.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so + +# patch '_gi_cairo' +relocate_dependency @loader_path/../../../libglib-2.0.0.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi_cairo.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libintl.8.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi_cairo.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libgio-2.0.0.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi_cairo.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libgobject-2.0.0.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi_cairo.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libgirepository-1.0.1.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi_cairo.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libffi.7.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi_cairo.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libcairo.2.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi_cairo.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so +relocate_dependency @loader_path/../../../libcairo-gobject.2.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/gi/_gi_cairo.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so + +### install Python package: Pycairo ############################################ + +# This package got pulled in by PyGObject. + +# patch '_cairo' +relocate_dependency @loader_path/../../../libcairo.2.dylib $APP_LIB_DIR/python$PY3_MAJOR.$PY3_MINOR/site-packages/cairo/_cairo.cpython-$PY3_MAJOR${PY3_MINOR}-darwin.so + +### install Python package: pySerial ########################################### + +pip_install $PYTHON_PYSERIAL + +### install Python package: Scour ############################################## + +pip_install $PYTHON_SCOUR + +### precompile all Python packages ############################################# + +$APP_FRA_DIR/Python.framework/Versions/Current/bin/python$PY3_MAJOR -m compileall -f $APP_DIR || true + +### fontconfig ################################################################# + +# Mimic the behavior of having all files under 'share' and linking the +# active ones to 'etc'. +cd $APP_ETC_DIR/fonts/conf.d + +for file in ./*.conf; do + ln -sf ../../../share/fontconfig/conf.avail/$(basename $file) +done + +# Our customized version loses all the non-macOS paths and sets a cache +# directory below '$HOME/Library/Application Support/Inkscape'. +cp $SELF_DIR/fonts.conf $APP_ETC_DIR/fonts + +### Ghostscript ################################################################ + +relocate_dependency @executable_path/../lib/libfontconfig.1.dylib $APP_BIN_DIR/gs +relocate_dependency @executable_path/../lib/libfreetype.6.dylib $APP_BIN_DIR/gs + +### create GObject introspection repository #################################### + +mkdir $APP_LIB_DIR/girepository-1.0 + +# remove fully qualified paths from libraries in *.gir files +for gir in $OPT_DIR/share/gir-1.0/*.gir; do + sed "s/$(escape_sed $LIB_DIR/)//g" $gir > $SRC_DIR/$(basename $gir) +done + +# compile *.gir into *.typelib files +for gir in $SRC_DIR/*.gir; do + jhbuild run g-ir-compiler -o $APP_LIB_DIR/girepository-1.0/$(basename -s .gir $gir).typelib $gir +done diff --git a/packaging/macos/230-inkscape-distrib.sh b/packaging/macos/230-inkscape-distrib.sh new file mode 100755 index 0000000..f722444 --- /dev/null +++ b/packaging/macos/230-inkscape-distrib.sh @@ -0,0 +1,51 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 230-inkscape-distrib.sh ### +# Get application ready for distribution. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +set -o errtrace +trap 'catch_error "$SELF_NAME" "$LINENO" "$FUNCNAME" "${BASH_COMMAND}" "${?}"' ERR + +### create disk image for distribution ######################################### + +# Create background for development snapshots. This is not meant for +# official releases, those will be re-packaged manually (they also need +# to be signed and notarized). + +convert -size 560x400 xc:transparent \ + -font Andale-Mono -pointsize 64 -fill black \ + -draw "text 20,60 'Inkscape'" \ + -draw "text 20,120 '$(get_inkscape_version)'" \ + -draw "text 20,180 'development'" \ + -draw "text 20,240 'snapshot'" \ + -draw "text 20,300 '$(get_repo_version $INK_DIR)'" \ + $SRC_DIR/inkscape_dmg.png + +# create the disk image + +# Due to an undiagnosed instability that only occurs during CI runs (not when +# run interactively from the terminal), the following code will be put into +# a separate script and be executed via Terminal.app. +# See: https://github.com/al45tair/dmgbuild/pull/11 + +cp $SELF_DIR/inkscape_dmg.py $SRC_DIR + +create_dmg $ARTIFACT_DIR/Inkscape.app $TMP_DIR/Inkscape.dmg $SRC_DIR/inkscape_dmg.py + +rm -rf $APP_DIR +mv $TMP_DIR/Inkscape.dmg $ARTIFACT_DIR + +# CI: move disk image to a location accessible for the runner + +if [ ! -z $CI_JOB_ID ]; then + [ -d $INK_DIR/artifacts ] && rm -rf $INK_DIR/artifacts + mv $ARTIFACT_DIR $INK_DIR/artifacts +fi diff --git a/packaging/macos/README.md b/packaging/macos/README.md new file mode 100644 index 0000000..fa119c8 --- /dev/null +++ b/packaging/macos/README.md @@ -0,0 +1,106 @@ +# macOS build pipeline + +This folder contains the scripts that make up the build pipeline for Inkscape on macOS. + +## Usage + +### Requirements + +â„¹ï¸ _The following is bound to change as development progresses and I won't deny that there's usually more than one way to do something, but I can only support what I use myself. So feel free to experiment and deviate, but know that __it is dangerous to go alone! Take this 🗡ï¸.___ + +- A __clean environment__ is key. + - Make sure there are no remnants from other build environments (e.g. MacPorts, Fink, Homebrew) on your system. + - Rule of thumb: clear out `/usr/local`. + - Use a dedicated user account to avoid any interference with the environment (e.g. no custom settings in `.profile`, `.bashrc`, etc.). + +- There are __version recommendations__. + - macOS Catalina 10.15.6 + - Xcode 11.6 + - OS X El Capitan 10.11 SDK from Xcode 7.3.1 (expected in `/opt/sdks/MacOSX10.11.sdk`) + +- A somewhat decent __internet connection__ for all the downloads. + +### Building the toolset + +â„¹ï¸ _If you only want to build Inkscape and not the complete toolset, skip ahead to the next section!_ + +1. Clone this repository and `cd` into `packaging/macos`. + + ```bash + git clone --depth 1 https://gitlab.com/inkscape/inkscape + cd inkscape/packaging/macos + ``` + +2. Specify a folder where all the action is going to take place. (Please avoid spaces in paths!) + + ```bash + echo "TOOLSET_ROOT_DIR=$HOME/my_build_dir" > 015-customdir.sh + ``` + +3. Build the toolset. + + ```bash + ./build_toolset.sh + ``` + +4. ☕ (Time to get a beverage - this will take a while!) + +### Installing a pre-compiled toolset + +â„¹ï¸ _If you built the toolset yourself, skip ahead to the next section!_ + +â„¹ï¸ _Using `/Users/Shared/work` as `TOOLSET_ROOT_DIR` is mandatory! (This is the default.)_ + +1. Clone this repository and `cd` into it. + + ```bash + git clone --depth 1 https://gitlab.com/inkscape/inkscape + cd inkscape/packaging/macos + ``` + +2. Install the toolset. + + ```bash + ./install_toolset.sh + ``` + + This will + + - download a disk image (about 1.6 GiB) to `/Users/Shared/work/repo` + - mount the disk image to `/Users/Shared/work/$TOOLSET_VERSION` + - union-mount a ramdisk (2 GiB) to `/Users/Shared/work/$TOOLSET_VERSION` + + The mounted volumes won't show up in the Finder but you can see them using `diskutil`. Use `uninstall_toolset.sh` to eject them (this won't delete `repo` though). + +### Building Inkscape + +1. Build Inkscape. + + ```bash + ./build_inkscape.sh + ``` + + Ultimately this will produce `/Users/Shared/work/$TOOLSET_VERSION/artifacts/Inkscape.dmg`. + +## GitLab CI + +Make sure the runner fulfills the same requirements as listed in the usage section above. + +Configure a job in your `.gitlab-ci.yml` as follows: + +```yaml +buildmacos: + before_script: + - packaging/macos/install_toolset.sh + script: + - packaging/macos/build_inkscape.sh + after_script: + - packaging/macos/uninstall_toolset.sh + artifacts: + paths: + - artifacts/ +``` + +## Status + +This is based on [mibap](https://github.com/dehesselle/mibap) and still a work in progress. diff --git a/packaging/macos/build_inkscape.sh b/packaging/macos/build_inkscape.sh new file mode 100755 index 0000000..dc3139a --- /dev/null +++ b/packaging/macos/build_inkscape.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### build_inkscape.sh ### +# Compile and package Inkscape. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); \ + cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +set -e + +### run scripts to compile and build Inkscape ################################## + +for script in $SELF_DIR/2??-*.sh; do + $script +done diff --git a/packaging/macos/build_toolset.sh b/packaging/macos/build_toolset.sh new file mode 100755 index 0000000..5bdb5ae --- /dev/null +++ b/packaging/macos/build_toolset.sh @@ -0,0 +1,44 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### build_toolset.sh ### +# Create JHBuild toolset with all dependencies for Inkscape. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); \ + cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +set -e + +### build toolset ############################################################## + +function build +{ + echo_info building toolset in $WRK_DIR + for script in $SELF_DIR/1??-*.sh; do + $script + done +} + +### remove some files ########################################################## + +# Our way of union-mounting a writable overlay ontop of a readonly filesystem +# introduces the additional challenge that paths cannot be written to if the +# parent path has not been written to (either a bug or a limitation, IDK). +# For most of the build system we work around that by re-creating the +# complete folder structure inside the writable overlay. In some cases +# we remove the paths causing problems. + +function remove_files +{ + rm -rf $TMP_DIR/wheels +} + +### main ####################################################################### + +build +remove_files diff --git a/packaging/macos/fonts.conf b/packaging/macos/fonts.conf new file mode 100644 index 0000000..364bd3b --- /dev/null +++ b/packaging/macos/fonts.conf @@ -0,0 +1,77 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> +<!-- /etc/fonts/fonts.conf file to configure system font access --> +<fontconfig> + <its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0"> + <its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/> + </its:rules> + + <description>Default configuration file</description> + +<!-- + Usually you'll find the "DO NOT EDIT THIS FILE" warning here. + I removed it since I clearly edited this file. I removed the + non-macOS paths and configured the cachedir. + + Rene de Hesselle +--> + +<!-- Font directory list --> + + <dir>/System/Library/Fonts</dir> <dir>/Library/Fonts</dir> <dir>~/Library/Fonts</dir> +<!-- + Accept deprecated 'mono' alias, replacing it with 'monospace' +--> + <match target="pattern"> + <test qual="any" name="family"> + <string>mono</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>monospace</string> + </edit> + </match> + +<!-- + Accept alternate 'sans serif' spelling, replacing it with 'sans-serif' +--> + <match target="pattern"> + <test qual="any" name="family"> + <string>sans serif</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>sans-serif</string> + </edit> + </match> + +<!-- + Accept deprecated 'sans' alias, replacing it with 'sans-serif' +--> + <match target="pattern"> + <test qual="any" name="family"> + <string>sans</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>sans-serif</string> + </edit> + </match> + +<!-- + Load local system customization file +--> + <include ignore_missing="yes">conf.d</include> + +<!-- Font cache directory list --> + + <cachedir>~/Library/Application Support/Inkscape/cache/fontconfig</cachedir> + + <config> +<!-- + Rescan configuration every 30 seconds when FcFontSetList is called + --> + <rescan> + <int>30</int> + </rescan> + </config> + +</fontconfig> + diff --git a/packaging/macos/inkscape.bundle b/packaging/macos/inkscape.bundle new file mode 100644 index 0000000..5cc3752 --- /dev/null +++ b/packaging/macos/inkscape.bundle @@ -0,0 +1,165 @@ +<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*--> +<app-bundle> + + <meta> + <!-- Where to pick up the GTK+ installation, icon themes, + etc. Note that "${env:JHBUILD_PREFIX}" is evaluated to the + value of the environment variable JHBUILD_PREFIX. You can + define additional prefixes and refer to them in paths + throughout this file on the form "${prefix:name}". This is + useful for installing certain libraries or even the + application itself separately. Note that JHBUILD_PREFIX is + defined by jhbuild, so it you are not using jhbuild you can + either define your own or just hardcode the path here. + --> + <prefix name="default">${env:JHBUILD_PREFIX}</prefix> + + <!-- The project directory is the default location of the created + app. If you leave out the path, the current directory is + used. Note the usage of an environment variable here again. + --> + <destination overwrite="yes">${env:ARTIFACT_DIR}</destination> + + <image> + <!-- Not implemented yet (DMG image). --> + </image> + + <!-- Comment this out to keep the install names in binaries --> + <run-install-name-tool/> + + <!-- Optionally specify a launcher script to use. If the + application sets up everything needed itself, like + environment variable, linker paths, etc, a launcher script is + not needed. If the source path is left out, the default + script will be used. + <launcher-script>${project}/gtk3-launcher.sh</launcher-script > + --> + + <!-- Not implemented: Optional runtime, could be python or mono + for example. + --> + <!-- runtime copy="yes">/usr/bin/python</runtime --> + <!-- Indicate the active gtk version to use. This is needed only + for gtk+-3.0 projects. --> + <gtk>gtk+-3.0</gtk> + </meta> + + <!-- The special macro "${project}" refers to the directory where + this bundle file is located. The application name and bundle + identifier are taken from the plist file. + --> + <plist>${project}/inkscape.plist</plist> + + <main-binary>${prefix}/bin/inkscape</main-binary> + + <!-- Copy in the input methods. Dunno if they actually work with + OSX. Note the ${gtkdir} macro, which expands to the correct + library subdirectory for the specified gtk version. --> + <binary> + ${prefix}/lib/${gtkdir}/${pkg:${gtk}:gtk_binary_version}/immodules/*.so + </binary> + +<!-- And the print backends --> + <binary> + ${prefix}/lib/${gtkdir}/${pkg:${gtk}:gtk_binary_version}/printbackends/*.so + </binary> + +<!-- Starting with 2.24, gdk-pixbuf installs into its own directory. --> + <binary> + ${prefix}/lib/gdk-pixbuf-2.0/${pkg:gdk-pixbuf-2.0:gdk_pixbuf_binary_version}/loaders/*.so + </binary> + +<!-- No longer needed for pango >= 1.38 + <binary> + ${prefix}/lib/pango/${pkg:pango:pango_module_version}/modules/ + </binary> +--> + <binary> + ${prefix}/lib/inkscape/libinkscape_base.dylib + </binary> + <binary> + ${prefix}/lib/libexslt.0.dylib + </binary> + <binary> + ${prefix}/lib/libssl.1.1.dylib + </binary> + <binary> + ${prefix}/lib/gio/modules/*.so + </binary> + <!-- GObject Introspection repository manager --> + <binary> + ${prefix}/lib/libgirepository-1.0.1.dylib + </binary> + <!-- Ghostscript --> + <binary> + ${prefix}/bin/gs + </binary> + <!-- Translation filenames, one for each program or library that you + want to copy in to the bundle. The "dest" attribute is + optional, as usual. Bundler will find all translations of that + library/program under the indicated directory and copy them.--> + <translations name="gdk-pixbuf"> + ${prefix}/share/locale + </translations> + <translations name="gdl-3"> + ${prefix}/share/locale + </translations> + <translations name="gtk30"> + ${prefix}/share/locale + </translations> + <translations name="gtk30-properties"> + ${prefix}/share/locale + </translations> + <translations name="inkscape"> + ${prefix}/share/locale + </translations> + + <!-- Data to copy in, usually Glade/UI files, images, sounds files + etc. The destination inside the bundle can be specified if the + files should end up at a different location, by using the + "dest" property. The destination must then start with the macro + "${bundle}", which refers to the bundle root directory. + --> + <!-- data> + ${prefix}/share/gtk3-demo + </data --> + + <data> + ${prefix}/etc/fonts + </data> + <data> + ${prefix}/share/fontconfig + </data> + <data> + ${prefix}/share/glib-2.0 + </data> + <data> + ${prefix}/share/icons + </data> + <data> + ${prefix}/share/ImageMagick-6 + </data> + <data> + ${prefix}/share/inkscape + </data> + <data> + ${prefix}/share/ghostscript + </data> + <data> + ${prefix}/bin/ps2pdf* + </data> + <!-- Copy in the themes data. You may want to trim this to save space + in your bundle. --> + <data> + ${prefix}/share/themes + </data> + + <!-- Copy icons. Note that the .icns file is an Apple format which + contains up to 4 sizes of icon. You can use + /Developer/Applications/Utilities/Icon Composer.app to import + artwork and create the file. > + <data dest="${bundle}/Contents/Resources"> + ${project}/Giggle.icns + </data --> + + </app-bundle> diff --git a/packaging/macos/inkscape.plist b/packaging/macos/inkscape.plist new file mode 100644 index 0000000..1931285 --- /dev/null +++ b/packaging/macos/inkscape.plist @@ -0,0 +1,565 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> + <dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>svg</string> + <string>SVG</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-svg+xml.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/svg+xml</string> + </array> + <key>CFBundleTypeName</key> + <string>Scalable Vector Graphics Image</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>SVG </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Owner</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>svgz</string> + <string>SVGZ</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-svg+xml-compressed.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/svg+xml-compressed</string> + </array> + <key>CFBundleTypeName</key> + <string>Compressed Scalable Vector Graphics Image</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>SVGZ</string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Owner</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>eps</string> + <string>epsi</string> + <string>EPS</string> + <string>EPSI</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-x-eps.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/postscript</string> + <string>image/x-eps</string> + </array> + <key>CFBundleTypeName</key> + <string>PostScript Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>EPS </string> + <string>EPSI</string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + <key>LSItemContentTypes</key> + <array> + <string>com.adobe.encapsulated-postscript</string> + </array> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>ps</string> + <string>PS</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-x-ps.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/postscript</string> + <string>image/x-ps</string> + </array> + <key>CFBundleTypeName</key> + <string>PostScript Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>PS </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + <key>LSItemContentTypes</key> + <array> + <string>com.adobe.postscript</string> + </array> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>ai</string> + <string>AI</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-illustrator.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/illustrator</string> + <string>application/pdf</string> + </array> + <key>CFBundleTypeName</key> + <string>Adobe Illustrator Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>AI </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + <key>LSItemContentTypes</key> + <array> + <string>com.adobe.illustrator.ai-image</string> + </array> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>aisvg</string> + <string>AISVG</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-illustrator-svg.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/illustrator-svg</string> + </array> + <key>CFBundleTypeName</key> + <string>Adobe Illustrator SVG Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>AISVG</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>wmf</string> + <string>WMF</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-vnd.windows-metafile.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/vnd.windows-metafile</string> + </array> + <key>CFBundleTypeName</key> + <string>Windows MetaFile</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>WMF </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>pdf</string> + <string>PDF</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-pdf.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/pdf</string> + </array> + <key>CFBundleTypeName</key> + <string>NSPDFPboardType</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>PDF </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + <key>LSItemContentTypes</key> + <array> + <string>com.adobe.pdf</string> + </array> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>ggr</string> + <string>GGR</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-gimp-gradient.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/x-gimp-gradient</string> + </array> + <key>CFBundleTypeName</key> + <string>Gimp Gradient</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + <key>LSItemContentTypes</key> + <array> + <string>org.gimp.ggr</string> + </array> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>ccx</string> + <string>CCX</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.corel-draw-compressed.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.corel-draw-compressed</string> + </array> + <key>CFBundleTypeName</key> + <string>Corel Draw Compressed Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>CCX </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>cdt</string> + <string>CDT</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.corel-draw-template.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.corel-draw-template</string> + </array> + <key>CFBundleTypeName</key> + <string>Corel Draw Template</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>CDT </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>cdr</string> + <string>CDR</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.corel-draw.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.corel-draw</string> + </array> + <key>CFBundleTypeName</key> + <string>Corel Draw Compressed Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>CDR </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>xaml</string> + <string>XAML</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.ms.xaml.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.ms.xaml</string> + </array> + <key>CFBundleTypeName</key> + <string>Extensible Application Markup Language (XAML)</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>XAML</string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>dxf</string> + <string>DXF</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-vnd.dxf.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/vnd.dxf</string> + </array> + <key>CFBundleTypeName</key> + <string>AutoCAD Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>DXF </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>sk1</string> + <string>SK1</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-vnd.sk1.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/vnd.sk1</string> + </array> + <key>CFBundleTypeName</key> + <string>Sketch Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>SK1 </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>wpg</string> + <string>WPG</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.wordperfect-graphic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.wordperfect-graphic</string> + <string>image/x-wpg</string> + </array> + <key>CFBundleTypeName</key> + <string>WordPerfect Graphics</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>WPG </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>emf</string> + <string>EMF</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/emf</string> + </array> + <key>CFBundleTypeName</key> + <string>Windows Enhanced Metafile document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>EMF </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>vsd</string> + <string>VSD</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.visio</string> + </array> + <key>CFBundleTypeName</key> + <string>Microsoft Visio Diagram</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>vdx</string> + <string>VDX</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.visio</string> + </array> + <key>CFBundleTypeName</key> + <string>Microsoft Visio XML Diagram</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>vsdm</string> + <string>VSDM</string> + <string>vsdx</string> + <string>VSDX</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.visio</string> + </array> + <key>CFBundleTypeName</key> + <string>Microsoft Visio 2013 drawing</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>plt</string> + <string>PLT</string> + <string>hpgl</string> + <string>hpgl</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icons</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.hp-HPGL</string> + <string>image/hpgl</string> + <string>image/plt</string> + <string>image/x-plt</string> + </array> + <key>CFBundleTypeName</key> + <string>HP Graphics Language file</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>png</string> + <string>PNG</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/png</string> + </array> + <key>CFBundleTypeName</key> + <string>Portable Network Graphics Image</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>PNGf</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>None</string> + </dict> + </array> + <key>CFBundleExecutable</key> + <string>inkscape</string> + <key>CFBundleName</key> + <string>Inkscape</string> + <key>CFBundleIconFile</key> + <string>inkscape.icns</string> + <key>CFBundleIdentifier</key> + <string>org.inkscape.Inkscape</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>CFBundleShortVersionString</string> + <key>CFBundleSignature</key> + <string>Inks</string> + <key>CFBundleVersion</key> + <string>CFBundleVersion</string> + <key>NSHumanReadableCopyright</key> + <string>Copyright © 2020 Inkscape Developers, GNU General Public License.</string> + <key>LSApplicationCategoryType</key> + <string>public.app-category.graphics-design</string> + <key>LSMinimumSystemVersion</key> + <string>LSMinimumSystemVersion</string> + <key>NSDesktopFolderUsageDescription</key> + <string>Inkscape needs your permission to access the Desktop folder.</string> + <key>NSDocumentsFolderUsageDescription</key> + <string>Inkscape needs your permission to access the Documents folder.</string> + <key>NSDownloadsFolderUsageDescription</key> + <string>Inkscape needs your permission to access the Downloads folder.</string> + <key>NSRemoveableVolumesUsageDescription</key> + <string>Inkscape needs your permission to access removable volumes.</string> + <key>NSHighResolutionCapable</key> + <true/> + <key>NSRequiresAquaSystemAppearance</key> + <false/> + </dict> +</plist> diff --git a/packaging/macos/inkscape_dmg.py b/packaging/macos/inkscape_dmg.py new file mode 100644 index 0000000..266e27b --- /dev/null +++ b/packaging/macos/inkscape_dmg.py @@ -0,0 +1,246 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +import biplist +import os.path + +# +# Example settings file for dmgbuild +# + +# Use like this: dmgbuild -s settings.py "Test Volume" test.dmg + +# You can actually use this file for your own application (not just TextEdit) +# by doing e.g. +# +# dmgbuild -s settings.py -D app=/path/to/My.app "My Application" MyApp.dmg + +# .. Useful stuff .............................................................. + +application = defines.get('app', 'PLACEHOLDERAPPLICATION') +appname = os.path.basename(application) + +def icon_from_app(app_path): + plist_path = os.path.join(app_path, 'Contents', 'Info.plist') + plist = biplist.readPlist(plist_path) + icon_name = plist['CFBundleIconFile'] + icon_root,icon_ext = os.path.splitext(icon_name) + if not icon_ext: + icon_ext = '.icns' + icon_name = icon_root + icon_ext + return os.path.join(app_path, 'Contents', 'Resources', icon_name) + +# .. Basics .................................................................... + +# Uncomment to override the output filename +# filename = 'test.dmg' + +# Uncomment to override the output volume name +# volume_name = 'Test' + +# Volume format (see hdiutil create -help) +format = defines.get('format', 'UDBZ') + +# Volume size +size = defines.get('size', None) + +# Files to include +files = [ application ] + +# Symlinks to create +#symlinks = { 'Applications': '/Applications' } + +# Volume icon +# +# You can either define icon, in which case that icon file will be copied to the +# image, *or* you can define badge_icon, in which case the icon file you specify +# will be used to badge the system's Removable Disk icon +# +icon = 'PLACEHOLDERICON' +#badge_icon = icon_from_app(application) + +# Where to put the icons +icon_locations = { + appname: (390, 240), +# 'Applications': (500, 120) + } + +# .. Window configuration ...................................................... + +# Background +# +# This is a STRING containing any of the following: +# +# #3344ff - web-style RGB color +# #34f - web-style RGB color, short form (#34f == #3344ff) +# rgb(1,0,0) - RGB color, each value is between 0 and 1 +# hsl(120,1,.5) - HSL (hue saturation lightness) color +# hwb(300,0,0) - HWB (hue whiteness blackness) color +# cmyk(0,1,0,0) - CMYK color +# goldenrod - X11/SVG named color +# builtin-arrow - A simple built-in background with a blue arrow +# /foo/bar/baz.png - The path to an image file +# +# The hue component in hsl() and hwb() may include a unit; it defaults to +# degrees ('deg'), but also supports radians ('rad') and gradians ('grad' +# or 'gon'). +# +# Other color components may be expressed either in the range 0 to 1, or +# as percentages (e.g. 60% is equivalent to 0.6). +background = 'PLACEHOLDERBACKGROUND' + +show_status_bar = False +show_tab_view = False +show_toolbar = False +show_pathbar = False +show_sidebar = False +sidebar_width = 180 + +# Window position in ((x, y), (w, h)) format +window_rect = ((100, 100), (500, 380)) + +# Select the default view; must be one of +# +# 'icon-view' +# 'list-view' +# 'column-view' +# 'coverflow' +# +default_view = 'icon-view' + +# General view configuration +show_icon_preview = False + +# Set these to True to force inclusion of icon/list view settings (otherwise +# we only include settings for the default view) +include_icon_view_settings = 'auto' +include_list_view_settings = 'auto' + +# .. Icon view configuration ................................................... + +arrange_by = None +grid_offset = (0, 0) +grid_spacing = 100 +scroll_position = (0, 0) +label_pos = 'bottom' # or 'right' +text_size = 12 +icon_size = 64 + +# .. List view configuration ................................................... + +# Column names are as follows: +# +# name +# date-modified +# date-created +# date-added +# date-last-opened +# size +# kind +# label +# version +# comments +# +list_icon_size = 16 +list_text_size = 12 +list_scroll_position = (0, 0) +list_sort_by = 'name' +list_use_relative_dates = True +list_calculate_all_sizes = False, +list_columns = ('name', 'date-modified', 'size', 'kind', 'date-added') +list_column_widths = { + 'name': 300, + 'date-modified': 181, + 'date-created': 181, + 'date-added': 181, + 'date-last-opened': 181, + 'size': 97, + 'kind': 115, + 'label': 100, + 'version': 75, + 'comments': 300, + } +list_column_sort_directions = { + 'name': 'ascending', + 'date-modified': 'descending', + 'date-created': 'descending', + 'date-added': 'descending', + 'date-last-opened': 'descending', + 'size': 'descending', + 'kind': 'ascending', + 'label': 'ascending', + 'version': 'ascending', + 'comments': 'ascending', + } + +# .. License configuration ..................................................... + +# Text in the license configuration is stored in the resources, which means +# it gets stored in a legacy Mac encoding according to the language. dmgbuild +# will *try* to convert Unicode strings to the appropriate encoding, *but* +# you should be aware that Python doesn't support all of the necessary encodings; +# in many cases you will need to encode the text yourself and use byte strings +# instead here. + +# Recognized language names are: +# +# af_ZA, ar, be_BY, bg_BG, bn, bo, br, ca_ES, cs_CZ, cy, da_DK, de_AT, de_CH, +# de_DE, dz_BT, el_CY, el_GR, en_AU, en_CA, en_GB, en_IE, en_SG, en_US, eo, +# es_419, es_ES, et_EE, fa_IR, fi_FI, fo_FO, fr_001, fr_BE, fr_CA, fr_CH, +# fr_FR, ga-Latg_IE, ga_IE, gd, grc, gu_IN, gv, he_IL, hi_IN, hr_HR, hu_HU, +# hy_AM, is_IS, it_CH, it_IT, iu_CA, ja_JP, ka_GE, kl, ko_KR, lt_LT, lv_LV, +# mk_MK, mr_IN, mt_MT, nb_NO, ne_NP, nl_BE, nl_NL, nn_NO, pa, pl_PL, pt_BR, +# pt_PT, ro_RO, ru_RU, se, sk_SK, sl_SI, sr_RS, sv_SE, th_TH, to_TO, tr_TR, +# uk_UA, ur_IN, ur_PK, uz_UZ, vi_VN, zh_CN, zh_TW + +# license = { +# 'default-language': 'en_US', +# 'licenses': { +# # For each language, the text of the license. This can be plain text, +# # RTF (in which case it must start "{\rtf1"), or a path to a file +# # containing the license text. If you're using RTF, +# # watch out for Python escaping (or read it from a file). +# 'English': b'''{\\rtf1\\ansi\\ansicpg1252\\cocoartf1504\\cocoasubrtf820 +# {\\fonttbl\\f0\\fnil\\fcharset0 Helvetica-Bold;\\f1\\fnil\\fcharset0 Helvetica;} +# {\\colortbl;\\red255\\green255\\blue255;\\red0\\green0\\blue0;} +# {\\*\\expandedcolortbl;;\\cssrgb\\c0\\c0\\c0;} +# \\paperw11905\\paperh16837\\margl1133\\margr1133\\margb1133\\margt1133 +# \\deftab720 +# \\pard\\pardeftab720\\sa160\\partightenfactor0 + +# \\f0\\b\\fs60 \\cf2 \\expnd0\\expndtw0\\kerning0 +# \\up0 \\nosupersub \\ulnone \\outl0\\strokewidth0 \\strokec2 Test License\\ +# \\pard\\pardeftab720\\sa160\\partightenfactor0 + +# \\fs36 \\cf2 \\strokec2 What is this?\\ +# \\pard\\pardeftab720\\sa160\\partightenfactor0 + +# \\f1\\b0\\fs22 \\cf2 \\strokec2 This is the English license. It says what you are allowed to do with this software.\\ +# \\ +# }''', +# }, +# 'buttons': { +# # For each language, text for the buttons on the licensing window. +# # +# # Default buttons and text are built-in for the following languages: +# # +# # English (en_US), German (de_DE), Spanish (es_ES), French (fr_FR), +# # Italian (it_IT), Japanese (ja_JP), Dutch (nl_NL), Swedish (sv_SE), +# # Brazilian Portuguese (pt_BR), Simplified Chinese (zh_CN), +# # Traditional Chinese (zh_TW), Danish (da_DK), Finnish (fi_FI), +# # Korean (ko_KR), Norwegian (nb_NO) +# # +# # You don't need to specify them for those languages; if you fail to +# # specify them for some other language, English will be used instead. + +# 'en_US': ( +# b'English', +# b'Agree', +# b'Disagree', +# b'Print', +# b'Save', +# b'If you agree with the terms of this license, press "Agree" to ' +# b'install the software. If you do not agree, press "Disagree".' +# ), +# }, +# } diff --git a/packaging/macos/install_toolset.sh b/packaging/macos/install_toolset.sh new file mode 100755 index 0000000..5b4259a --- /dev/null +++ b/packaging/macos/install_toolset.sh @@ -0,0 +1,66 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### install_toolset.sh ### +# Install a pre-compiled version of the JHBuild toolset and required +# dependencies for Inkscape. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); \ + cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +set -e + +### install toolset ############################################################ + +function install +{ + local toolset_dmg=$TOOLSET_REPO_DIR/$(basename $URL_TOOLSET) + + if [ -f $toolset_dmg ]; then + echo_info "no download required" + else + # File not present on disk, we need to download. + echo_act "download required" + save_file $URL_TOOLSET $TOOLSET_REPO_DIR + echo_ok "download successful" + fi + + # mount build system read-only + local device=$(create_dmg_device $toolset_dmg) + [ ! -d $WRK_DIR ] && mkdir -p $WRK_DIR + mount -o nobrowse,noowners,ro -t hfs $device $WRK_DIR + echo_ok "toolset mounted as $device" + + # Sadly, there are some limitations involved with union-mounting: + # - Files are not visible to 'ls'. + # - You cannot write in a location without having written to its + # parent location. That's why we need to pre-create all directories + # below. + # + # Shadow-mounting a dmg is not a feasible alternative due to its + # bad write-performance. + + # prepare a script for mass-creating directories + find $OPT_DIR -type d ! -path "$TMP_DIR/*" ! -path "$SRC_DIR/*" \ + -exec echo "mkdir {}" > $TOOLSET_ROOT_DIR/create_dirs.sh \; + chmod 755 $TOOLSET_ROOT_DIR/create_dirs.sh + + # create writable (ramdisk-) overlay + device=$(create_ram_device $OVERLAY_RAMDISK_SIZE build) + mount -o nobrowse,rw,union -t hfs $device $WRK_DIR + echo_ok "writable ramdisk overlay mounted as $device" + + # create all directories inside overlay + $TOOLSET_ROOT_DIR/create_dirs.sh + rm $TOOLSET_ROOT_DIR/create_dirs.sh +} + +### main ####################################################################### + +$SELF_DIR/110-sysprep.sh +install diff --git a/packaging/macos/uninstall_toolset.sh b/packaging/macos/uninstall_toolset.sh new file mode 100755 index 0000000..ba92577 --- /dev/null +++ b/packaging/macos/uninstall_toolset.sh @@ -0,0 +1,36 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### uninstall_toolset.sh ### +# Uninstall a previously installed toolset. In this case, "uninstall" means +# "unmount", the downloaded .dmg won't be deleted. + +### load settings and functions ################################################ + +SELF_DIR=$(F=$0; while [ ! -z $(readlink $F) ] && F=$(readlink $F); \ + cd $(dirname $F); F=$(basename $F); [ -L $F ]; do :; done; echo $(pwd -P)) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +set -e + +### uninstall toolset ########################################################## + +function uninstall +{ + while : ; do # unmount everything (in reverse order) + local disk=$(mount | grep $WRK_DIR | tail -n1 | awk '{ print $1 }') + + if [ ${#disk} -eq 0 ]; then + break # nothing to do here + else + diskutil eject $disk > /dev/null # unmount + echo_ok "ejected $disk" + fi + done +} + +### main ####################################################################### + +uninstall diff --git a/packaging/mkNEWS b/packaging/mkNEWS new file mode 100755 index 0000000..69c23e3 --- /dev/null +++ b/packaging/mkNEWS @@ -0,0 +1,42 @@ +#!/usr/bin/python3 + +import re +import os +import sys +import subprocess + +wiki = "http://wiki.inkscape.org/wiki/index.php" + +if len(sys.argv) < 2: + print("Usage: mkNEWS <release-version>") + sys.exit(1) + +release_number = sys.argv[1] + +# TODO: Use beautifulsoup +url = "%s/Release_notes/%s" %(wiki, release_number) +result = subprocess.run(["w3m", "-dump", url], stdout=subprocess.PIPE) + +re_edit = re.compile(r'\[\[\d+\]edit\]', flags=re.IGNORECASE) +re_overview = re.compile(r'^\s*Inkscape '+release_number) +re_prev_rels = re.compile(r'^\s*Previous releases') + +seen_overview = 0; +for line in result.stdout.decode('utf-8').split("\n"): + line = re_edit.sub("", line) + + # Ignore everything before the overview section + if re_overview.match(line): + seen_overview = 1 + + # Ignore everything from Previous releases onward + if re_prev_rels.match(line): + break + + # TODO: Implement some additional formatting/cleanup + + if seen_overview: + print(line) + +print("\nFor information on prior releases, please see:\n") +print(" %s/Inkscape\n" %(wiki)) diff --git a/packaging/nsis/fileassoc.nsh b/packaging/nsis/fileassoc.nsh new file mode 100644 index 0000000..eccc967 --- /dev/null +++ b/packaging/nsis/fileassoc.nsh @@ -0,0 +1,122 @@ +; from https://nsis.sourceforge.io/FileAssoc + +; fileassoc.nsh +; File association helper macros +; Written by Saivert +; +; Features automatic backup system and UPDATEFILEASSOC macro for +; shell change notification. +; +; |> How to use <| +; To associate a file with an application so you can double-click it in explorer, use +; the APP_ASSOCIATE macro like this: +; +; Example: +; !insertmacro APP_ASSOCIATE "txt" "myapp.textfile" "Description of txt files" \ +; "$INSTDIR\myapp.exe,0" "Open with myapp" "$INSTDIR\myapp.exe $\"%1$\"" +; +; Never insert the APP_ASSOCIATE macro multiple times, it is only ment +; to associate an application with a single file and using the +; the "open" verb as default. To add more verbs (actions) to a file +; use the APP_ASSOCIATE_ADDVERB macro. +; +; Example: +; !insertmacro APP_ASSOCIATE_ADDVERB "myapp.textfile" "edit" "Edit with myapp" \ +; "$INSTDIR\myapp.exe /edit $\"%1$\"" +; +; To have access to more options when registering the file association use the +; APP_ASSOCIATE_EX macro. Here you can specify the verb and what verb is to be the +; standard action (default verb). +; +; And finally: To remove the association from the registry use the APP_UNASSOCIATE +; macro. Here is another example just to wrap it up: +; !insertmacro APP_UNASSOCIATE "txt" "myapp.textfile" +; +; |> Note <| +; When defining your file class string always use the short form of your application title +; then a period (dot) and the type of file. This keeps the file class sort of unique. +; Examples: +; Winamp.Playlist +; NSIS.Script +; Photoshop.JPEGFile +; +; |> Tech info <| +; The registry key layout for a file association is: +; HKEY_CLASSES_ROOT +; <applicationID> = <"description"> +; shell +; <verb> = <"menu-item text"> +; command = <"command string"> +; + +!macro APP_ASSOCIATE EXT FILECLASS DESCRIPTION ICON COMMANDTEXT COMMAND + ; Backup the previously associated file class + ReadRegStr $R0 HKCR ".${EXT}" "" + WriteRegStr HKCR ".${EXT}" "${FILECLASS}_backup" "$R0" + + WriteRegStr HKCR ".${EXT}" "" "${FILECLASS}" + + WriteRegStr HKCR "${FILECLASS}" "" `${DESCRIPTION}` + WriteRegStr HKCR "${FILECLASS}\DefaultIcon" "" `${ICON}` + WriteRegStr HKCR "${FILECLASS}\shell" "" "open" + WriteRegStr HKCR "${FILECLASS}\shell\open" "" `${COMMANDTEXT}` + WriteRegStr HKCR "${FILECLASS}\shell\open\command" "" `${COMMAND}` +!macroend + +!macro APP_ASSOCIATE_EX EXT FILECLASS DESCRIPTION ICON VERB DEFAULTVERB SHELLNEW COMMANDTEXT COMMAND + ; Backup the previously associated file class + ReadRegStr $R0 HKCR ".${EXT}" "" + WriteRegStr HKCR ".${EXT}" "${FILECLASS}_backup" "$R0" + + WriteRegStr HKCR ".${EXT}" "" "${FILECLASS}" + StrCmp "${SHELLNEW}" "0" +2 + WriteRegStr HKCR ".${EXT}\ShellNew" "NullFile" "" + + WriteRegStr HKCR "${FILECLASS}" "" `${DESCRIPTION}` + WriteRegStr HKCR "${FILECLASS}\DefaultIcon" "" `${ICON}` + WriteRegStr HKCR "${FILECLASS}\shell" "" `${DEFAULTVERB}` + WriteRegStr HKCR "${FILECLASS}\shell\${VERB}" "" `${COMMANDTEXT}` + WriteRegStr HKCR "${FILECLASS}\shell\${VERB}\command" "" `${COMMAND}` +!macroend + +!macro APP_ASSOCIATE_ADDVERB FILECLASS VERB COMMANDTEXT COMMAND + WriteRegStr HKCR "${FILECLASS}\shell\${VERB}" "" `${COMMANDTEXT}` + WriteRegStr HKCR "${FILECLASS}\shell\${VERB}\command" "" `${COMMAND}` +!macroend + +!macro APP_ASSOCIATE_REMOVEVERB FILECLASS VERB + DeleteRegKey HKCR `${FILECLASS}\shell\${VERB}` +!macroend + + +!macro APP_UNASSOCIATE EXT FILECLASS + ; Backup the previously associated file class + ReadRegStr $R0 HKCR ".${EXT}" `${FILECLASS}_backup` + WriteRegStr HKCR ".${EXT}" "" "$R0" + DeleteRegValue HKCR ".${EXT}" `${FILECLASS}_backup` + + DeleteRegKey HKCR `${FILECLASS}` +!macroend + +!macro APP_ASSOCIATE_GETFILECLASS OUTPUT EXT + ReadRegStr ${OUTPUT} HKCR ".${EXT}" "" +!macroend + + +; !defines for use with SHChangeNotify +!ifdef SHCNE_ASSOCCHANGED +!undef SHCNE_ASSOCCHANGED +!endif +!define SHCNE_ASSOCCHANGED 0x08000000 +!ifdef SHCNF_FLUSH +!undef SHCNF_FLUSH +!endif +!define SHCNF_FLUSH 0x1000 + +!macro UPDATEFILEASSOC +; Using the system.dll plugin to call the SHChangeNotify Win32 API function so we +; can update the shell. + System::Call "shell32::SHChangeNotify(i,i,i,i) (${SHCNE_ASSOCCHANGED}, ${SHCNF_FLUSH}, 0, 0)" +!macroend + +;EOF diff --git a/packaging/nsis/header.bmp b/packaging/nsis/header.bmp Binary files differnew file mode 100644 index 0000000..2e6493d --- /dev/null +++ b/packaging/nsis/header.bmp diff --git a/packaging/nsis/header.svg b/packaging/nsis/header.svg new file mode 100644 index 0000000..920cb4d --- /dev/null +++ b/packaging/nsis/header.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + inkscape:export-ydpi="384" + inkscape:export-xdpi="384" + inkscape:export-filename="header.png" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:docname="header.svg" + inkscape:version="1.0beta2 (ac7d0203ba, 2020-02-09)" + version="1.1" + id="svg2" + height="57" + width="150"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3604"> + <stop + id="stop3606" + offset="0" + style="stop-color:#313c71;stop-opacity:1" /> + <stop + style="stop-color:#6168bd;stop-opacity:1" + offset="0.15333334" + id="stop3612" /> + <stop + id="stop3608" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="1023.8622" + x2="150" + y1="1023.8622" + x1="0" + id="linearGradient3610" + xlink:href="#linearGradient3604" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + id="WhiteTransparent-7"> + <stop + id="stop7606-11" + offset="0" + style="stop-color:white;stop-opacity:1" /> + <stop + id="stop7608-5" + offset="1" + style="stop-color:white;stop-opacity:0" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="236.45535" + x2="107.79591" + y1="277.65921" + x1="163.78543" + id="linearGradient8007" + xlink:href="#linearGradient8005" + inkscape:collect="always" /> + <linearGradient + id="linearGradient8005" + inkscape:collect="always"> + <stop + id="stop8001" + offset="0" + style="stop-color:#7d7d7d;stop-opacity:1" /> + <stop + id="stop8003" + offset="1" + style="stop-color:#000000;stop-opacity:1" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="240.04326" + x2="130.89851" + y1="207.08017" + x1="39.809143" + id="linearGradient8017" + xlink:href="#WhiteTransparent-7" + inkscape:collect="always" /> + </defs> + <sodipodi:namedview + inkscape:snap-bbox-midpoints="true" + inkscape:snap-bbox="true" + inkscape:snap-center="true" + inkscape:document-rotation="0" + inkscape:window-maximized="1" + inkscape:window-y="-8" + inkscape:window-x="-8" + inkscape:window-height="1030" + inkscape:window-width="1580" + showgrid="false" + inkscape:current-layer="layer1" + inkscape:document-units="px" + inkscape:cy="57" + inkscape:cx="-60.328458" + inkscape:zoom="1" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(0,-995.36218)" + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Layer 1"> + <rect + y="995.36218" + x="0" + height="57" + width="150" + id="rect8549" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <rect + y="995.36218" + x="0" + height="57" + width="150" + id="rect2830" + style="fill:url(#linearGradient3610);fill-opacity:1;stroke:none" /> + <g + style="display:inline;fill:#000000" + id="g2092" + transform="matrix(0.53030987,0,0,0.53030987,-12.396353,892.46317)"> + <path + d="m 108.82387,203.71197 -33.413116,34.19162 c -11.289426,13.98058 7.682979,12.35395 15.816141,16.38073 2.917493,2.98216 -11.182476,5.18334 -8.264984,8.16798 2.917492,2.98216 17.641749,5.74545 20.564209,8.72761 2.9175,2.98216 -5.971774,6.14588 -3.05428,9.12804 2.91749,2.98216 9.66528,0.15669 10.92878,7.04128 0.90037,4.91969 12.15995,2.11412 17.66662,-1.91515 2.91749,-2.98465 -5.58129,-2.70359 -2.6638,-5.68575 7.25518,-7.41933 14.01043,-2.69613 16.49266,-10.13039 1.22619,-3.6736 -10.68006,-5.66336 -7.75759,-8.64552 8.39432,-4.90228 37.40757,-8.09337 23.64089,-21.86005 l -34.63434,-35.4004 c -4.23571,-4.06658 -11.30435,-4.11135 -15.32119,0 z m 38.38007,65.90597 c 0,1.69628 12.49821,2.80806 12.49821,-0.40044 -1.78084,-5.15349 -11.02081,-4.80528 -12.49821,0.40044 z m -56.300381,9.01363 c 2.959774,2.55934 7.531257,-0.63672 8.901709,-4.20835 -2.867748,-3.81039 -13.602528,0.1368 -8.901709,4.20835 z M 145.637,273.10252 c -3.81537,3.42239 0.4278,6.89453 4.18846,4.68341 0.83819,-0.85063 -0.0224,-3.83279 -4.18846,-4.68341 z" + id="path2313" + inkscape:connector-curvature="0" + style="fill:url(#linearGradient8007);fill-opacity:1;stroke-width:0.248721" /> + <path + d="m 100.82751,256.1348 c 0.8929,0.55465 14.39843,3.29804 17.69895,3.84522 1.14412,0.24126 0.33329,1.4202 -1.2436,2.2161 -3.5567,0.94514 -20.807961,-6.06132 -16.45535,-6.06132 z" + id="path2315" + style="fill:#ffffff;fill-opacity:1;stroke-width:0.248721" + inkscape:connector-curvature="0" /> + <path + d="m 122.12545,206.10964 13.2195,13.42593 c 1.25355,1.28092 1.23614,3.76315 0.53474,4.47697 l -6.56373,-5.25049 -1.29086,7.77501 -5.48429,-2.89511 -8.78232,5.54896 -2.90755,-11.69733 -4.71823,8.16301 h -7.212889 c -2.939876,0 -3.285597,-3.73081 -0.614338,-6.40207 4.665997,-5.03659 10.020947,-10.17018 12.930977,-13.14488 2.92496,-2.98962 8.02124,-2.90506 10.88899,0 z" + id="path2317" + style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.248721" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccsccsc" + inkscape:connector-curvature="0" + id="path8009" + d="m 111.36483,205.90357 -35.099585,36.32045 c 0,0 -3.052139,3.66257 0,5.49385 3.052138,1.83128 23.806675,5.49385 23.806675,5.49385 l 21.36497,-47.30815 c 0,0 -2.74693,-2.74692 -5.49385,-2.13649 -2.74692,0.61043 -4.57821,2.13649 -4.57821,2.13649 z" + style="fill:url(#linearGradient8017);fill-opacity:1;stroke:none;stroke-width:0.863275px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/packaging/nsis/welcomefinish.bmp b/packaging/nsis/welcomefinish.bmp Binary files differnew file mode 100644 index 0000000..e5d15ba --- /dev/null +++ b/packaging/nsis/welcomefinish.bmp diff --git a/packaging/nsis/welcomefinish.svg b/packaging/nsis/welcomefinish.svg new file mode 100644 index 0000000..f488c88 --- /dev/null +++ b/packaging/nsis/welcomefinish.svg @@ -0,0 +1,10946 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="164" + height="314" + version="1.1" + inkscape:version="1.0beta2 (fe19b174b6, 2020-02-11)" + sodipodi:docname="welcomefinish.svg" + inkscape:export-filename="welcomefinish.png" + inkscape:export-xdpi="384" + inkscape:export-ydpi="384" + id="svg11484"> + <metadata + id="metadata11490"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs11488"> + <linearGradient + inkscape:collect="always" + id="linearGradient15343"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop15339" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop15341" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4433"> + <stop + style="stop-color:#5099e3;stop-opacity:1;" + offset="0" + id="stop4429" /> + <stop + style="stop-color:#3380cf;stop-opacity:1" + offset="1" + id="stop4431" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4401"> + <stop + style="stop-color:#90bfed;stop-opacity:1;" + offset="0" + id="stop4397" /> + <stop + style="stop-color:#63a4e7;stop-opacity:1" + offset="1" + id="stop4399" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4395"> + <stop + style="stop-color:#ffffff;stop-opacity:0.07575758" + offset="0" + id="stop4389" /> + <stop + id="stop4391" + offset="0.27291018" + style="stop-color:#c6bebd;stop-opacity:1" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4393" /> + </linearGradient> + <linearGradient + id="linearGradient4387" + inkscape:collect="always"> + <stop + id="stop4383" + offset="0" + style="stop-color:#cec4c4;stop-opacity:1" /> + <stop + id="stop4385" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3813"> + <stop + style="stop-color:#c43631;stop-opacity:1" + offset="0" + id="stop3809" /> + <stop + style="stop-color:#d86360;stop-opacity:1" + offset="1" + id="stop3811" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3731"> + <stop + style="stop-color:#ac9d93;stop-opacity:1;" + offset="0" + id="stop3727" /> + <stop + style="stop-color:#bcb0a8;stop-opacity:1" + offset="1" + id="stop3729" /> + </linearGradient> + <linearGradient + id="linearGradient3717" + inkscape:collect="always"> + <stop + id="stop3713" + offset="0" + style="stop-color:#932520;stop-opacity:1" /> + <stop + id="stop3715" + offset="1" + style="stop-color:#d86360;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3666" + inkscape:collect="always"> + <stop + id="stop3662" + offset="0" + style="stop-color:#9fe4e5;stop-opacity:1" /> + <stop + id="stop3664" + offset="1" + style="stop-color:#e4f6f8;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3660" + inkscape:collect="always"> + <stop + id="stop3656" + offset="0" + style="stop-color:#9fe4e5;stop-opacity:1" /> + <stop + id="stop3658" + offset="1" + style="stop-color:#e8f7fa;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3654" + inkscape:collect="always"> + <stop + id="stop3650" + offset="0" + style="stop-color:#9fe4e5;stop-opacity:1" /> + <stop + id="stop3652" + offset="1" + style="stop-color:#d4f1f5;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3622"> + <stop + style="stop-color:#c6e1ff;stop-opacity:1" + offset="0" + id="stop3618" /> + <stop + style="stop-color:#d6f3f4;stop-opacity:1" + offset="1" + id="stop3620" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9356"> + <stop + style="stop-color:#79160d;stop-opacity:1" + offset="0" + id="stop9352" /> + <stop + style="stop-color:#d86360;stop-opacity:1" + offset="1" + id="stop9354" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9330"> + <stop + style="stop-color:#d45500;stop-opacity:1;" + offset="0" + id="stop9326" /> + <stop + style="stop-color:#a24100;stop-opacity:1" + offset="1" + id="stop9328" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9303"> + <stop + style="stop-color:#c7c7c7;stop-opacity:1" + offset="0" + id="stop9299" /> + <stop + style="stop-color:#596b69;stop-opacity:1" + offset="1" + id="stop9301" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9295"> + <stop + style="stop-color:#916f6f;stop-opacity:1;" + offset="0" + id="stop9291" /> + <stop + style="stop-color:#6c5e59;stop-opacity:1" + offset="1" + id="stop9293" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9277"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop9273" /> + <stop + id="stop9281" + offset="0.34198725" + style="stop-color:#f18989;stop-opacity:0.65490198" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop9275" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9245"> + <stop + style="stop-color:#470c07;stop-opacity:1" + offset="0" + id="stop9241" /> + <stop + style="stop-color:#b42e2a;stop-opacity:1" + offset="1" + id="stop9243" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9208"> + <stop + style="stop-color:#ec4c10;stop-opacity:1;" + offset="0" + id="stop9204" /> + <stop + style="stop-color:#841b12;stop-opacity:1" + offset="1" + id="stop9206" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9200"> + <stop + style="stop-color:#cc3a35;stop-opacity:1;" + offset="0" + id="stop9196" /> + <stop + style="stop-color:#76150b;stop-opacity:1" + offset="1" + id="stop9198" /> + </linearGradient> + <linearGradient + id="linearGradient9138" + inkscape:collect="always"> + <stop + id="stop9134" + offset="0" + style="stop-color:#b9acba;stop-opacity:1;" /> + <stop + id="stop9136" + offset="1" + style="stop-color:#948597;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8771"> + <stop + style="stop-color:#826982;stop-opacity:1" + offset="0" + id="stop8767" /> + <stop + style="stop-color:#b39bb4;stop-opacity:1" + offset="1" + id="stop8769" /> + </linearGradient> + <linearGradient + id="linearGradient8213" + inkscape:collect="always"> + <stop + id="stop8209" + offset="0" + style="stop-color:#cab5cb;stop-opacity:1" /> + <stop + id="stop8211" + offset="1" + style="stop-color:#a89ba9;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8181"> + <stop + style="stop-color:#b9acba;stop-opacity:1;" + offset="0" + id="stop8177" /> + <stop + style="stop-color:#a89ba9;stop-opacity:1" + offset="1" + id="stop8179" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8015"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop8011" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop8013" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8005"> + <stop + style="stop-color:#7d7d7d;stop-opacity:1" + offset="0" + id="stop8001" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop8003" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7213"> + <stop + style="stop-color:#6c7f7d;stop-opacity:1" + offset="0" + id="stop7209" /> + <stop + id="stop7215" + offset="0.49975234" + style="stop-color:#93a6a4;stop-opacity:1" /> + <stop + style="stop-color:#bfd2d0;stop-opacity:1" + offset="1" + id="stop7211" /> + </linearGradient> + <linearGradient + id="linearGradient7175" + inkscape:collect="always"> + <stop + id="stop7171" + offset="0" + style="stop-color:#f2f5f4;stop-opacity:1" /> + <stop + id="stop7173" + offset="1" + style="stop-color:#dce4e3;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7140"> + <stop + style="stop-color:#dce4e3;stop-opacity:1;" + offset="0" + id="stop7136" /> + <stop + style="stop-color:#dce4e3;stop-opacity:0;" + offset="1" + id="stop7138" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7127"> + <stop + style="stop-color:#009bff;stop-opacity:0.26262626" + offset="0" + id="stop7123" /> + <stop + style="stop-color:#0093ff;stop-opacity:0" + offset="1" + id="stop7125" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7090"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop7086" /> + <stop + style="stop-color:#ffffff;stop-opacity:0.30303031" + offset="1" + id="stop7088" /> + </linearGradient> + <linearGradient + id="linearGradient6931" + inkscape:collect="always"> + <stop + id="stop6927" + offset="0" + style="stop-color:#6bd5d7;stop-opacity:1" /> + <stop + id="stop6929" + offset="1" + style="stop-color:#b7ebeb;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6915"> + <stop + style="stop-color:#9fe4e5;stop-opacity:1" + offset="0" + id="stop6911" /> + <stop + style="stop-color:#f8fdfe;stop-opacity:1" + offset="1" + id="stop6913" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6881"> + <stop + style="stop-color:#6c7f7d;stop-opacity:1;" + offset="0" + id="stop6877" /> + <stop + style="stop-color:#916f6f;stop-opacity:1" + offset="1" + id="stop6879" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6873"> + <stop + style="stop-color:#cfc1c1;stop-opacity:1;" + offset="0" + id="stop6869" /> + <stop + style="stop-color:#b8cbc9;stop-opacity:1" + offset="1" + id="stop6871" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6414"> + <stop + style="stop-color:#8385a8;stop-opacity:1;" + offset="0" + id="stop6410" /> + <stop + id="stop6424" + offset="0.74836773" + style="stop-color:#ea8c10;stop-opacity:1" /> + <stop + style="stop-color:#a47d78;stop-opacity:1" + offset="1" + id="stop6412" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6406"> + <stop + style="stop-color:#c0c2e5;stop-opacity:1;" + offset="0" + id="stop6402" /> + <stop + id="stop6422" + offset="0.73528874" + style="stop-color:#fdc579;stop-opacity:1" /> + <stop + style="stop-color:#f9ca94;stop-opacity:1" + offset="1" + id="stop6404" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6398"> + <stop + style="stop-color:#a28888;stop-opacity:1;" + offset="0" + id="stop6394" /> + <stop + id="stop6420" + offset="0.72354031" + style="stop-color:#e78a14;stop-opacity:1" /> + <stop + style="stop-color:#c67f7f;stop-opacity:1" + offset="1" + id="stop6396" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6390"> + <stop + style="stop-color:#c9bdca;stop-opacity:1;" + offset="0" + id="stop6386" /> + <stop + id="stop6418" + offset="0.72347206" + style="stop-color:#fdbf6a;stop-opacity:1" /> + <stop + style="stop-color:#eac5bf;stop-opacity:1" + offset="1" + id="stop6388" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6369"> + <stop + style="stop-color:#666887;stop-opacity:1;" + offset="0" + id="stop6365" /> + <stop + style="stop-color:#3c3d57;stop-opacity:1" + offset="1" + id="stop6367" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6361"> + <stop + style="stop-color:#7d7fa5;stop-opacity:1;" + offset="0" + id="stop6357" /> + <stop + style="stop-color:#515376;stop-opacity:1" + offset="1" + id="stop6359" /> + </linearGradient> + <linearGradient + id="linearGradient5935" + inkscape:collect="always"> + <stop + id="stop5931" + offset="0" + style="stop-color:#666887;stop-opacity:1" /> + <stop + id="stop5933" + offset="1" + style="stop-color:#7d7fa5;stop-opacity:0.11111111" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5893"> + <stop + style="stop-color:#00ffff;stop-opacity:1;" + offset="0" + id="stop5889" /> + <stop + style="stop-color:#00ffff;stop-opacity:0;" + offset="1" + id="stop5891" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5853"> + <stop + style="stop-color:#071a18;stop-opacity:1;" + offset="0" + id="stop5849" /> + <stop + style="stop-color:#333333;stop-opacity:1" + offset="1" + id="stop5851" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5736"> + <stop + style="stop-color:#207eff;stop-opacity:1" + offset="0" + id="stop5732" /> + <stop + style="stop-color:#9fe4e5;stop-opacity:1" + offset="1" + id="stop5734" /> + </linearGradient> + <linearGradient + id="linearGradient3462" + inkscape:collect="always"> + <stop + id="stop3458" + offset="0" + style="stop-color:#8c9f9d;stop-opacity:1" /> + <stop + id="stop3460" + offset="1" + style="stop-color:#bfd2d0;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3335"> + <stop + style="stop-color:#999999;stop-opacity:1;" + offset="0" + id="stop3331" /> + <stop + style="stop-color:#b3b3b3;stop-opacity:1" + offset="1" + id="stop3333" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3213"> + <stop + style="stop-color:#ff8080;stop-opacity:1" + offset="0" + id="stop3209" /> + <stop + style="stop-color:#c83737;stop-opacity:1" + offset="1" + id="stop3211" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3131"> + <stop + style="stop-color:#09a9ff;stop-opacity:1" + offset="0" + id="stop3127" /> + <stop + style="stop-color:#006dff;stop-opacity:1" + offset="1" + id="stop3129" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2478"> + <stop + style="stop-color:#ffffff;stop-opacity:0.07575758" + offset="0" + id="stop2472" /> + <stop + id="stop2474" + offset="0.51615179" + style="stop-color:#fefaf9;stop-opacity:1" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2476" /> + </linearGradient> + <linearGradient + id="linearGradient2365" + inkscape:collect="always"> + <stop + id="stop2361" + offset="0" + style="stop-color:#c8c8c8;stop-opacity:1" /> + <stop + id="stop2363" + offset="1" + style="stop-color:#989898;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient2186" + inkscape:collect="always"> + <stop + id="stop2182" + offset="0" + style="stop-color:#ffffff;stop-opacity:0.07575758" /> + <stop + style="stop-color:#fefaf9;stop-opacity:1" + offset="0.4447301" + id="stop2188" /> + <stop + id="stop2184" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2142"> + <stop + style="stop-color:#f2644a;stop-opacity:1" + offset="0" + id="stop2138" /> + <stop + style="stop-color:#dc3e22;stop-opacity:1" + offset="1" + id="stop2140" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2134"> + <stop + style="stop-color:#674340;stop-opacity:1" + offset="0" + id="stop2130" /> + <stop + style="stop-color:#ac4f41;stop-opacity:1" + offset="1" + id="stop2132" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2004"> + <stop + style="stop-color:#426c6d;stop-opacity:1" + offset="0" + id="stop2000" /> + <stop + style="stop-color:#538889;stop-opacity:1" + offset="1" + id="stop2002" /> + </linearGradient> + <linearGradient + id="linearGradient1959" + inkscape:collect="always"> + <stop + id="stop1955" + offset="0" + style="stop-color:#a0e5e6;stop-opacity:1" /> + <stop + id="stop1957" + offset="1" + style="stop-color:#71b6b7;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1916"> + <stop + style="stop-color:#a0e5e6;stop-opacity:1" + offset="0" + id="stop1912" /> + <stop + id="stop1918" + offset="0.55009604" + style="stop-color:#426c6d;stop-opacity:1" /> + <stop + style="stop-color:#538889;stop-opacity:1" + offset="1" + id="stop1914" /> + </linearGradient> + <linearGradient + id="linearGradient1873" + inkscape:collect="always"> + <stop + id="stop1869" + offset="0" + style="stop-color:#a0e5e6;stop-opacity:1" /> + <stop + id="stop1871" + offset="1" + style="stop-color:#538889;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1824"> + <stop + style="stop-color:#fe6969;stop-opacity:1;" + offset="0" + id="stop1820" /> + <stop + style="stop-color:#fe6969;stop-opacity:0;" + offset="1" + id="stop1822" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1816"> + <stop + style="stop-color:#7d1313;stop-opacity:1;" + offset="0" + id="stop1812" /> + <stop + style="stop-color:#7d1313;stop-opacity:0;" + offset="1" + id="stop1814" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1801"> + <stop + style="stop-color:#e1462e;stop-opacity:1" + offset="0" + id="stop1795" /> + <stop + id="stop1797" + offset="0.45722297" + style="stop-color:#fac0b5;stop-opacity:1" /> + <stop + style="stop-color:#ce382e;stop-opacity:1" + offset="1" + id="stop1799" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1749"> + <stop + style="stop-color:#fe7d7d;stop-opacity:1;" + offset="0" + id="stop1745" /> + <stop + style="stop-color:#fe7d7d;stop-opacity:0;" + offset="1" + id="stop1747" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5865"> + <stop + style="stop-color:#e3462d;stop-opacity:0.39898989" + offset="0" + id="stop5861" /> + <stop + id="stop5869" + offset="0.21562541" + style="stop-color:#a82a19;stop-opacity:1" /> + <stop + style="stop-color:#e4472d;stop-opacity:0.33333334" + offset="1" + id="stop5863" /> + </linearGradient> + <linearGradient + id="linearGradient5822" + inkscape:collect="always"> + <stop + id="stop5818" + offset="0" + style="stop-color:#e1462e;stop-opacity:1" /> + <stop + style="stop-color:#fac0b5;stop-opacity:1" + offset="0.47435614" + id="stop5824" /> + <stop + id="stop5820" + offset="1" + style="stop-color:#ce382e;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5572"> + <stop + style="stop-color:#cd3625;stop-opacity:1" + offset="0" + id="stop5568" /> + <stop + style="stop-color:#7d1313;stop-opacity:1" + offset="1" + id="stop5570" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5507"> + <stop + style="stop-color:#e97d7d;stop-opacity:1;" + offset="0" + id="stop5503" /> + <stop + style="stop-color:#e97d7d;stop-opacity:0;" + offset="1" + id="stop5505" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5499"> + <stop + style="stop-color:#c12d2d;stop-opacity:1;" + offset="0" + id="stop5495" /> + <stop + style="stop-color:#961f1f;stop-opacity:1" + offset="1" + id="stop5497" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5491"> + <stop + style="stop-color:#ec4c10;stop-opacity:1;" + offset="0" + id="stop5487" /> + <stop + style="stop-color:#c12d2d;stop-opacity:1" + offset="1" + id="stop5489" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5463"> + <stop + style="stop-color:#fac0b5;stop-opacity:1;" + offset="0" + id="stop5459" /> + <stop + style="stop-color:#fac0b5;stop-opacity:0;" + offset="1" + id="stop5461" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5451"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop5447" /> + <stop + id="stop5455" + offset="0.53147197" + style="stop-color:#fac0b5;stop-opacity:1" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5449" /> + </linearGradient> + <linearGradient + id="linearGradient5443" + inkscape:collect="always"> + <stop + id="stop5439" + offset="0" + style="stop-color:#fac0b5;stop-opacity:1" /> + <stop + id="stop5441" + offset="1" + style="stop-color:#cb3936;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1856"> + <stop + style="stop-color:#a098fb;stop-opacity:1" + offset="0" + id="stop1852" /> + <stop + style="stop-color:#3e37cc;stop-opacity:0" + offset="1" + id="stop1854" /> + </linearGradient> + <linearGradient + id="linearGradient1798" + inkscape:collect="always"> + <stop + id="stop1794" + offset="0" + style="stop-color:#ffde59;stop-opacity:1" /> + <stop + id="stop1796" + offset="1" + style="stop-color:#ffaa02;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient1688" + inkscape:collect="always"> + <stop + id="stop1684" + offset="0" + style="stop-color:#ff9d10;stop-opacity:1" /> + <stop + id="stop1686" + offset="1" + style="stop-color:#ef6d00;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2368"> + <stop + style="stop-color:#d40000;stop-opacity:1" + offset="0" + id="stop2364" /> + <stop + id="stop2372" + offset="0.32535639" + style="stop-color:#e8492c;stop-opacity:1" /> + <stop + style="stop-color:#d63f31;stop-opacity:1;" + offset="0.67301106" + id="stop2374" /> + <stop + style="stop-color:#c83737;stop-opacity:1" + offset="1" + id="stop2366" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2343"> + <stop + style="stop-color:#3a6587;stop-opacity:1;" + offset="0" + id="stop2339" /> + <stop + style="stop-color:#3a6587;stop-opacity:0;" + offset="1" + id="stop2341" /> + </linearGradient> + <linearGradient + id="linearGradient2127" + inkscape:collect="always"> + <stop + id="stop2123" + offset="0" + style="stop-color:#000000;stop-opacity:0.21428572" /> + <stop + id="stop2125" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2101"> + <stop + style="stop-color:#000000;stop-opacity:0.4732143" + offset="0" + id="stop2097" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop2099" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2093"> + <stop + style="stop-color:#3d6a8e;stop-opacity:1" + offset="0" + id="stop2089" /> + <stop + style="stop-color:#263f54;stop-opacity:1" + offset="1" + id="stop2091" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2153"> + <stop + style="stop-color:#e49dbb;stop-opacity:1" + offset="0" + id="stop2149" /> + <stop + style="stop-color:#cda5c8;stop-opacity:1" + offset="1" + id="stop2151" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2182"> + <stop + style="stop-color:#f2e9f2;stop-opacity:1;" + offset="0" + id="stop2178" /> + <stop + style="stop-color:#968199;stop-opacity:1" + offset="1" + id="stop2180" /> + </linearGradient> + <inkscape:path-effect + effect="simplify" + id="path-effect805" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect800" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect795" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect792" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="powerstroke" + id="path-effect787" + is_visible="true" + offset_points="1.6031372,0.18570875 | 1.9715589,0.21232834 | 2.8336885,0.24071138" + sort_points="true" + interpolator_type="CentripetalCatmullRom" + interpolator_beta="0.75" + start_linecap_type="zerowidth" + linejoin_type="spiro" + miter_limit="4" + scale_width="1" + end_linecap_type="zerowidth" /> + <inkscape:path-effect + effect="simplify" + id="path-effect785" + is_visible="true" + steps="1" + threshold="0.0032025118" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect710" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect705" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect702" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2182" + id="linearGradient2184" + x1="81.980667" + y1="71.754539" + x2="89.461525" + y2="71.960426" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2182" + id="linearGradient2192" + x1="83.078064" + y1="64.418991" + x2="87.426796" + y2="65.620049" + gradientUnits="userSpaceOnUse" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="83.155289" + x2="88.11174" + y1="82.718597" + x1="82.632668" + id="linearGradient1503" + xlink:href="#linearGradient2182" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2153" + id="linearGradient2155" + x1="39.120117" + y1="106.89397" + x2="81.054131" + y2="116.2279" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2101" + id="linearGradient2103" + x1="-174.9084" + y1="-108.07188" + x2="-226.59836" + y2="-171.48766" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-143.6488,-47.365281)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2137" + x1="-180.07468" + y1="-135.80338" + x2="-217.70445" + y2="-173.55154" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-143.6488,-47.365281)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2093" + id="radialGradient2271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.83210314,-143.6488,-64.118247)" + cx="-140.93111" + cy="-99.781296" + fx="-140.93111" + fy="-99.781296" + r="99.43441" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2273" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-143.6488,-47.365281)" + x1="-111.45802" + y1="-96.397408" + x2="-68.906311" + y2="-174.08859" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2275" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(-92.364269,-251.86501,-58.120452)" + x1="-148.08713" + y1="-119.14465" + x2="-183.59157" + y2="-134.26678" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2277" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(177.63573,-210.44967,-125.75815)" + x1="-145.57951" + y1="-106.67687" + x2="-197.37419" + y2="-133.18727" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2279" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(177.63573,-209.3024,-140.64101)" + x1="-225.84842" + y1="-211.04114" + x2="-161.39096" + y2="-112.15256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2281" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(-92.364269,-269.91027,-62.752992)" + x1="-168.26738" + y1="-100.93788" + x2="-178.31746" + y2="-120.83762" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2283" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(177.63573,-221.63211,-136.04037)" + x1="-166.2701" + y1="-71.590698" + x2="-198.07181" + y2="-140.77466" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2279-8" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(177.63573,-196.56633,-139.73131)" + x1="-133.13521" + y1="-181.42682" + x2="-173.14758" + y2="-169.27779" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2343" + id="linearGradient2345" + x1="-184.89165" + y1="-97.862373" + x2="-199.44157" + y2="-67.801643" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2368" + id="linearGradient2370" + x1="127.48694" + y1="285.45941" + x2="113.79148" + y2="253.35014" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1658" + x1="49.047424" + y1="191.91698" + x2="50.940094" + y2="198.13113" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1666" + x1="47.658005" + y1="188.32237" + x2="48.418171" + y2="189.75931" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1674" + x1="46.620922" + y1="192.81369" + x2="49.872433" + y2="200.41447" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1682" + x1="51.777439" + y1="190.72174" + x2="53.381378" + y2="195.8344" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1696" + x1="61.835602" + y1="191.70372" + x2="63.056763" + y2="198.36537" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1704" + x1="71.307335" + y1="194.05963" + x2="73.695602" + y2="198.88661" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1712" + x1="77.06781" + y1="196.87056" + x2="81.337433" + y2="200.83524" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1720" + x1="86.591133" + y1="193.23225" + x2="89.874695" + y2="197.95181" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1728" + x1="95.698845" + y1="191.24284" + x2="97.622353" + y2="197.97285" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1736" + x1="103.38288" + y1="189.46896" + x2="106.368" + y2="195.76376" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1744" + x1="54.011269" + y1="190.13614" + x2="56.201206" + y2="199.96028" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1752" + x1="228.38199" + y1="307.43832" + x2="243.60822" + y2="354.45377" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1760" + x1="261.54636" + y1="320.58774" + x2="275.91272" + y2="359.75836" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1768" + x1="76.627373" + y1="197.13812" + x2="80.603378" + y2="205.20459" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1776" + x1="302.71448" + y1="721.08661" + x2="310.64301" + y2="757.55042" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1784" + x1="334.60065" + y1="723.78894" + x2="349.79459" + y2="764.21423" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1792" + x1="370.63516" + y1="725.38263" + x2="386.28214" + y2="754.3891" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1856" + id="radialGradient1858" + cx="100.74828" + cy="182.6633" + fx="100.74828" + fy="182.6633" + r="60.371323" + gradientTransform="matrix(1,0,0,0.90996779,-10.025162,21.141768)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5443" + id="linearGradient5437" + x1="100.3382" + y1="259.25647" + x2="104.96861" + y2="264.43817" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5451" + id="linearGradient5453" + x1="97.95031" + y1="258.64862" + x2="102.33461" + y2="258.69153" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5463" + id="linearGradient5465" + x1="99.836853" + y1="256.65952" + x2="99.329041" + y2="251.58076" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5491" + id="linearGradient5493" + x1="103.70621" + y1="261.58749" + x2="107.57946" + y2="265.97992" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5499" + id="linearGradient5501" + x1="432.31735" + y1="506.32312" + x2="448.77618" + y2="532.99725" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5507" + id="linearGradient5509" + x1="89.759438" + y1="253.5235" + x2="92.729401" + y2="250.1992" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5451" + id="linearGradient5521" + x1="123.78666" + y1="248.78648" + x2="126.22018" + y2="248.78648" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5572" + id="linearGradient5574" + x1="107.65202" + y1="271.91544" + x2="109.0341" + y2="277.50891" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + gradientTransform="translate(10.895394,-0.03731586)" + inkscape:collect="always" + xlink:href="#linearGradient5822" + id="linearGradient5574-1" + x1="109.8844" + y1="270.09552" + x2="109.61646" + y2="278.35818" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5865" + id="radialGradient5871" + cx="484.14655" + cy="559.60339" + fx="484.14655" + fy="559.60339" + r="50.772198" + gradientTransform="matrix(0.38264988,-0.27602328,0.10361158,0.14363626,-101.7135,329.07379)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1749" + id="linearGradient1751" + x1="110.79502" + y1="284.23889" + x2="113.3787" + y2="291.37277" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1816" + id="linearGradient1766" + x1="110.57137" + y1="281.93372" + x2="114.24696" + y2="292.78015" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + gradientTransform="translate(3.2055584,0.60026896)" + inkscape:collect="always" + xlink:href="#linearGradient1801" + id="linearGradient5574-1-0" + x1="109.8844" + y1="270.09552" + x2="109.61646" + y2="278.35818" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1816" + id="linearGradient1818" + x1="117.36659" + y1="282.32178" + x2="125.10149" + y2="280.05695" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1824" + id="linearGradient1826" + x1="116.54169" + y1="282.23895" + x2="120.63911" + y2="279.25348" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1959" + id="linearGradient1850" + x1="95.560585" + y1="266.64401" + x2="98.468903" + y2="273.47287" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1959" + id="linearGradient1859" + x1="101.89999" + y1="281.58646" + x2="96.961571" + y2="277.5715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1873" + id="linearGradient1867" + x1="86.99482" + y1="279.86798" + x2="95.772545" + y2="276.2991" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1916" + id="linearGradient1910" + x1="367.21609" + y1="502.75912" + x2="367.75583" + y2="539.98242" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1959" + id="linearGradient1953" + x1="372.97504" + y1="584.71906" + x2="398.66269" + y2="559.77386" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2004" + id="linearGradient1998" + x1="351.55087" + y1="539.5257" + x2="352.55878" + y2="574.92584" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient2014" + x1="97.533173" + y1="265.34024" + x2="94.415115" + y2="264.45456" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient2024" + x1="104.50703" + y1="276.21896" + x2="103.76228" + y2="280.93741" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient2034" + x1="93.602226" + y1="285.99313" + x2="93.28775" + y2="278.71817" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2134" + id="linearGradient2136" + x1="139.80453" + y1="258.5845" + x2="149.15398" + y2="254.6725" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2142" + id="radialGradient2146" + cx="146.92781" + cy="258.69992" + fx="146.92781" + fy="258.69992" + r="7.5281217" + gradientTransform="matrix(1,0,0,0.46400087,10.583333,138.34581)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2186" + id="linearGradient2164" + x1="141.65044" + y1="259.93835" + x2="150.83614" + y2="259.93835" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2186" + id="linearGradient2172" + x1="156.58759" + y1="254.92441" + x2="158.16434" + y2="254.8031" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient2180" + x1="157.09332" + y1="255.27631" + x2="156.46956" + y2="257.66165" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + gradientTransform="translate(10.892181,0.24021476)" + inkscape:collect="always" + xlink:href="#linearGradient2209" + id="linearGradient2211" + x1="132.52798" + y1="265.60092" + x2="143.98949" + y2="250.98236" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2209"> + <stop + style="stop-color:#c61b10;stop-opacity:0" + offset="0" + id="stop2205" /> + <stop + style="stop-color:#f34a2e;stop-opacity:1" + offset="1" + id="stop2207" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2365" + id="linearGradient2359" + x1="391.29086" + y1="410.49789" + x2="574.1355" + y2="366.84381" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2478" + id="linearGradient2470" + x1="46.134453" + y1="189.10133" + x2="47.782082" + y2="189.9709" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3131" + id="radialGradient3133" + cx="112.19923" + cy="183.47735" + fx="112.19923" + fy="183.47735" + r="5.4423261" + gradientTransform="matrix(1,0,0,0.76843489,0,42.486954)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3213" + id="linearGradient3215" + x1="55.205528" + y1="87.586723" + x2="66.870529" + y2="86.110115" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3335" + id="linearGradient3337" + x1="53.994965" + y1="198.4433" + x2="57.193489" + y2="198.29448" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3335" + id="linearGradient3353" + x1="60.321545" + y1="199.85323" + x2="66.741997" + y2="198.8941" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3462" + id="linearGradient3456" + x1="141.38148" + y1="86.132889" + x2="171.71672" + y2="86.132889" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7213" + id="linearGradient3470" + x1="137.67491" + y1="101.67153" + x2="140.25513" + y2="70.853043" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3213" + id="linearGradient5722" + gradientUnits="userSpaceOnUse" + x1="64.740524" + y1="87.874657" + x2="68.27195" + y2="87.901047" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3213" + id="linearGradient5724" + gradientUnits="userSpaceOnUse" + x1="65.16906" + y1="84.987465" + x2="68.304024" + y2="84.974266" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3213" + id="linearGradient5726" + gradientUnits="userSpaceOnUse" + x1="64.754951" + y1="83.82959" + x2="68.269485" + y2="83.85598" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5736" + id="linearGradient5738" + x1="80.209724" + y1="135.82549" + x2="68.121544" + y2="169.54279" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(9.8261043,145.87655,109.85227)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5853" + id="linearGradient5855" + x1="132.65871" + y1="86.101562" + x2="127.17634" + y2="87.526802" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5893" + id="linearGradient5895" + x1="138.61208" + y1="201.57948" + x2="140.24069" + y2="203.81168" + gradientUnits="userSpaceOnUse" /> + <linearGradient + gradientTransform="translate(0.04960863,131.78423)" + inkscape:collect="always" + xlink:href="#linearGradient5935" + id="linearGradient5905" + x1="138.12279" + y1="71.454033" + x2="142.89778" + y2="71.454033" + gradientUnits="userSpaceOnUse" /> + <linearGradient + gradientTransform="matrix(1.1845034,-0.10762437,0.08962705,0.98642653,-31.535097,150.32383)" + inkscape:collect="always" + xlink:href="#linearGradient5935" + id="linearGradient5905-1" + x1="138.12279" + y1="71.454033" + x2="142.89778" + y2="71.454033" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6361" + id="linearGradient6363" + x1="137.61082" + y1="80.033249" + x2="143.72246" + y2="109.37137" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6369" + id="linearGradient6371" + x1="484.16217" + y1="261.63379" + x2="522.39258" + y2="341.63379" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6390" + id="linearGradient6392" + x1="102.09664" + y1="173.66351" + x2="139.02469" + y2="162.25111" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6398" + id="linearGradient6400" + x1="101.14867" + y1="177.12999" + x2="140.42969" + y2="164.59505" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6406" + id="linearGradient6408" + x1="94.582085" + y1="185.18106" + x2="147.77621" + y2="173.11385" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6414" + id="linearGradient6416" + x1="93.866913" + y1="187.52071" + x2="149.65094" + y2="176.76311" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2478" + id="linearGradient6460" + x1="104.37839" + y1="175.91054" + x2="147.83046" + y2="161.42461" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2478" + id="linearGradient6494" + x1="94.341217" + y1="190.49155" + x2="149.69829" + y2="174.02124" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6873" + id="linearGradient6875" + x1="76.371437" + y1="126.70215" + x2="81.608719" + y2="126.96609" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6881" + id="linearGradient6883" + x1="84.542679" + y1="120.18748" + x2="76.826401" + y2="120.18747" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6873" + id="linearGradient6899" + x1="76.347641" + y1="123.40604" + x2="81.479736" + y2="124.37894" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6931" + id="linearGradient6909" + x1="96.142067" + y1="126.01895" + x2="104.65712" + y2="126.25505" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3666" + id="linearGradient6917" + x1="90.191467" + y1="127.63151" + x2="107.96541" + y2="126.10258" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6915" + id="linearGradient6925" + x1="91.392937" + y1="126.52495" + x2="104.06738" + y2="122.72456" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3660" + id="linearGradient6996" + gradientUnits="userSpaceOnUse" + x1="91.392937" + y1="126.52495" + x2="104.06738" + y2="122.72456" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3654" + id="linearGradient7000" + gradientUnits="userSpaceOnUse" + x1="90.191467" + y1="127.63151" + x2="106.57357" + y2="125.62816" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7090" + id="linearGradient7092" + x1="93.82683" + y1="237.69422" + x2="141.67752" + y2="237.69422" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7127" + id="linearGradient7129" + x1="171.91302" + y1="56.193466" + x2="154.11978" + y2="67.835136" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.36380208,0.26458333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7140" + id="linearGradient7142" + x1="165.0061" + y1="186.15584" + x2="157.02106" + y2="191.74512" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7175" + id="linearGradient7169" + x1="141.57433" + y1="80.888321" + x2="163.10696" + y2="80.888321" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-0.05278672)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8005" + id="linearGradient8007" + x1="163.78543" + y1="277.65921" + x2="107.79591" + y2="236.45535" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient8017" + x1="39.809143" + y1="207.08017" + x2="130.89851" + y2="240.04326" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8005" + id="linearGradient8025" + x1="48.837944" + y1="307.58972" + x2="49.078606" + y2="315.98849" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9138" + id="linearGradient8183" + x1="116.62489" + y1="111.43256" + x2="123.4342" + y2="116.13562" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8181" + id="linearGradient8191" + x1="110.6484" + y1="108.39176" + x2="118.72864" + y2="108.39176" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8181" + id="linearGradient8199" + x1="112.97784" + y1="104.46082" + x2="120.7669" + y2="104.46082" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8213" + id="linearGradient8207" + x1="123.85036" + y1="112.58893" + x2="130.25452" + y2="114.5672" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8771" + id="linearGradient8773" + x1="84.599838" + y1="88.800003" + x2="84.298767" + y2="81.172318" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9200" + id="linearGradient9202" + x1="153.21982" + y1="278.35431" + x2="157.40152" + y2="293.64468" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9208" + id="linearGradient9210" + x1="56.420364" + y1="312.17862" + x2="67.043205" + y2="330.67242" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9245" + id="linearGradient9247" + x1="60.699871" + y1="325.91476" + x2="62.549652" + y2="312.0795" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9277" + id="linearGradient9279" + x1="143.97565" + y1="281.30991" + x2="156.46088" + y2="294.06696" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9200" + id="linearGradient9289" + x1="160.7417" + y1="280.28775" + x2="165.93733" + y2="287.46204" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9295" + id="linearGradient9297" + x1="163.6188" + y1="287.35489" + x2="165.63641" + y2="282.53198" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9303" + id="linearGradient9305" + x1="161.40216" + y1="271.19415" + x2="167.51399" + y2="277.62466" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9330" + id="linearGradient9332" + x1="149.15614" + y1="285.58084" + x2="151.64053" + y2="290.65381" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3717" + id="linearGradient9358" + x1="144.00711" + y1="269.91507" + x2="145.00533" + y2="268.62897" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9356" + id="linearGradient9366" + x1="179.584" + y1="287.74097" + x2="180.1403" + y2="285.99045" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3622" + id="linearGradient3624" + x1="3.9681463" + y1="105.39001" + x2="21.54732" + y2="108.07631" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3622" + id="linearGradient3632" + x1="3.0088601" + y1="103.99979" + x2="29.506241" + y2="103.99979" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3622" + id="linearGradient3640" + x1="92.056038" + y1="124.83705" + x2="103.53277" + y2="124.83705" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3622" + id="linearGradient3648" + x1="92.056038" + y1="126.10258" + x2="107.96541" + y2="126.10258" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3733" + x1="28.624508" + y1="121.07088" + x2="40.449108" + y2="131.52213" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3741" + x1="28.776918" + y1="120.38439" + x2="40.531261" + y2="132.63091" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3749" + x1="28.565771" + y1="122.17914" + x2="41.270275" + y2="134.00336" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3757" + x1="31.099535" + y1="123.02373" + x2="41.69257" + y2="131.57518" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3765" + x1="31.310682" + y1="122.91815" + x2="41.375847" + y2="132.73648" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3717" + id="linearGradient3791" + x1="153.88297" + y1="261.8468" + x2="155.18002" + y2="260.13199" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3717" + id="linearGradient3799" + x1="175.40033" + y1="271.49759" + x2="175.84297" + y2="270.03287" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3813" + id="linearGradient3807" + x1="161.08191" + y1="268.16992" + x2="166.2769" + y2="264.56168" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3666" + id="linearGradient3830" + gradientUnits="userSpaceOnUse" + x1="13.946231" + y1="210.95882" + x2="29.535089" + y2="216.07622" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4395" + id="linearGradient2172-0" + x1="156.58759" + y1="254.92441" + x2="160.05861" + y2="253.21284" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5276256,0,0,1.5276256,-74.192452,-112.35327)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4387" + id="linearGradient2180-1" + x1="157.09332" + y1="255.27631" + x2="156.84373" + y2="257.70844" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5276256,0,0,1.5276256,-74.192452,-112.35327)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4401" + id="linearGradient4403" + x1="73.401077" + y1="136.26422" + x2="75.163254" + y2="146.09053" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4401" + id="linearGradient4419" + x1="73.490952" + y1="136.54501" + x2="74.387398" + y2="143.09975" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4401" + id="linearGradient4427" + x1="73.371223" + y1="135.85503" + x2="75.614868" + y2="144.61761" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4433" + id="linearGradient4435" + x1="75.407547" + y1="136.18597" + x2="77.168404" + y2="145.21268" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4433" + id="linearGradient4443" + x1="75.51873" + y1="135.66606" + x2="76.747078" + y2="144.48468" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6931" + id="linearGradient15283" + gradientUnits="userSpaceOnUse" + x1="96.142067" + y1="126.01895" + x2="104.65712" + y2="126.25505" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient15343" + id="linearGradient15345" + x1="84.344109" + y1="165.37276" + x2="96.488579" + y2="165.37276" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="640" + inkscape:window-height="480" + id="namedview11486" + showgrid="false" + borderlayer="true" + inkscape:snap-page="true" + inkscape:snap-bbox="false" + inkscape:bbox-nodes="true" + inkscape:current-layer="g15281" /> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g15281" + transform="matrix(1.8951538,0,0,1.8951538,-18.860691,0.59320333)"> + <g + id="layer4" + inkscape:label="background" + style="display:inline" + transform="translate(0,-131.6354)"> + <rect + style="fill:#4e4c61;fill-opacity:1;stroke:none;stroke-width:0.144033" + id="rect2158" + width="198.86882" + height="165.47937" + x="10.695659" + y="131.77419" /> + <g + id="g2269" + transform="translate(394.09537,360.54646)"> + <rect + y="-229.88626" + x="-384.01431" + height="168.47279" + width="198.86882" + id="rect2158-7" + style="display:inline;fill:url(#radialGradient2271);fill-opacity:1;stroke:none;stroke-width:0.144033" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path2087" + d="m -386.2988,-231.00642 55.58354,-11.20851 -58.39542,118.65009 z" + style="fill:url(#linearGradient2103);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2105" + d="m -333.89611,-229.14063 150.44087,135.067353 0.54905,-138.361683 z" + style="fill:url(#linearGradient2273);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path2129" + d="m -393.2054,-158.14569 162.29264,-81.00306 -153.49634,7.53737 z" + style="fill:url(#linearGradient2137);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2129-3" + d="m -245.87217,-53.830845 -139.26598,-193.801305 7.71024,185.779838 z" + style="display:inline;fill:url(#linearGradient2275);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path2129-3-4" + d="m -177.91138,-212.96271 -132.82673,157.067879 151.06901,4.529768 z" + style="display:inline;fill:url(#linearGradient2277);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2129-3-4-7" + d="m -220.10289,-248.58669 -56.7317,195.503644 113.40501,-8.93014 -9.66818,-176.378734 z" + style="display:inline;fill:url(#linearGradient2279);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path2129-3-7" + d="M -236.7388,-37.860371 -358.14574,-255.34435 -396.04325,-60.423698 Z" + style="display:inline;fill:url(#linearGradient2281);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2129-3-4-3" + d="m -200.69089,-233.05708 -168.15658,174.150434 125.05221,-1.165339 109.95783,-177.934285 z" + style="display:inline;fill:url(#linearGradient2283);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2129-3-4-7-9" + d="m -194.60407,-247.29346 -56.7317,195.503651 68.36917,-4.6595 -0.73866,-187.249461 z" + style="display:inline;fill:url(#linearGradient2279-8);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2129-3-4-7-6" + d="m -204.21661,-138.82059 -92.96928,75.535268 111.75784,0.67831 1.86196,-59.430158 z" + style="display:inline;fill:url(#linearGradient2345);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <ellipse + style="fill:url(#radialGradient1858);fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1850" + cx="90.723122" + cy="187.35947" + rx="60.371323" + ry="54.935959" /> + </g> + <g + id="layer7" + inkscape:label="background 1" + style="display:inline"> + <path + style="fill:#4ed2ef;fill-opacity:0.227679;stroke:none;stroke-width:0.254604px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 115.59914,29.19912 c 0,0 2.28787,-4.666961 1.27104,-6.039597 -1.01683,-1.372636 -8.64308,-4.941489 -5.59258,-10.981086 3.0505,-6.0395965 11.69357,-3.5688523 16.52353,-6.0395965 4.82995,-2.4707445 7.62624,-6.58865092 7.62624,-6.58865092 l 74.22879,0.27452671 0.5084,77.41665571 c 0,0 -6.10099,-22.511227 -15.25248,-22.785756 -9.1515,-0.274526 -5.59257,-20.315006 -11.69357,-23.609333 -6.10099,-3.294326 -10.42254,-1.921689 -20.08245,-1.098108 -9.65991,0.823579 -8.38887,-12.353722 -19.57403,-14.000885 -11.18515,-1.647163 -16.26932,2.196217 -17.79457,7.137706 -1.52524,4.941489 -1.01683,7.961287 -10.16832,6.314124 z" + id="path2273" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsscccsssssc" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.263384px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 65.574314,-1.0495631 c 0,0 -31.718671,35.6917031 -9.801882,87.2888251 3.287395,7.739277 42.294635,4.705894 49.630088,12.029271 42.29737,42.227717 17.60794,51.571507 39.75313,51.298347 22.14518,-0.27318 -0.10169,41.86129 -0.10169,41.86129 L 209.61777,166.18816 -0.74163649,166.56235 -0.94319717,-1.222589 Z" + id="path2291" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csssccccc" /> + <path + style="fill:#000000;fill-opacity:0.09375;stroke:none;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 161.89695,136.74034 c 0,0 22.30524,30.29247 -6.36432,29.94578 -28.4722,-0.34431 -60.107488,-0.7176 -73.10689,-0.83785 23.54908,-41.40752 48.50076,-68.769601 112.09757,-68.769601 5.25675,0 15.5734,0.585214 15.5734,0.585214 z" + id="path5371" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscscc" /> + <g + id="g5622" + transform="matrix(0.8689655,0,0,0.8689655,5.6375035,-0.67425985)"> + <g + id="g4665-1-9-30" + transform="matrix(0.11801229,0.02167799,-0.02167799,0.11801229,112.40629,-70.017645)" + style="display:inline;opacity:0.07;fill:#4d4d4d;fill-opacity:1"> + <g + id="g5598-4"> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 492.62799,570.69064 c -3.06742,0 -5.53392,2.4665 -5.53392,5.53393 v 5.05959 c -2.48593,0.61956 -4.83306,1.59009 -6.95694,2.89872 l -3.58387,-3.58388 c -2.169,-2.16899 -5.68391,-2.16899 -7.85291,0 -2.16899,2.169 -2.16899,5.68391 0,7.85291 l 3.53117,3.53117 c -1.3715,2.15754 -2.40541,4.51954 -3.05683,7.06234 h -4.84877 c -3.06743,0 -5.53393,2.4665 -5.53393,5.53393 0,3.06742 2.4665,5.53392 5.53393,5.53392 h 4.53254 c 0.54334,2.68432 1.56178,5.19224 2.89873,7.48398 l -3.05684,3.05683 c -2.16899,2.169 -2.16899,5.68391 0,7.85291 2.169,2.16899 5.68391,2.16899 7.85291,0 l 2.79331,-2.79332 c 2.32696,1.55627 4.95327,2.73002 7.7475,3.42577 v 3.74199 c 0,3.06742 2.4665,5.53392 5.53392,5.53392 3.06743,0 5.53393,-2.4665 5.53393,-5.53392 v -3.53118 c 2.94023,-0.6161 5.66234,-1.76036 8.11642,-3.32035 l 2.47709,2.47709 c 2.169,2.16899 5.68391,2.16899 7.85291,0 2.16899,-2.169 2.16899,-5.68391 0,-7.85291 l -2.5298,-2.52979 c 1.49742,-2.42764 2.63013,-5.12179 3.21495,-8.01102 h 3.68929 c 3.06742,0 5.53392,-2.4665 5.53392,-5.53392 0,-3.06743 -2.4665,-5.53393 -5.53392,-5.53393 h -4.00551 c -0.70391,-2.74763 -1.83491,-5.29808 -3.37306,-7.58938 l 3.00413,-3.00413 c 2.16899,-2.169 2.16899,-5.68391 0,-7.85291 -2.169,-2.16899 -5.68391,-2.16899 -7.85291,0 l -3.26765,3.26765 c -2.24723,-1.3104 -4.6999,-2.29715 -7.32586,-2.84602 v -4.79606 c 0,-3.06743 -2.4665,-5.53393 -5.53393,-5.53393 z m 0.42164,20.87081 c 7.5272,0 13.65035,6.12314 13.65035,13.65035 0,7.5272 -6.12315,13.59764 -13.65035,13.59764 -7.52721,0 -13.59765,-6.07044 -13.59765,-13.59764 0,-7.52721 6.07044,-13.65035 13.59765,-13.65035 z" + id="rect3381-3-0-5" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path3395-4-7-2" + d="m 547.61623,603.67335 c -1.86375,-0.67431 -3.90457,0.2821 -4.5789,2.14583 l -1.11225,3.07417 c -1.64662,-0.17006 -3.28607,-0.0963 -4.8642,0.23186 l -1.38967,-2.96537 c -0.84105,-1.79467 -2.97667,-2.56736 -4.77134,-1.72632 -1.79468,0.84105 -2.56737,2.97668 -1.72632,4.77135 l 1.36925,2.92176 c -1.30761,1.00941 -2.45505,2.21725 -3.40983,3.61902 l -2.94607,-1.0659 c -1.86375,-0.67432 -3.90458,0.28209 -4.5789,2.14583 -0.67431,1.86373 0.2821,3.90456 2.14583,4.57888 l 2.75394,0.9964 c -0.25998,1.75041 -0.1925,3.49807 0.11602,5.18442 l -2.52929,1.1853 c -1.79468,0.84105 -2.56737,2.97669 -1.72633,4.77136 0.84105,1.79466 2.97668,2.56735 4.77135,1.72631 l 2.31125,-1.08313 c 1.07173,1.45711 2.40942,2.74762 3.95422,3.7846 l -0.82261,2.27359 c -0.67432,1.86374 0.28208,3.90457 2.14582,4.57889 1.86374,0.67433 3.90458,-0.28208 4.57888,-2.14583 l 0.77628,-2.14549 c 1.92188,0.27201 3.82736,0.17517 5.66136,-0.23317 l 0.96052,2.04959 c 0.84104,1.79469 2.97668,2.56736 4.77135,1.72632 1.79466,-0.84105 2.56736,-2.97667 1.72631,-4.77134 l -0.98094,-2.09321 c 1.44349,-1.14583 2.72396,-2.53377 3.71443,-4.16066 l 2.24158,0.81102 c 1.86373,0.6743 3.90456,-0.28209 4.57888,-2.14583 0.67433,-1.86374 -0.28208,-3.90458 -2.14582,-4.57889 l -2.43371,-0.88054 c 0.17634,-1.82417 0.0499,-3.62243 -0.38105,-5.35274 l 2.48568,-1.16487 c 1.79469,-0.84105 2.56736,-2.97667 1.72632,-4.77134 -0.84105,-1.79468 -2.97667,-2.56737 -4.77134,-1.72632 l -2.70373,1.26706 c -1.07734,-1.29021 -2.35062,-2.42891 -3.82547,-3.33967 l 1.05432,-2.91404 c 0.67432,-1.86375 -0.28209,-3.90458 -2.14582,-4.5789 z m -4.33189,12.77359 c 4.57345,1.65471 6.94776,6.72114 5.29305,11.29458 -1.65473,4.57346 -6.70957,6.91574 -11.28301,5.26102 -4.57345,-1.65471 -6.92731,-6.67753 -5.27261,-11.25099 1.65472,-4.57344 6.68912,-6.95934 11.26257,-5.30461 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(0.09683675,-0.03704459,0.03798087,0.09928426,193.42871,109.59089)" + id="g8561-9"> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 88.420345,-859.48575 79.285695,-20 -3.5714,64.2857 -71.071495,22.6786 z" + id="path3082-1-8-2-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 92.706045,-792.34295 62.857095,17.8572 60,-27.8572 -50.7142,-13.5714 z" + id="path3084-6-9-5-6" + inkscape:connector-curvature="0" /> + <path + style="fill:#8897a7;fill-opacity:1;stroke:none" + d="m 99.134645,-803.77145 -3.5715,-50 64.999995,-17.8572 -2.1428,49.2857 z" + id="path3086-8-3-5-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#8897a7;fill-opacity:1;stroke:none" + d="m 110.38464,-792.52145 54.4643,-18.9286 22.4999,6.6071 -46.0714,21.0715 z" + id="path3205-7-6-2-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#8897a7;fill-opacity:1;stroke:none" + d="m 159.67034,-788.23575 15,-7.3214 13.0357,3.2142 -16.7857,7.5 z" + id="path3207-9-7-8-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(0.14098869,0.03690014,-0.03690014,0.14098869,128.72216,217.84287)" + id="g5565-6"> + <path + inkscape:connector-curvature="0" + id="path3339-4-8-26" + d="m 225.23567,-1376.6831 11.6167,-7.5761 -6.8185,-11.1117 -11.3642,9.3438 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3341-5-9-78" + d="m 235.58967,-1385.2695 -10.6066,6.8185 3.0305,4.5457 6.0609,2.273 6.8185,-4.7984 -1.2627,-5.5558 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <ellipse + ry="15.026019" + rx="15.531096" + cy="652.97314" + cx="189.27733" + transform="translate(31.033765,-2052.5109)" + id="path3343-3-7-64" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3349-0-2-5" + d="m 194.93107,-1398.9064 h -11.1117" + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3355-8-28-02" + d="m 207.81047,-1419.6146 -6.3134,-10.8591" + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3361-9-2-1" + d="m 231.54907,-1425.1704 1.7678,-12.3744" + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5483-5-8-1" + d="m 214.45927,-1391.8374 v -6.7856 l 7.5,1.9643 0.5357,-7.5 5.3572,3.9286 0.3571,-6.4286" + style="fill:none;stroke:#8897a7;stroke-width:1.78268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.05544805,-0.02067438,0.01818409,0.04876917,145.41997,23.482564)" + id="g3191-3-2-9-46" + style="display:inline;opacity:0.07;fill:#b6d7d0;fill-opacity:1"> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="rect3175-8-0-5-5" + width="71.720833" + height="42.931484" + x="551.03821" + y="81.605591" + transform="matrix(1.8844786,0,0,1.9491873,-506.85253,-347.28497)" + ry="10.354064" + rx="10.101525" /> + <path + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 555.33295,-164.3275 64.19105,0.53624" + id="path3177-7-3-3-46" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 554.87173,-146.43238 81.74893,0.9845" + id="path3179-4-5-25-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 554.87173,-126.56094 87.56611,-0.9845" + id="path3181-2-6-25-6" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 577.30217,122.51676 24.24367,27.27412 -0.50508,-28.28427" + id="path3183-7-6-86-8" + inkscape:connector-curvature="0" + transform="matrix(1.8844786,0,0,1.9491873,-506.85253,-347.28497)" + sodipodi:nodetypes="ccc" /> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(0.23193221,-0.1198233,0.11645613,0.23863824,291.25443,176.87963)" + id="g6142-4-2"> + <path + inkscape:connector-curvature="0" + id="path3327-9-1-9-1-6" + d="m -166.7966,-812.10869 20.7081,2.5253 -1.2627,15.91 -19.9505,-2.778 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3329-5-3-6-6-4" + d="m -159.2204,-815.89679 v 7.8287 l 7.8286,0.2525 -0.2525,-7.3236 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path4653-6-8-7-1-7" + d="m -164.1588,-805.42759 13.6371,1.5152" + style="fill:none;stroke:#37353a;stroke-width:2.7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path4655-3-7-9-6-2" + d="m -164.4113,-800.37689 12.6269,1.5153" + style="fill:none;stroke:#37353a;stroke-width:2.7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(-0.02058078,-0.16047057,0.16047057,-0.02058078,417.19379,-5.5708008)" + id="g5778-6-4"> + <path + inkscape:connector-curvature="0" + id="path3680-5-4-1-5" + d="m 111.55728,-1374.5434 11.5577,-46.2309 39.58516,1.7336 -14.73607,51.1429 z" + style="fill:#ffffff;stroke:none" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3684-6-2-8-6" + d="m 126.87119,-1417.1627 30.05014,1.5893 -10.97986,41.03 -29.47222,-4.9121 z" + style="fill:#8897a7;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3686-6-5-6-4" + d="m 130.33848,-1404.8825 16.18091,0.5779" + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3688-1-8-2-5" + d="m 126.87119,-1396.7921 15.02507,0.8668" + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3690-4-6-1-3" + d="m 124.84859,-1387.2569 14.44715,0.8668" + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3682-1-2-4-2" + d="m 134.81719,-1414.9955 0.72226,-10.402 15.02507,1.7338 -2.60045,10.4018 z" + style="fill:#ffffff;stroke:none" /> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(0.10337933,0.10050375,-0.10050375,0.10337933,-56.278004,60.718851)" + id="g6772-9"> + <g + transform="matrix(0.90155579,0.63995361,-0.63995361,0.90155579,-459.65513,-565.61688)" + id="g6820-25"> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 616.47141,-1393.9366 43.91929,1.7336 -0.57792,5.201 -16.75867,-0.1723 -0.68305,7.1068 -9.71889,-1.1557 0.57792,-5.7788 -15.02507,-0.5779 z" + id="path3652-0-5-40" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 644.78779,-1383.5347 -11.8467,-0.5779 c -1.85233,-0.024 -3.49578,0.4392 -4.53547,2.3115 l -4.99963,25.138 c 0,2.6588 1.32231,4.7877 4.04521,6.3568 l 10.69086,0.8669 c 3.67018,0.5983 6.33841,-3.0549 6.37133,-6.0533 l 2.29701,-24.5748 c 0.25662,-1.466 -0.65208,-2.5437 -2.02261,-3.4672 z" + id="path3654-1-9-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 630.91856,-1352.9595 -0.95155,6.0183 -5.86345,-0.6305 2.80186,13.7176 7.07178,1.1908 6.47639,-12.4421 -5.50737,-1.1207 1.31051,-6.0853 c -1.37402,-1.7841 -3.69517,-1.554 -5.33817,-0.6481 z" + id="path3656-5-6-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#8897a7;fill-opacity:1;stroke:none" + d="m 637.66803,-1379.8774 -2.21843,24.4031 -8.31924,-0.2773 4.71421,-23.5712 z" + id="path9181-2-5" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(0.04080815,-0.0271914,0.0280271,0.03540497,193.01664,39.571935)" + id="g8080-0-2"> + <path + sodipodi:nodetypes="ccccccccccccccccc" + style="fill:#ffffff;stroke:none" + d="m 467.28125,-318.28125 c -9.59789,1.39202 -17.9039,5.4961 -28.78125,4.3125 -12.38851,-1.6272 -25.34399,2.57984 -37.25,-1.65625 -11.96927,-2.18718 -29.85667,5.15813 -33.65625,10.09375 -33.37772,27.73315 -65.79415,76.99091 -64.65111,116.12271 0.54207,22.57556 14.5679,50.30469 40.11986,50.15854 11.72366,-0.38056 23.09965,-6.45906 29.03125,-16.78125 5.48662,-7.64498 11.74,-15.14409 17.15625,-22.65625 4.21285,-1.60515 14.15578,-1.1032 14.15578,-1.1032 0,0 41.05114,-0.28586 57.68797,11.91566 19.63805,12.36934 33.55134,31.8791 51.34375,46.375 17.64711,11.47569 44.02079,4.03924 53.34375,-14.75 8.98824,-14.70658 8.26695,-32.95118 4.25756,-49.14431 -4.78782,-33.13415 -10.56028,-67.76771 -29.11648,-96.1865 -9.80726,-12.80727 -17.72715,-20.13636 -31.53133,-28.09342 -12.97502,-6.2263 -27.64937,-9.19898 -42.10975,-8.60702 z" + id="path4949-8-2-7-8" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path4951-2-7-3" + d="m 521.84458,-284.67744 c 7.8722,19.74622 17.66278,39.83526 19.99886,61.17902 3.30157,23.1362 5.8573,46.61661 3.34456,70.00112 -0.53057,6.76177 -1.04268,13.89277 -1.57325,20.65454 11.83084,-9.29251 16.80513,-25.91559 14.05478,-40.48221 -2.84713,-25.64869 -7.47821,-51.18106 -14.94832,-75.90273 -3.51474,-11.49682 -9.0783,-22.06398 -15.2007,-32.26316 -1.65246,-0.92956 -4.02347,-2.25701 -5.67593,-3.18658 z" + style="fill:#37353a;fill-opacity:1;stroke:none" /> + <ellipse + ry="8.8388348" + rx="9.0913725" + cy="160.65002" + cx="134.85536" + style="fill:#37353a;fill-opacity:1;stroke:none" + id="path4997-3-8-7" + transform="matrix(1.6341964,0,0,1.6799594,234.481,-514.17198)" /> + <ellipse + ry="8.8388348" + rx="9.0913725" + cy="160.65002" + cx="134.85536" + transform="matrix(1.6341964,0,0,1.6799594,267.44417,-540.28614)" + style="fill:#37353a;fill-opacity:1;stroke:none" + id="path4997-0-3-7-7" /> + <ellipse + ry="8.8388348" + rx="9.0913725" + cy="160.65002" + cx="134.85536" + transform="matrix(1.6341964,0,0,1.6799594,268.37501,-483.90688)" + style="fill:#37353a;fill-opacity:1;stroke:none" + id="path4997-0-9-41-3-6" /> + <ellipse + ry="8.8388348" + rx="9.0913725" + cy="160.65002" + cx="134.85536" + transform="matrix(1.6341964,0,0,1.6799594,293.55256,-512.90075)" + style="fill:#37353a;fill-opacity:1;stroke:none" + id="path4997-0-9-4-1-0-7" /> + <path + style="fill:#37353a;fill-opacity:1;stroke:none" + d="m 379.30061,-188.65217 c -13.55794,0.0253 -18.48358,0.63582 -24.68619,3.88525 -10.05678,5.26856 -16.20698,15.41866 -19.28571,23.21429 -1.54391,4.55372 -5.08084,11.77112 -1.48985,13.43779 6.09342,0.90841 10.72566,-1.79037 19.34699,-5.93779 l 19.20957,-24.86257 z" + id="path5057-7-3-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccccc" /> + <path + sodipodi:nodetypes="ccccccccccccc" + inkscape:connector-curvature="0" + id="path7090-8-2" + d="m 358.65814,-255.79225 -1.02004,-21.555 h 21.42104 l -1.02004,20.65689 h 20.40099 v 21.55501 l -17.34087,-0.89813 v 17.06439 h -24.48116 v -16.16626 h -15.30078 l -1.27502,-20.6569 z" + style="fill:#37353a;fill-opacity:1;stroke:none" /> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(0.0240281,0.0224291,-0.02292236,0.02655519,90.407818,32.854397)" + id="g7330-9"> + <path + sodipodi:nodetypes="sssssssss" + inkscape:connector-curvature="0" + id="rect3823-1-5-2" + d="m 807.89479,-1355.2916 h 95.1015 c 8.2379,0 19.7767,5.8446 19.7767,13.1045 v 171.2769 c 0,7.2599 -11.5388,13.1045 -19.7767,13.1045 h -95.1015 c -8.2379,0 -19.7767,-5.8446 -19.7767,-13.1045 v -171.2769 c 0,-7.2599 11.5388,-13.1045 19.7767,-13.1045 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <rect + ry="0" + y="-1331.0696" + x="802.59802" + height="147.94579" + width="104.92254" + id="rect3821-7-2-6" + style="fill:#37353a;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path7459-3" + d="m 228.68584,36.388144 -6.33757,3.115416 c -0.41217,0.399915 -0.73657,0.836427 -0.53369,1.492797 l 4.40295,7.139493 c 0.48089,0.408435 0.75581,0.215636 1.06738,0.129802 l 6.00401,-3.310115 0.26684,-0.778851 -6.27085,3.439935 c -0.37973,-0.540665 -0.39857,-1.12522 -0.0667,-1.752428 l 5.9373,-3.050516 z" + style="display:inline;opacity:0.07;fill:#ffffff;stroke:none;stroke-width:0.144181" /> + <path + inkscape:connector-curvature="0" + id="path7469-3" + d="m 218.00475,12.706679 c -0.50398,0.01334 -1.01455,0.125334 -1.47195,0.340316 -0.60363,0.283713 -1.12136,0.759784 -1.34191,1.422152 h -0.003 c -0.002,0.0066 -0.003,0.01269 -0.006,0.01937 -0.39448,1.01636 -0.37764,1.879983 -0.0609,2.542713 0.31884,0.667083 0.91806,1.101767 1.57985,1.319783 0.66179,0.218018 1.39452,0.232865 2.05022,0.06088 0.6557,-0.172006 1.24964,-0.540954 1.56326,-1.13164 l -0.6087,-0.323717 c -0.19753,0.37202 -0.61152,0.652113 -1.13163,0.788542 -0.52011,0.13643 -1.13289,0.122971 -1.65734,-0.0498 -0.52445,-0.172776 -0.94951,-0.492221 -1.17314,-0.960086 -0.22361,-0.467866 -0.26724,-1.115269 0.0858,-2.014253 l 0.006,-0.01108 0.003,-0.0083 c 0.14642,-0.455136 0.50645,-0.803047 0.98776,-1.029264 0.48132,-0.226222 1.07648,-0.317506 1.60476,-0.260082 0.52829,0.05741 0.97638,0.26374 1.22294,0.567196 0.24656,0.30346 0.34726,0.715153 0.11345,1.380654 l -0.003,0.0055 v 0.0055 c -0.0463,0.147814 -0.11763,0.334489 -0.18262,0.426093 -0.0163,0.02288 -0.0175,0.02111 -0.0276,0.03042 -0.20718,-0.240012 -0.36747,-0.533535 -0.50356,-0.846651 0.0176,-0.168214 0.0245,-0.338005 0,-0.514631 l -0.011,-0.07747 -0.0415,-0.06363 c -0.0394,-0.0612 -0.0815,-0.118214 -0.16602,-0.174314 -0.0434,-0.02878 -0.10995,-0.05271 -0.18261,-0.06087 l 0.0138,-0.06916 c -0.555,-0.109666 -1.13668,0.04622 -1.60199,0.362448 -0.46532,0.316233 -0.83266,0.819212 -0.83835,1.424923 v 0.0027 c -0.002,0.553066 0.3014,1.114386 0.83281,1.383418 l 0.0415,0.01937 0.0471,0.01108 c 0.31576,0.06382 0.60849,-0.058 0.80792,-0.213042 0.19942,-0.155043 0.33825,-0.342505 0.44822,-0.492498 v -0.0027 c 0.13209,-0.181591 0.25265,-0.384751 0.35969,-0.597635 0.11226,0.173377 0.23464,0.341892 0.38459,0.495259 l 0.0525,0.05534 0.0719,0.0249 c 0.17447,0.06703 0.37693,0.06624 0.534,-0.0027 0.15707,-0.06902 0.26451,-0.182549 0.34309,-0.293283 0.15331,-0.216071 0.22193,-0.451017 0.27115,-0.608704 h 0.003 c 0.002,-0.0047 0.001,-0.0091 0.002,-0.01386 0.28396,-0.8203 0.16638,-1.542796 -0.23242,-2.033616 -0.40108,-0.49365 -1.02998,-0.744716 -1.68777,-0.81622 -0.16444,-0.01788 -0.33003,-0.02381 -0.49802,-0.01937 z m 0.19922,1.981051 c 0.004,0.04671 -0.003,0.09269 0.008,0.141106 0.0178,0.07425 0.0564,0.158508 0.12173,0.240719 -0.0748,0.359587 -0.2539,0.716133 -0.48971,1.040327 -0.1019,0.138986 -0.21406,0.278118 -0.31543,0.356916 -0.0813,0.06321 -0.13845,0.07921 -0.20198,0.07747 -0.2249,-0.143769 -0.41211,-0.484989 -0.41225,-0.727671 0,-9.95e-4 -2e-5,-0.0021 0,-0.0027 0.004,-0.326602 0.20989,-0.637454 0.53399,-0.857719 0.22531,-0.15312 0.49871,-0.245482 0.75535,-0.268388 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.07;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.690601;marker:none;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path7469-3-7" + d="m 172.48496,8.8206819 c -0.50398,0.01334 -1.01455,0.125334 -1.47195,0.340316 -0.60363,0.283713 -1.12136,0.759784 -1.34191,1.4221521 h -0.003 c -0.002,0.0066 -0.003,0.01269 -0.006,0.01937 -0.39448,1.01636 -0.37764,1.879983 -0.0609,2.542713 0.31884,0.667083 0.91806,1.101767 1.57985,1.319783 0.66179,0.218018 1.39452,0.232865 2.05022,0.06088 0.6557,-0.172005 1.24964,-0.540954 1.56326,-1.131639 l -0.6087,-0.323717 c -0.19753,0.372019 -0.61152,0.652113 -1.13163,0.788542 -0.52011,0.136429 -1.13289,0.12297 -1.65734,-0.0498 -0.52445,-0.172777 -0.94951,-0.492221 -1.17314,-0.960087 -0.22361,-0.467865 -0.26724,-1.115269 0.0858,-2.014253 l 0.006,-0.01108 0.003,-0.0083 c 0.14642,-0.455135 0.50645,-0.803046 0.98776,-1.0292631 0.48132,-0.226222 1.07648,-0.317506 1.60476,-0.260082 0.52829,0.05741 0.97638,0.26374 1.22294,0.5671961 0.24656,0.30346 0.34726,0.715153 0.11345,1.380654 l -0.003,0.0055 v 0.0055 c -0.0463,0.147814 -0.11763,0.334489 -0.18262,0.426093 -0.0163,0.02288 -0.0175,0.02111 -0.0276,0.03042 -0.20718,-0.240012 -0.36747,-0.533535 -0.50356,-0.846651 0.0176,-0.168214 0.0245,-0.338005 0,-0.514631 l -0.011,-0.07747 -0.0415,-0.06363 c -0.0394,-0.0612 -0.0815,-0.118214 -0.16602,-0.174314 -0.0434,-0.02878 -0.10995,-0.05271 -0.18261,-0.06087 l 0.0138,-0.06916 c -0.555,-0.109666 -1.13668,0.04622 -1.60199,0.362448 -0.46532,0.316233 -0.83266,0.819212 -0.83835,1.424923 v 0.0027 c -0.002,0.553066 0.3014,1.114386 0.83281,1.383418 l 0.0415,0.01937 0.0471,0.01108 c 0.31576,0.06382 0.60849,-0.058 0.80792,-0.213043 0.19942,-0.155042 0.33825,-0.342505 0.44822,-0.492498 v -0.0027 c 0.13209,-0.181591 0.25265,-0.384751 0.35969,-0.597635 0.11226,0.173377 0.23464,0.341892 0.38459,0.495259 l 0.0525,0.05534 0.0719,0.0249 c 0.17447,0.06703 0.37693,0.06624 0.534,-0.0027 0.15707,-0.06902 0.26451,-0.182549 0.34309,-0.293283 0.15331,-0.216071 0.22193,-0.451017 0.27115,-0.608704 h 0.003 c 0.002,-0.0047 0.001,-0.0091 0.002,-0.01386 0.28393,-0.820291 0.16635,-1.542787 -0.23245,-2.0336071 -0.40108,-0.49365 -1.02998,-0.744716 -1.68777,-0.81622 -0.16444,-0.01788 -0.33003,-0.02381 -0.49802,-0.01937 z m 0.19922,1.9810511 c 0.004,0.04671 -0.003,0.09269 0.008,0.141106 0.0178,0.07425 0.0564,0.158508 0.12173,0.240719 -0.0748,0.359587 -0.2539,0.716133 -0.48971,1.040327 -0.1019,0.138986 -0.21406,0.278118 -0.31543,0.356916 -0.0813,0.06321 -0.13845,0.07921 -0.20198,0.07747 -0.2249,-0.143769 -0.41211,-0.484989 -0.41225,-0.727671 0,-10e-4 -2e-5,-0.0021 0,-0.0027 0.004,-0.326592 0.20989,-0.637444 0.53399,-0.857709 0.22531,-0.15312 0.49871,-0.245482 0.75535,-0.268388 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.07;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.690601;marker:none;enable-background:accumulate" /> + <g + style="display:inline;opacity:0.07" + transform="matrix(0.14098869,0.03690014,-0.03690014,0.14098869,47.629484,212.03514)" + id="g5565-6-9"> + <path + inkscape:connector-curvature="0" + id="path3339-4-8-26-2" + d="m 225.23567,-1376.6831 11.6167,-7.5761 -6.8185,-11.1117 -11.3642,9.3438 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3341-5-9-78-1" + d="m 235.58967,-1385.2695 -10.6066,6.8185 3.0305,4.5457 6.0609,2.273 6.8185,-4.7984 -1.2627,-5.5558 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <ellipse + ry="15.026019" + rx="15.531096" + cy="652.97314" + cx="189.27733" + transform="translate(31.033765,-2052.5109)" + id="path3343-3-7-64-3" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3349-0-2-5-0" + d="m 194.93107,-1398.9064 h -11.1117" + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3355-8-28-02-7" + d="m 207.81047,-1419.6146 -6.3134,-10.8591" + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3361-9-2-1-5" + d="m 231.54907,-1425.1704 1.7678,-12.3744" + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5483-5-8-1-3" + d="m 214.45927,-1391.8374 v -6.7856 l 7.5,1.9643 0.5357,-7.5 5.3572,3.9286 0.3571,-6.4286" + style="fill:none;stroke:#8897a7;stroke-width:1.78268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(-0.01365965,-0.10650584,0.10650584,-0.01365965,284.57941,8.6141118)" + id="g5778-6-4-8"> + <path + inkscape:connector-curvature="0" + id="path3680-5-4-1-5-3" + d="m 111.55728,-1374.5434 11.5577,-46.2309 39.58516,1.7336 -14.73607,51.1429 z" + style="fill:#ffffff;stroke:none" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3684-6-2-8-6-3" + d="m 126.87119,-1417.1627 30.05014,1.5893 -10.97986,41.03 -29.47222,-4.9121 z" + style="fill:#8897a7;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3686-6-5-6-4-7" + d="m 130.33848,-1404.8825 16.18091,0.5779" + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3688-1-8-2-5-8" + d="m 126.87119,-1396.7921 15.02507,0.8668" + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3690-4-6-1-3-6" + d="m 124.84859,-1387.2569 14.44715,0.8668" + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3682-1-2-4-2-1" + d="m 134.81719,-1414.9955 0.72226,-10.402 15.02507,1.7338 -2.60045,10.4018 z" + style="fill:#ffffff;stroke:none" /> + </g> + <g + transform="matrix(0.05690379,0.01624423,-0.01428756,0.05004956,110.95131,8.9152538)" + id="g3191-3-2-9-46-2" + style="display:inline;opacity:0.07;fill:#b6d7d0;fill-opacity:1"> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="rect3175-8-0-5-5-6" + width="71.720833" + height="42.931484" + x="551.03821" + y="81.605591" + transform="matrix(1.8844786,0,0,1.9491873,-506.85253,-347.28497)" + ry="10.354064" + rx="10.101525" /> + <path + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 555.33295,-164.3275 64.19105,0.53624" + id="path3177-7-3-3-46-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 554.87173,-146.43238 81.74893,0.9845" + id="path3179-4-5-25-7-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 554.87173,-126.56094 87.56611,-0.9845" + id="path3181-2-6-25-6-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 577.30217,122.51676 24.24367,27.27412 -0.50508,-28.28427" + id="path3183-7-6-86-8-2" + inkscape:connector-curvature="0" + transform="matrix(1.8844786,0,0,1.9491873,-506.85253,-347.28497)" + sodipodi:nodetypes="ccc" /> + </g> + <g + id="g4665-1-9-30-8" + transform="matrix(0.11801229,0.02167799,-0.02167799,0.11801229,167.61995,-43.36287)" + style="display:inline;opacity:0.07;fill:#4d4d4d;fill-opacity:1"> + <g + id="g5598-4-9"> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 492.62799,570.69064 c -3.06742,0 -5.53392,2.4665 -5.53392,5.53393 v 5.05959 c -2.48593,0.61956 -4.83306,1.59009 -6.95694,2.89872 l -3.58387,-3.58388 c -2.169,-2.16899 -5.68391,-2.16899 -7.85291,0 -2.16899,2.169 -2.16899,5.68391 0,7.85291 l 3.53117,3.53117 c -1.3715,2.15754 -2.40541,4.51954 -3.05683,7.06234 h -4.84877 c -3.06743,0 -5.53393,2.4665 -5.53393,5.53393 0,3.06742 2.4665,5.53392 5.53393,5.53392 h 4.53254 c 0.54334,2.68432 1.56178,5.19224 2.89873,7.48398 l -3.05684,3.05683 c -2.16899,2.169 -2.16899,5.68391 0,7.85291 2.169,2.16899 5.68391,2.16899 7.85291,0 l 2.79331,-2.79332 c 2.32696,1.55627 4.95327,2.73002 7.7475,3.42577 v 3.74199 c 0,3.06742 2.4665,5.53392 5.53392,5.53392 3.06743,0 5.53393,-2.4665 5.53393,-5.53392 v -3.53118 c 2.94023,-0.6161 5.66234,-1.76036 8.11642,-3.32035 l 2.47709,2.47709 c 2.169,2.16899 5.68391,2.16899 7.85291,0 2.16899,-2.169 2.16899,-5.68391 0,-7.85291 l -2.5298,-2.52979 c 1.49742,-2.42764 2.63013,-5.12179 3.21495,-8.01102 h 3.68929 c 3.06742,0 5.53392,-2.4665 5.53392,-5.53392 0,-3.06743 -2.4665,-5.53393 -5.53392,-5.53393 h -4.00551 c -0.70391,-2.74763 -1.83491,-5.29808 -3.37306,-7.58938 l 3.00413,-3.00413 c 2.16899,-2.169 2.16899,-5.68391 0,-7.85291 -2.169,-2.16899 -5.68391,-2.16899 -7.85291,0 l -3.26765,3.26765 c -2.24723,-1.3104 -4.6999,-2.29715 -7.32586,-2.84602 v -4.79606 c 0,-3.06743 -2.4665,-5.53393 -5.53393,-5.53393 z m 0.42164,20.87081 c 7.5272,0 13.65035,6.12314 13.65035,13.65035 0,7.5272 -6.12315,13.59764 -13.65035,13.59764 -7.52721,0 -13.59765,-6.07044 -13.59765,-13.59764 0,-7.52721 6.07044,-13.65035 13.59765,-13.65035 z" + id="rect3381-3-0-5-6" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path3395-4-7-2-3" + d="m 547.61623,603.67335 c -1.86375,-0.67431 -3.90457,0.2821 -4.5789,2.14583 l -1.11225,3.07417 c -1.64662,-0.17006 -3.28607,-0.0963 -4.8642,0.23186 l -1.38967,-2.96537 c -0.84105,-1.79467 -2.97667,-2.56736 -4.77134,-1.72632 -1.79468,0.84105 -2.56737,2.97668 -1.72632,4.77135 l 1.36925,2.92176 c -1.30761,1.00941 -2.45505,2.21725 -3.40983,3.61902 l -2.94607,-1.0659 c -1.86375,-0.67432 -3.90458,0.28209 -4.5789,2.14583 -0.67431,1.86373 0.2821,3.90456 2.14583,4.57888 l 2.75394,0.9964 c -0.25998,1.75041 -0.1925,3.49807 0.11602,5.18442 l -2.52929,1.1853 c -1.79468,0.84105 -2.56737,2.97669 -1.72633,4.77136 0.84105,1.79466 2.97668,2.56735 4.77135,1.72631 l 2.31125,-1.08313 c 1.07173,1.45711 2.40942,2.74762 3.95422,3.7846 l -0.82261,2.27359 c -0.67432,1.86374 0.28208,3.90457 2.14582,4.57889 1.86374,0.67433 3.90458,-0.28208 4.57888,-2.14583 l 0.77628,-2.14549 c 1.92188,0.27201 3.82736,0.17517 5.66136,-0.23317 l 0.96052,2.04959 c 0.84104,1.79469 2.97668,2.56736 4.77135,1.72632 1.79466,-0.84105 2.56736,-2.97667 1.72631,-4.77134 l -0.98094,-2.09321 c 1.44349,-1.14583 2.72396,-2.53377 3.71443,-4.16066 l 2.24158,0.81102 c 1.86373,0.6743 3.90456,-0.28209 4.57888,-2.14583 0.67433,-1.86374 -0.28208,-3.90458 -2.14582,-4.57889 l -2.43371,-0.88054 c 0.17634,-1.82417 0.0499,-3.62243 -0.38105,-5.35274 l 2.48568,-1.16487 c 1.79469,-0.84105 2.56736,-2.97667 1.72632,-4.77134 -0.84105,-1.79468 -2.97667,-2.56737 -4.77134,-1.72632 l -2.70373,1.26706 c -1.07734,-1.29021 -2.35062,-2.42891 -3.82547,-3.33967 l 1.05432,-2.91404 c 0.67432,-1.86375 -0.28209,-3.90458 -2.14582,-4.5789 z m -4.33189,12.77359 c 4.57345,1.65471 6.94776,6.72114 5.29305,11.29458 -1.65473,4.57346 -6.70957,6.91574 -11.28301,5.26102 -4.57345,-1.65471 -6.92731,-6.67753 -5.27261,-11.25099 1.65472,-4.57344 6.68912,-6.95934 11.26257,-5.30461 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(0.0240281,0.0224291,-0.02292236,0.02655519,170.75834,44.858624)" + id="g7330-9-2"> + <path + sodipodi:nodetypes="sssssssss" + inkscape:connector-curvature="0" + id="rect3823-1-5-2-0" + d="m 807.89479,-1355.2916 h 95.1015 c 8.2379,0 19.7767,5.8446 19.7767,13.1045 v 171.2769 c 0,7.2599 -11.5388,13.1045 -19.7767,13.1045 h -95.1015 c -8.2379,0 -19.7767,-5.8446 -19.7767,-13.1045 v -171.2769 c 0,-7.2599 11.5388,-13.1045 19.7767,-13.1045 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <rect + ry="0" + y="-1331.0696" + x="802.59802" + height="147.94579" + width="104.92254" + id="rect3821-7-2-6-6" + style="fill:#37353a;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + style="display:inline;opacity:0.07" + transform="matrix(-0.02058078,-0.16047057,0.16047057,-0.02058078,443.07912,43.528004)" + id="g5778-6-4-1"> + <path + inkscape:connector-curvature="0" + id="path3680-5-4-1-5-32" + d="m 111.55728,-1374.5434 11.5577,-46.2309 39.58516,1.7336 -14.73607,51.1429 z" + style="fill:#ffffff;stroke:none" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3684-6-2-8-6-9" + d="m 126.87119,-1417.1627 30.05014,1.5893 -10.97986,41.03 -29.47222,-4.9121 z" + style="fill:#8897a7;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3686-6-5-6-4-8" + d="m 130.33848,-1404.8825 16.18091,0.5779" + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3688-1-8-2-5-0" + d="m 126.87119,-1396.7921 15.02507,0.8668" + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3690-4-6-1-3-5" + d="m 124.84859,-1387.2569 14.44715,0.8668" + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3682-1-2-4-2-8" + d="m 134.81719,-1414.9955 0.72226,-10.402 15.02507,1.7338 -2.60045,10.4018 z" + style="fill:#ffffff;stroke:none" /> + </g> + </g> + <path + style="fill:#ffffff;fill-opacity:0.186869;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.187237,-2.4539529 c 0,0 -21.60874,21.5151969 -21.515195,52.1041939 0.09458,30.926128 19.924941,52.665459 19.924941,52.665459 0,0 -29.934185,-36.48229 -31.430896,-48.643053 C 36.669379,41.511884 59.681284,-7.1311695 59.681284,-7.1311695 Z" + id="path5847" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscscc" /> + <g + style="display:inline" + id="g5976-9" + transform="matrix(0.4455495,0.48781957,-0.48781957,0.4455495,223.95731,8.0473802)"> + <circle + r="0.71714538" + cy="177.62117" + cx="56.319801" + id="path5973-4" + style="fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="169.99994" + cx="60.795223" + id="path5973-1-39" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="184.32758" + cx="54.886158" + id="path5973-7-1" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="178.35974" + cx="66.347733" + id="path5973-7-0-67" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="173.39439" + cx="65.697533" + id="path5973-7-0-7-1" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="-133.07188" + cx="134.26445" + id="path5973-3-4" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-131.68369" + cx="141.95882" + id="path5973-1-8-3" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-134.43965" + cx="138.98499" + id="path5973-7-5-4" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-130.967" + cx="135.24774" + id="path5973-7-0-1-2" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-127.10815" + cx="139.39973" + id="path5973-7-0-7-3-4" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55344278" + cy="117.36374" + cx="133.41142" + id="path5973-3-2-8" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="121.3326" + cx="131.39594" + id="path5973-7-0-1-4-9" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="127.30769" + cx="133.33705" + id="path5973-7-0-1-4-6-1" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55344278" + cy="128.08867" + cx="146.26036" + id="path5973-3-2-4-1" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.71714538" + cy="-127.37165" + cx="114.41163" + id="path5973-1-8-3-2" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-123.91449" + cx="108.96425" + id="path5973-1-8-3-2-4" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="160.04765" + cx="66.495689" + id="path5973-7-0-67-7" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="155.08231" + cx="65.845497" + id="path5973-7-0-7-1-8" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="115.50705" + cx="128.92426" + id="path5973-7-0-1-4-6-1-7" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55785602" + cy="-123.74488" + cx="101.64738" + id="path5973-1-8-3-2-4-7" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55785602" + cy="-129.01219" + cx="107.65559" + id="path5973-1-8-3-2-4-7-7" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55785602" + cy="-126.38529" + cx="121.50475" + id="path5973-1-8-3-2-4-7-7-2" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55785602" + cy="-125.07603" + cx="87.129845" + id="path5973-1-8-3-2-4-7-7-4" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55785602" + cy="-130.13832" + cx="101.2291" + id="path5973-1-8-3-2-4-7-7-3" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-126.72153" + cx="92.581078" + id="path5973-1-8-3-2-41" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="101.48734" + cx="133.48918" + id="path5973-7-0-1-4-6-1-7-7" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="90.212624" + cx="135.74258" + id="path5973-7-0-1-4-6-1-7-0" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="92.050896" + cx="134.28307" + id="path5973-7-0-1-4-6-1-7-72" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="86.103096" + cx="132.94377" + id="path5973-7-0-1-4-6-1-7-3" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="85.804016" + cx="127.44612" + id="path5973-7-0-1-4-6-1-7-3-3" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="80.062126" + cx="124.98568" + id="path5973-7-0-1-4-6-1-7-3-2" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="80.822235" + cx="132.96303" + id="path5973-7-0-1-4-6-1-7-3-7" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.71714538" + cy="181.74942" + cx="49.583637" + id="path5973-1-39-9" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="183.76508" + cx="46.016808" + id="path5973-1-39-6" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="186.4091" + cx="48.491772" + id="path5973-1-39-0" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="101.69645" + cx="125.83287" + id="path5973-7-0-1-4-6-1-7-7-2" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="102.55019" + cx="127.47049" + id="path5973-7-0-1-4-6-1-7-7-1" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="107.47958" + cx="127.10728" + id="path5973-7-0-1-4-6-1-7-7-29" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="99.917145" + cx="130.58003" + id="path5973-7-0-1-4-6-1-7-7-0" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="95.658409" + cx="130.97922" + id="path5973-7-0-1-4-6-1-7-7-5" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55785602" + cy="-120.3063" + cx="78.554184" + id="path5973-1-8-3-2-4-7-7-4-7" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55785602" + cy="-127.41341" + cx="84.285736" + id="path5973-1-8-3-2-4-7-7-4-73" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55785602" + cy="-115.98283" + cx="78.91317" + id="path5973-1-8-3-2-4-7-7-4-0" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="77.294228" + cx="130.23428" + id="path5973-7-0-1-4-6-1-7-7-5-3" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="78.740433" + cx="138.14334" + id="path5973-7-0-1-4-6-1-7-7-5-0" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="85.838425" + cx="137.3353" + id="path5973-7-0-1-4-6-1-7-7-5-9" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="89.20005" + cx="143.52402" + id="path5973-7-0-1-4-6-1-7-7-5-5" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="83.609207" + cx="149.6286" + id="path5973-7-0-1-4-6-1-7-7-5-98" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + </g> + <g + style="display:inline" + id="g5976-93" + transform="matrix(-0.274637,0.60088003,-0.60088003,-0.274637,220.69279,59.084073)"> + <circle + r="0.71714538" + cy="176.85785" + cx="66.915405" + id="path5973-10" + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="171.25676" + cx="69.816925" + id="path5973-1-4" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="175.49008" + cx="71.635941" + id="path5973-7-36" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="178.96274" + cx="67.898705" + id="path5973-7-0-15" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="170.463" + cx="67.83255" + id="path5973-7-0-7-19" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="-133.07188" + cx="134.26445" + id="path5973-3-1" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-138.67297" + cx="137.16597" + id="path5973-1-8-9" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-134.43965" + cx="138.98499" + id="path5973-7-5-42" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-130.967" + cx="135.24774" + id="path5973-7-0-1-8" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-139.46674" + cx="135.18159" + id="path5973-7-0-7-3-88" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55344278" + cy="119.31641" + cx="131.70023" + id="path5973-3-2-83" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="121.4063" + cx="133.22725" + id="path5973-7-0-1-4-2" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="127.30769" + cx="133.33705" + id="path5973-7-0-1-4-6-38" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55344278" + cy="128.08867" + cx="146.26036" + id="path5973-3-2-4-17" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + </g> + </g> + <g + id="layer2" + inkscape:label="Illustrations" + style="display:inline" + transform="translate(0,-131.6354)"> + <g + style="display:inline;fill:#ffffff;fill-opacity:0.454545;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" + transform="matrix(0.60423618,0,0,0.68220614,49.370499,143.97876)" + id="g1789-6"> + <g + id="g6774" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" + transform="translate(-17.296286,7.1749452)"> + <path + inkscape:connector-curvature="0" + id="path1397-9" + d="m 70.747849,37.581741 2.415416,-0.26742 4.528913,8.824857 0.201284,21.661012 -2.314776,2.228498 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 59.979103,71.811486 -0.402573,-20.32391 5.937908,1.06968 0.402569,20.145631 z" + id="path1797-4" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 59.526212,51.353867 1.71092,-0.713121 -0.100641,-2.183928 4.830838,0.846827 1.056748,4.858129 -7.548187,-1.73823 z" + id="path1801-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 66.017651,72.257186 4.428268,-1.961077 -0.503213,-19.254234 -1.509635,-0.623979 -0.201284,-2.13936 -2.918634,0.8914 -0.100644,2.228498 -3.522487,-0.534838 -0.905781,0.802259 4.428268,0.713121 z" + id="path1799-4" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 61.880629,49.140702 0.03558,0.945473 2.633105,0.44122 v -0.913954 z" + id="path1803-4" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 61.133395,48.384327 2.8466,-1.04002 4.376647,0.882441 -2.98893,1.008505 z" + id="path1805-8" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1782-9" + d="m 62.317661,58.81744 -0.720635,-0.377475 v -1.201058 l -0.995159,-0.686316 -1.304004,-1.92169 -3.328644,-0.686318 -2.402112,0.857898 2.09327,7.3436 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1774-0" + d="M 51.094181,75.112666 50.799552,58.988929 56.925691,60.662502 57.16834,76.72593 Z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1776-5" + d="M 57.11981,76.58034 62.700762,74.49355 62.26399,58.866891 56.828631,60.711032 Z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1778-7" + d="m 61.597026,57.341857 0.06863,1.166741 -4.735595,1.509897 -0.03431,-1.201055 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1780-8" + d="m 60.601867,56.689854 -1.304004,-1.921689 -2.951168,0.892212 0.274527,1.92169 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 53.532793,54.802481 -2.196219,3.191378 0.06863,1.441267 5.456227,1.441268 -0.514739,-5.387597 z" + id="path1791-6" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 56.655538,57.616383 -3.50022,-0.617686 -0.549056,0.514739 4.117909,1.304004 z" + id="path1793-7" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 56.930064,59.984179 -4.461065,-1.098108 -0.583369,0.617685 4.975804,1.406954 z" + id="path1795-4" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1395-4" + d="m 75.478043,70.117829 -4.226982,-0.4457 -0.402572,-32.179529 4.528912,9.716258 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1795-9-3" + d="m 75.421301,47.146555 -2.59199,-0.638028 -0.338952,0.35889 2.891066,0.817475 z" + style="display:inline;fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <use + transform="translate(0,1.3745788)" + height="100%" + width="100%" + id="use1414-9" + xlink:href="#path1795-9-3" + y="0" + x="0" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" /> + <use + transform="translate(0,2.7491576)" + height="100%" + width="100%" + id="use1416-1" + xlink:href="#path1795-9-3" + y="0" + x="0" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" /> + <use + height="100%" + width="100%" + transform="translate(0,4.1237364)" + id="use1418-0" + xlink:href="#path1795-9-3" + y="0" + x="0" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" /> + <use + height="100%" + width="100%" + transform="translate(0,5.4983152)" + id="use1420-9" + xlink:href="#path1795-9-3" + y="0" + x="0" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" /> + <g + transform="translate(-1.5519528,1.3745788)" + id="g1460-6" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none"> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80.420841,65.569362 1.636794,-8.572279 2.063787,10.211096 -2.917765,1.386693 z" + id="path1423-1" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 82.199969,57.186177 V 46.849014 l 1.138636,-0.945473 4.198735,0.06303 1.067476,1.26063 0.213494,20.233106 -6.618341,-0.189097 z" + id="path1425-1" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 83.125111,46.218701 -0.213495,-6.870433 2.633106,0.31516 0.355824,7.752868 z" + id="path1427-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 85.687051,39.411299 1.56563,-0.378188 0.569318,7.752872 -1.992618,0.882442 z" + id="path1429-9" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 85.615887,47.542362 86.25637,67.019085 89.814621,66.136647 89.031805,47.92055 87.964329,46.344764 Z" + id="path1431-1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1795-9-7-2" + d="m 86.512037,47.277048 -2.59199,-0.638028 -0.338952,0.358889 2.891066,0.817475 z" + style="display:inline;fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 83.051389,39.319972 1.383838,-4.033585 1.107066,4.412429 z" + id="path1448-9" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 84.435227,34.706978 2.893468,4.479282 -1.912207,0.646265 z" + id="path1450-5" + inkscape:connector-curvature="0" /> + </g> + <path + inkscape:connector-curvature="0" + id="path1560-5" + d="m 69.416353,61.337674 2.701286,-1.010648 2.77115,1.691289 0.372593,9.446471 -2.817724,1.54691 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1558-9" + d="m 66.878072,72.784816 -0.512312,-10.147738 3.073879,-1.340655 2.747863,1.835668 0.558887,10.127112 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1562-9" + d="m 65.227118,69.79247 -4.376647,2.8049 7.329994,1.008504 3.522669,-3.025509 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1564-8" + d="m 61.313046,72.628889 0.03558,4.097046 7.57907,1.134563 -0.747234,-4.254624 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1566-3" + d="m 68.038135,73.574359 3.771746,-3.057026 0.533736,3.718858 -3.98524,2.363681 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path6599-9" + d="m 51.071275,66.262321 -0.30963,-7.19882 h 0.541851 l 0.07741,-1.09696 2.322212,-3.22233 2.399617,-0.75416 3.328506,0.685599 0.154817,-3.290888 1.780361,-0.891279 -0.232221,-2.125367 2.709246,0.685603 0.154817,3.016646 -1.161106,1.302644 0.387034,4.456409 -0.851476,0.959845 -2.012585,3.702249 -3.173691,1.371201 -6.115161,6.376095 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6601-0" + d="m 70.964898,53.167329 4.412203,-5.896176 2.399621,-0.891284 -4.644424,-9.04994 -2.322213,0.342799 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6603-8" + d="m 82.88559,36.850006 1.006293,4.319294 -0.387034,7.130255 -0.387038,0.548484 0.154817,8.227219 -2.709251,3.702248 V 48.093874 l 0.851477,-0.822721 v -6.650337 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6605-2" + d="m 67.017137,69.278967 3.096284,-2.742408 2.477026,-0.959841 -0.30963,-2.742407 2.631842,-0.685603 -2.322212,-2.056805 -6.347383,2.331047 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> + <g + style="display:inline" + id="g5976-3" + transform="matrix(0.4455495,0.48781957,-0.48781957,0.4455495,202.82943,164.78235)"> + <circle + r="0.71714538" + cy="176.85785" + cx="66.915405" + id="path5973-2" + style="fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="171.25676" + cx="69.816925" + id="path5973-1-5" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="175.49008" + cx="71.635941" + id="path5973-7-09" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="178.96274" + cx="67.898705" + id="path5973-7-0-6" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="170.463" + cx="67.83255" + id="path5973-7-0-7-9" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="-133.07188" + cx="134.26445" + id="path5973-3-3" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-138.67297" + cx="137.16597" + id="path5973-1-8-4" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-134.43965" + cx="138.98499" + id="path5973-7-5-92" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-130.967" + cx="135.24774" + id="path5973-7-0-1-9" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-139.46674" + cx="135.18159" + id="path5973-7-0-7-3-8" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55344278" + cy="119.31641" + cx="131.70023" + id="path5973-3-2-28" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="121.4063" + cx="133.22725" + id="path5973-7-0-1-4-8" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="127.30769" + cx="133.33705" + id="path5973-7-0-1-4-6-3" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55344278" + cy="128.08867" + cx="146.26036" + id="path5973-3-2-4-3" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + </g> + <g + style="display:inline" + id="g5976-2-4" + transform="matrix(0.65638937,-0.07506861,0.07506861,0.65638937,32.510582,65.043709)"> + <circle + r="0.71714538" + cy="173.35623" + cx="64.494247" + id="path5973-0-5" + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="171.25676" + cx="69.816925" + id="path5973-1-3-2" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="175.49008" + cx="71.635941" + id="path5973-7-3-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="175.59944" + cx="53.46983" + id="path5973-7-0-8-6" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="170.463" + cx="67.83255" + id="path5973-7-0-7-7-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="-133.07188" + cx="134.26445" + id="path5973-3-26-9" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-127.39359" + cx="143.45297" + id="path5973-1-8-7-9" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-134.43965" + cx="138.98499" + id="path5973-7-5-9-4" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-130.967" + cx="135.24774" + id="path5973-7-0-1-0-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-136.26918" + cx="143.54533" + id="path5973-7-0-7-3-0-2" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55344278" + cy="119.31641" + cx="131.70023" + id="path5973-3-2-2-6" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="121.4063" + cx="133.22725" + id="path5973-7-0-1-4-4-1" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="127.30769" + cx="133.33705" + id="path5973-7-0-1-4-6-9-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55344278" + cy="128.08867" + cx="146.26036" + id="path5973-3-2-4-7-0" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55344278" + cy="108.14397" + cx="117.27026" + id="path5973-3-2-2-6-0" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.55344278" + cy="131.68532" + cx="105.67155" + id="path5973-3-2-2-6-01" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.55344278" + cy="81.168297" + cx="148.74918" + id="path5973-3-2-2-6-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.55344278" + cy="110.45168" + cx="136.95624" + id="path5973-3-2-2-6-1" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + </g> + <g + style="display:inline" + id="g5976-2" + transform="matrix(0.60930812,0.25539364,-0.25539364,0.60930812,113.247,39.299484)"> + <circle + r="0.71714538" + cy="176.85785" + cx="66.915405" + id="path5973-0" + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="171.25676" + cx="69.816925" + id="path5973-1-3" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="175.49008" + cx="71.635941" + id="path5973-7-3" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="178.96274" + cx="67.898705" + id="path5973-7-0-8" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="170.463" + cx="67.83255" + id="path5973-7-0-7-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="-133.07188" + cx="134.26445" + id="path5973-3-26" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-138.67297" + cx="137.16597" + id="path5973-1-8-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-134.43965" + cx="138.98499" + id="path5973-7-5-9" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-130.967" + cx="135.24774" + id="path5973-7-0-1-0" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-139.46674" + cx="135.18159" + id="path5973-7-0-7-3-0" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55344278" + cy="119.31641" + cx="131.70023" + id="path5973-3-2-2" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="121.4063" + cx="133.22725" + id="path5973-7-0-1-4-4" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="127.30769" + cx="133.33705" + id="path5973-7-0-1-4-6-9" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55344278" + cy="128.08867" + cx="146.26036" + id="path5973-3-2-4-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + </g> + <g + id="g5976" + transform="matrix(0.4455495,0.48781956,-0.48781956,0.4455495,154.04563,61.67587)"> + <circle + r="0.71714538" + cy="176.85785" + cx="66.915405" + id="path5973" + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="171.25676" + cx="69.816925" + id="path5973-1" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="175.49008" + cx="71.635941" + id="path5973-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="178.96274" + cx="67.898705" + id="path5973-7-0" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="170.463" + cx="67.83255" + id="path5973-7-0-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="-133.07188" + cx="134.26445" + id="path5973-3" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-138.67297" + cx="137.16597" + id="path5973-1-8" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-134.43965" + cx="138.98499" + id="path5973-7-5" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-130.967" + cx="135.24774" + id="path5973-7-0-1" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-139.46674" + cx="135.18159" + id="path5973-7-0-7-3" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55344278" + cy="119.31641" + cx="131.70023" + id="path5973-3-2" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="121.4063" + cx="133.22725" + id="path5973-7-0-1-4" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="127.30769" + cx="133.33705" + id="path5973-7-0-1-4-6" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55344278" + cy="128.08867" + cx="146.26036" + id="path5973-3-2-4" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="-97.020065" + cx="163.15636" + id="path5973-7-0-1-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-113.85796" + cx="180.23828" + id="path5973-7-0-1-40" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-120.80077" + cx="157.23447" + id="path5973-7-0-1-79" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-120.62488" + cx="124.55238" + id="path5973-7-0-1-1" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-130.351" + cx="181.03282" + id="path5973-7-0-1-6" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-112.20711" + cx="157.9874" + id="path5973-7-0-1-67" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-115.30206" + cx="142.18866" + id="path5973-7-0-1-85" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + </g> + <path + inkscape:connector-curvature="0" + id="path369" + d="m 109.17817,216.9979 -30.44434,-4.98806 -1.806018,8.29909 13.330135,11.52412 7.009085,10.23411 52.933568,-14.49114 -2.15002,-17.07119 -9.3741,-1.33301 z" + style="fill:#8789ac;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + style="display:inline" + id="g1350-0" + transform="matrix(0.88605929,0,0,0.88605929,21.347445,155.88061)"> + <path + style="fill:#c8b7b7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.26016,73.62001 -1.18898,11.889851 4.3677,1.11619 3.20297,-2.960331 -2.86326,-11.06484 z" + id="path1340-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.49229,78.037838 -2.92966,1.02934 -0.76541,1.39885 3.5631,0.554259 z" + id="path3531-3" + inkscape:connector-curvature="0" /> + <path + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.85001,80.439634 -0.87099,3.93261 4.3813,1.372456 0.8182,-4.671625 z" + id="path3533-4" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 104.01257,90.724447 -0.34316,-5.471277 1.28474,0.255259 1.25464,5.627806 z" + id="path1332-3-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 113.31108,86.613311 -4.87286,-0.686316 1.64716,-12.285091 2.74527,0.34316 z" + id="path1326-9" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.15401,73.573274 1.54422,-1.166742 2.71096,-0.24021 -1.57854,2.024638 z" + id="path1328-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 114.34055,72.26927 3.63749,10.77519 -4.46107,3.568851 -0.61768,-12.559615 z" + id="path1330-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 114.54645,85.446573 -0.34316,-5.284648 1.09811,0.06863 1.44127,5.627806 z" + id="path1332-3" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 114.20329,80.058976 1.26969,-1.132425 0.92653,0.274529 -1.02948,1.132425 z" + id="path1334-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 116.26224,79.132448 4.35871,4.782547 -3.87828,1.977684 -1.37264,-5.662123 z" + id="path1336-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#c8b7b7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.56097,73.899275 1.1839,-0.03432 0.87505,-0.652003 -0.61769,0.875057 -0.0858,1.57853 -0.29168,-1.527058 z" + id="path1338-8" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.66941,85.33685 1.26969,-1.132425 2.30759,0.815754 -2.41054,0.5912 z" + id="path1334-0-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.07,80.888321 -1.84754,0.739013 -1.24049,3.008842 2.37541,0.950161 z" + id="path3539-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.2274,81.386015 -2.09025,-0.149304 -1.23175,0.858495 4.10584,1.045124 z" + id="path3525-2" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 107.24006,85.026199 1.98852,3.158872 -3.01979,2.985482 -1.37264,-5.662123 z" + id="path1336-5-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 107.98005,82.05788 -2.35152,8.99553 4.55374,-0.746518 1.75432,-7.166562 z" + id="path3527-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.97392,83.028352 -2.31421,6.942608 4.03119,-1.418383 z" + id="path3529-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + </g> + <g + id="g990" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + sodipodi:nodetypes="cccccccccccccc" + inkscape:connector-curvature="0" + d="m 29.33134,93.916091 c -0.0717,0.5832 0.192464,1.135934 0.214471,1.713056 0.354232,0.262485 1.068442,0.427136 0.992241,0.952317 -0.0136,1.063225 0.174385,2.118489 0.206764,3.176905 0.118192,0.546051 0.623,0.860591 0.958167,1.269511 0.970132,1.01167 2.071898,1.89356 2.955564,2.9877 0.34374,0.41843 0.660617,0.87213 0.889424,1.35968 -0.407317,-0.71014 -0.44159,-1.56042 -0.693922,-2.32872 -0.154632,-0.72085 -0.224175,-1.46448 -0.488529,-2.15707 -0.39839,-1.881094 -0.310239,-3.761022 -0.859365,-5.445484 -0.491719,-0.09773 -1.032843,-0.002 -1.481941,0.20223 -0.576797,0.418944 -0.481261,-0.563583 -0.651378,-0.880319 -0.183577,-0.464168 -0.740556,-0.5478 -1.169066,-0.658821 -0.291386,-0.06069 -0.586976,-0.104744 -0.87243,-0.190985 z" + style="fill:#b26b89;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path135" /> + <path + inkscape:connector-curvature="0" + id="path683" + d="m 32.737361,95.535442 -0.480422,3.225694 0.892212,2.264854 1.5099,1.16674 1.304004,5.55917 0.41179,3.98064 2.745271,1.02948 1.578531,-1.23537 v -0.61769 l 0.754952,0.0686 0.617685,1.85306 1.853057,0.34316 0.549056,2.47075 2.196216,0.48042 1.235371,1.71579 0.823582,1.37264 1.990323,-0.61769 0.411789,3.56885 2.058953,2.95117 h 1.372637 l 2.26485,-1.78442 0.480422,-3.77475 4.804225,-2.40211 0.686318,1.44126 -0.823581,2.67664 1.235371,4.5297 4.255169,4.39243 3.500223,3.08843 13.45183,3.70612 -0.274529,-12.90278 2.127586,-7.00044 -1.578531,-9.19666 -37.198426,-9.539814 -9.53982,-2.882534 z" + style="fill:url(#linearGradient2155);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path893" + d="m 39.223063,112.59044 0.137266,-10.26045 0.480422,-0.27453 1.406951,4.42675 0.652003,1.30401 -0.17158,3.19137 -1.166741,-0.0343 z" + style="fill:#ca83a1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path685" + d="m 39.215888,112.4072 0.08299,-6.41685 0.46876,3.09516 1.051904,1.78757 -0.04934,0.71435 -1.610381,1.20442 z" + style="fill:#86597a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path697" + d="m 47.834404,113.53165 0.36794,-1.28144 5.598395,-1.83812 -0.04758,1.62718 -2.064903,3.24644 -0.789803,3.29084 -1.960231,0.26327 -1.401977,-2.71673 z" + style="fill:#b98cad;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path687" + d="m 51.161407,116.88509 -0.275873,1.76401 -2.000639,0.55175 -2.175584,-3.31608 -1.632807,-2.47725 2.220439,1.95578 0.432874,-1.9883 0.28933,3.4585 1.238064,1.52067 1.576737,-1.28293 0.181671,-3.85773 2.586029,-1.33339 -1.964753,3.24768 z" + style="fill:#86597a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path689" + d="m 33.938416,99.012787 1.287407,1.666453 1.527394,2.15427 1.177507,2.33932 0.998075,-2.31464 2.11727,-3.635695 -0.08747,-1.327779 -3.707464,0.176067 -2.202497,0.827616 z" + style="fill:#cb84a2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path691" + d="m 45.599093,100.16338 0.231015,2.30343 1.433193,2.31015 0.336431,2.38529 0.248957,-3.33514 0.780518,-2.34605 -0.242229,-1.42422 z" + style="fill:#b98cad;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path693" + d="m 57.343746,119.67244 1.938028,-4.8419 -0.916678,-4.604 3.09577,-3.6461 -0.478957,6.3089 0.948397,3.18617 0.352081,1.01977 z" + style="fill:#b48caf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path695" + d="m 53.730956,124.8458 -0.19983,-6.117 0.704162,-5.08772 3.054536,5.89338 -0.444066,3.83007 -2.185435,1.8175 z" + style="fill:#b98cad;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path699" + d="m 44.535632,115.3999 -0.694645,-3.23692 -0.142735,-1.9634 1.018178,1.12443 0.513847,2.25046 1.865074,2.5962 z" + style="fill:#ebc8da;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + style="fill:#ebc8da;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:original-d="m 42.334337,112.41515 c -0.110511,-0.24898 -0.195831,-0.49776 -0.285471,-0.75174 -0.05145,-0.14577 -0.323831,-0.88352 -0.453581,-0.9484 -0.0088,-0.004 0.03956,-0.17701 0.04124,-0.18873 0.03127,-0.21889 0.07327,-0.44059 0.09833,-0.6661 0.08951,-0.80554 0.307885,-2.22832 -0.253752,-2.90228" + inkscape:path-effect="#path-effect785;#path-effect787" + id="path-1" + d="m 42.334337,112.41515 c -0.0595,-0.15969 -0.151381,-0.48025 -0.259885,-0.85592 v 0 c -0.08002,-0.27704 -0.174793,-0.57404 -0.322981,-0.85313 l -0.0037,-0.006 c -0.002,-0.0113 -8.33e-4,-0.0218 0.0011,-0.0319 v 0 c 0.0021,-0.0105 0.0056,-0.0233 0.01005,-0.0369 v 0 c 0.005,-0.0153 0.01115,-0.0318 0.01861,-0.0502 l 0,0 c 0.0084,-0.0207 0.01778,-0.0421 0.02724,-0.0635 v 0 c 0.0099,-0.0225 0.01834,-0.0413 0.02678,-0.0612 v 0 c 0.01648,-0.0388 0.02875,-0.0698 0.0391,-0.10045 v 0 c 0.01422,-0.0421 0.03357,-0.10935 0.03682,-0.18781 v 0 c 3.73e-4,-0.009 5.85e-4,-0.0183 5.65e-4,-0.028 l -0.0014,0.041 c 0.0699,-0.43442 0.201492,-1.07877 0.184676,-1.68682 v 0 c -0.0029,-0.106 -0.01091,-0.22256 -0.02517,-0.34573 l -1.77e-4,-0.004 c -0.03681,-0.20696 -0.09781,-0.43786 -0.194219,-0.64897 l 0,0 c -0.05143,-0.11262 -0.108217,-0.20956 -0.16877,-0.29363 v 0 c -0.08517,-0.11824 -0.166489,-0.19519 -0.221961,-0.24493 0.03777,0.0654 0.08247,0.16387 0.115165,0.29538 v 0 c 0.02312,0.093 0.03817,0.1935 0.04561,0.30385 l 0,0 c 0.01408,0.20882 -0.0012,0.41615 -0.015,0.61356 l -1.77e-4,-0.004 c -0.0045,0.11458 -0.01091,0.22241 -0.01667,0.32103 v 0 c -0.03262,0.558 -0.08393,1.19691 -0.127638,1.63842 -6.85e-4,0.007 -0.0024,0.0137 -0.0035,0.0205 -5.78e-4,0.003 -8.35e-4,0.007 -4.49e-4,0.0104 3.86e-4,0.003 0.0015,0.007 0.0026,0.0101 7.15e-4,0.002 0.0013,0.004 0.0019,0.007 v 0 c 0.005,0.0229 0.0035,0.0584 4.87e-4,0.0937 v 0 c -0.0021,0.0244 -0.0049,0.0495 -0.01032,0.0921 v 0 c -0.0024,0.0186 -0.0059,0.0466 -0.0087,0.0735 v 0 c -0.0028,0.0274 -0.0058,0.0613 -0.0065,0.0963 l 0,0 c -6.97e-4,0.0311 1.9e-4,0.0664 0.0052,0.10276 v 0 c 0.0047,0.034 0.013,0.0701 0.02787,0.10607 v 0 c 0.01433,0.0346 0.03422,0.0678 0.06116,0.0979 l -0.0037,-0.006 c 0.169828,0.23867 0.296564,0.50352 0.413695,0.76926 v 0 c 0.156375,0.35477 0.292616,0.66452 0.372279,0.81517 z" /> + <path + inkscape:connector-curvature="0" + id="path895" + d="m 57.410487,119.4193 3.568853,-6.31412 1.269688,4.08359 z" + style="fill:#a05a2c;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path901" + d="m 62.111765,117.2574 3.637484,1.92169 2.779588,4.46107 0.720632,0.34316 2.642325,5.55917 0.308843,2.64233 -8.441709,-6.48571 -1.92169,-4.49538 0.926529,-2.67664 z" + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#81597c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 68.700416,123.67448 -3.019798,-4.5297 4.461066,-10.02024 z" + id="path1417" + inkscape:connector-curvature="0" /> + <path + style="fill:#b48caf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 67.602308,114.34055 -3.637484,-0.82358 6.245493,-4.5297 z" + id="path1419" + inkscape:connector-curvature="0" /> + <g + transform="matrix(1.5619414,0,0,1.464647,0.0957062,-12.89113)" + id="g1450-5-0" + style="display:inline"> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.855154,82.697299 -2.887701,0.947689 -0.188738,0.480422 2.65948,0.223054 z" + id="path1498-5-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.778715,84.12541 1.338321,2.264849 1.338318,0.223052 -0.03431,-2.350638 z" + id="path1500-9-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.967453,83.644988 2.007478,-1.715794 h 1.818743 l -0.829182,0.892212 z" + id="path1502-6-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.06863,-1.046635 z" + id="path1466-2-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.010669,86.165017 -1.108802,-0.279048 -0.890729,-1.710532 2.569761,-0.09721 z" + id="path1460-7-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.59303,84.041828 -0.853846,2.011136 1.897241,-1.428775 z" + id="path1462-1-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.901867,85.885969 0.344455,0.887415 1.062083,0.04152 -0.576781,-0.771208 z" + id="path1464-6-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.600027,84.63632 0.01304,1.700295 -1.304662,0.478285 -0.588915,-0.746943 z" + id="path1458-0-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.269258,85.446573 1.531433,-1.424658 -1.233448,-2.327727 -0.726935,1.453219 z" + id="path1468-3-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.180827,83.593514 0.907012,-1.234222 2.001943,0.28939 -0.246632,0.493044 z" + id="path1470-9-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.063679,82.355291 0.855178,-0.948785 1.648386,0.287682 -0.469564,0.955638 z" + id="path1472-6-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.088901,82.605457 -0.701729,1.394555 0.760206,0.17103 z" + id="path1525-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.387172,83.9737 0.146193,1.197212 0.540917,0.06578 0.131574,-1.118276 z" + id="path1527-4" + inkscape:connector-curvature="0" /> + <path + style="fill:#445016;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.088901,82.605457 0.994116,1.868178 -1.008735,0.763057 z" + id="path1529-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + </g> + </g> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 84.584604,252.75184 2.428095,-2.67927 -0.334912,-2.80487 0.08369,-0.921 -2.553686,1.5071 z" + id="path462" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1387" + d="m 176.12456,203.73868 c 0,0 -3.71992,6.03461 -2.86857,10.59549 0.85137,4.56087 -4.31762,5.53387 -4.31762,5.53387 l -17.81787,5.5947 -0.79056,-7.90555 z" + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <path + sodipodi:nodetypes="ccscccc" + inkscape:connector-curvature="0" + id="path1068" + d="m 70.210347,200.98596 1.307453,-4.40885 c 0,0 0.881774,-0.5169 2.098008,-0.5169 1.216234,0 2.006789,0.60812 2.006789,0.60812 l 1.702731,4.34805 c 0,0 -2.341262,0.82095 -4.712915,0.69934 -2.371664,-0.12164 -2.402066,-0.72976 -2.402066,-0.72976 z" + style="fill:url(#linearGradient3353);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#eee9ee;fill-opacity:0.328283;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.776953,197.23553 -0.479557,4.13411 -2.067058,-0.3638 1.256771,-4.31601 c 0.158066,0.35668 0.516189,0.58475 1.289844,0.5457 z" + id="path3410" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <ellipse + transform="matrix(0.99953573,-0.03046826,-0.04655884,0.99891555,0,0)" + ry="0.52077442" + rx="2.0257719" + cy="199.48825" + cx="82.847504" + id="path1066-5-4" + style="display:inline;fill:#d1d1d1;fill-opacity:0.348485;stroke:none;stroke-width:0.383579" /> + <ellipse + style="display:inline;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.234436" + id="path1066-0" + cx="64.786873" + cy="199.82579" + rx="1.3330141" + ry="0.29562819" + transform="rotate(-2.5153431)" /> + <path + style="opacity:1;fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 148.55231,244.76049 8.1634,3.85146 c 0.86232,0.43001 0.92272,0.49382 1.10052,0.84169 l -0.19451,1.45243 -22.9263,10.55802 -7.78664,-3.72587 2.63742,-8.37272 z" + id="path2416" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + style="opacity:1;fill:#6c5353;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 133.15289,259.66186 23.10875,-9.6705 c 0.5195,-0.23852 0.85907,-0.71243 0,-1.1722 l -9.54492,-4.52125 -17.20597,6.36327 0.62796,8.12154 z" + id="path2414" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#614848;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 132.24805,258.95246 18.19875,-12.86045 -3.44563,-1.55296 -16.83991,5.77507 z" + id="path2271" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#000000;fill-opacity:0.217172;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 148.89384,244.58758 -17.42227,10.53101 -0.33971,-5.09565 z" + id="path2298" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#c8b7b7;stroke:none;stroke-width:0.201928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 143.88907,251.94461 c 0,0 0.47296,0.46713 1.18073,0.4318 0.96676,-0.0483 1.39897,-0.55567 1.39897,-0.55567 l 0.0266,-6.48105 -2.593,1.03143 z" + id="path2418" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscccc" /> + <g + id="g3788-4" + style="display:inline" + transform="matrix(0.71526705,0.03581234,-0.02857876,0.5707931,37.713548,170.79809)"> + <path + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 83.538903,120.64457 0.878192,11.33435 -0.892212,0.48042 c 0,0 -3.84338,-3.22569 -3.84338,-6.31412 0,-3.08843 2.058953,-5.10429 2.058953,-5.10429 z" + id="path3783-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccscc" /> + <path + style="fill:#807675;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 77.649345,119.53103 -1.605328,1.05502 6.108229,1.37263 1.562871,-1.26091 z" + id="path3779-45" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient6899);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 76.143491,120.55214 c 0,0 -0.553721,3.46656 0.04129,6.49008 0.425192,1.95947 1.437762,3.97586 1.437762,3.97586 l 5.833703,1.23537 c 0,0 -1.04638,-2.78624 -1.333684,-4.88988 -0.241329,-1.76701 0.02968,-5.47352 0.02968,-5.47352 z" + id="path3781-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccscc" /> + </g> + <g + id="g3788-5" + style="display:inline" + transform="matrix(0.88605929,0,0,0.88605929,18.501508,125.3425)"> + <path + style="fill:#8c9f9d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 84.897517,119.89973 -0.480422,12.07919 -0.892212,0.48042 c 0,0 -3.84338,-3.22569 -3.84338,-6.31412 0,-3.08843 2.058953,-5.90233 2.058953,-5.90233 z" + id="path3783-4" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient6883);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 78.583392,118.73299 -2.539375,1.85306 6.108229,1.37263 2.539375,-2.05895 z" + id="path3779-4" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 76.044017,120.51741 c 0,0 -0.41179,6.10823 0.480422,7.96129 0.892215,1.85306 1.098108,2.53938 1.098108,2.53938 l 5.939276,1.44652 c 0,0 -1.95863,-3.84864 -1.821367,-5.63306 0.137263,-1.78443 0.41179,-4.94149 0.41179,-4.94149 z" + id="path3781-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccscc" /> + </g> + <g + id="g3788" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + inkscape:connector-curvature="0" + id="path3783" + d="m 84.897517,119.89973 -0.480422,12.07919 -0.892212,0.48042 c 0,0 -3.84338,-3.22569 -3.84338,-6.31412 0,-3.08843 2.058953,-5.90233 2.058953,-5.90233 z" + style="fill:#8c9f9d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3779" + d="m 78.583392,118.73299 -2.539375,1.85306 6.108229,1.37263 2.539375,-2.05895 z" + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3781" + d="m 76.044017,120.51741 c 0,0 -0.41179,6.10823 0.480422,7.96129 0.892215,1.85306 1.098108,2.53938 1.098108,2.53938 l 5.833703,1.23537 c 0,0 -1.853057,-3.63749 -1.715794,-5.42191 0.137263,-1.78443 0.41179,-4.94149 0.41179,-4.94149 z" + style="fill:#b8cbc9;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#000000;fill-opacity:0.131313;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 77.578141,131.0294 0.485236,-1.30641 4.458112,-1.35141 0.20762,-1.9146 1.761911,-2.46662 -0.362192,5.88194 -2.762113,1.661 z" + id="path2697" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,6.1181401,155.21156)" + style="display:inline;fill:#808080" + id="g1358-4"> + <path + style="fill:#999999;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.93316,89.770375 3.12275,-2.402113 4.1179,0.514739 -3.26001,4.392433 -3.91201,-1.441267 z" + id="path1352-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#666666;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.89884,89.839005 -0.68631,2.127586 -0.34316,2.745272 5.31896,1.406951 -0.27453,-4.08359 z" + id="path1354-7" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1360-6" + d="m 113.0749,87.912095 -3.20298,4.149315 0.16986,4.003725 4.97432,-3.421364 z" + style="fill:#4d4d4d;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1362-8" + d="m 105.26909,91.878463 3.99621,0.838103 -1.55296,1.11619 -3.81136,0.373129 z" + style="fill:#a7a7a7;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1364-8" + d="m 103.84498,94.215202 0.12629,2.868201 3.69254,-0.654291 0.12132,-2.620621 z" + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1366-6" + d="m 109.14397,92.740831 0.70369,3.227244 -2.15959,0.533832 0.0728,-2.741946 z" + style="fill:#4f5257;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1368-1" + d="m 108.56161,91.272798 1.31031,0.485301 0.38824,-0.206253 -0.35184,0.727951 z" + style="fill:#cccccc;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1370-6" + d="m 111.49234,94.986389 0.30884,-3.225693 1.47558,3.311483 z" + style="fill:#8c8c8c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1372-6" + d="m 111.73255,91.81217 1.28684,-1.115267 2.0418,3.088431 -1.85306,1.321163 z" + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1374-6" + d="m 109.05591,87.351104 1.87021,3.345799 2.1619,-2.813902 z" + style="fill:#b3b3b3;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.71526705,0.03581234,-0.02857876,0.57079309,42.909316,171.39202)" + style="display:inline" + id="g3788-4-5"> + <path + sodipodi:nodetypes="cccscc" + inkscape:connector-curvature="0" + id="path3783-8-1" + d="m 83.538903,120.64457 0.878192,11.33435 -0.892212,0.48042 c 0,0 -3.84338,-3.22569 -3.84338,-6.31412 0,-3.08843 2.058953,-5.10429 2.058953,-5.10429 z" + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3779-45-7" + d="m 77.649345,119.53103 -1.605328,1.05502 6.108229,1.37263 1.562871,-1.26091 z" + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccscc" + inkscape:connector-curvature="0" + id="path3781-3-7" + d="m 76.044017,120.51741 c 0,0 -0.454247,3.50129 0.140768,6.52481 0.425192,1.95947 1.437762,3.97586 1.437762,3.97586 l 5.833703,1.23537 c 0,0 -1.04638,-2.78624 -1.333684,-4.88988 -0.241329,-1.76701 0.02968,-5.47352 0.02968,-5.47352 z" + style="fill:#bbcac8;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + style="display:inline;fill:#000000;fill-opacity:0.227273;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 88.436894,243.95301 0.09355,-0.63142 3.765161,0.98221 0.561266,0.11694 0.748355,-0.0468 0.02339,0.44434 4.747376,1.26285 0.608036,2.75956 -10.336645,-2.57248 z" + id="path2663" + inkscape:connector-curvature="0" /> + <g + id="g3949" + transform="matrix(0.89401639,0.04580274,-0.0415274,0.81056681,29.693717,132.85986)"> + <path + inkscape:connector-curvature="0" + id="path3942" + d="m 74.963067,145.87686 1.647163,0.49758 -1.647163,-5.78223 -2.041795,-0.0171 -0.06863,2.74527 z" + style="fill:#011f3d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3940" + d="m 74.671267,146.07954 0.549224,-0.13294 c 0,0 -0.939802,-1.35078 -0.888327,-1.98562 0.05147,-0.63485 0.363121,-1.53739 1.169544,-1.15991 0.806424,0.37747 -1.979909,-2.3976 -1.979909,-2.3976 l -0.634844,2.29917 c 0.358384,1.31484 0.812434,2.6783 1.784312,3.3769 z" + style="fill:#3380cf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:nodetypes="ccscssscccc" + inkscape:connector-curvature="0" + id="path3938" + d="m 71.616066,133.85752 c 0,0 0.72114,7.45301 0.81475,8.56087 0.130668,1.96917 0.977935,3.35986 1.334784,3.46279 0.955378,0.27556 0.888588,0.18071 0.888588,0.18071 0,0 -0.553929,-0.73578 -0.872611,-1.70558 -0.445968,-1.35715 0.580903,-1.88755 0.735763,-1.8571 0.41508,0.0816 0.66714,0.0603 1.032838,1.76423 0.399245,1.86024 0.826201,2.15695 0.826201,2.15695 l 2.404916,0.9923 -3.511264,-12.98459 z" + style="fill:url(#linearGradient4403);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3934" + d="m 71.63028,133.89427 3.471618,0.80785 0.445098,-0.95344 -3.625534,-0.82501 z" + style="fill:#c8dff6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cscccc" + inkscape:connector-curvature="0" + id="path3936" + d="m 75.027382,134.62222 c 0,0 0.841323,7.89175 1.552958,10.23983 0.717993,2.36906 1.672021,2.21772 1.672021,2.21772 -0.861232,-3.40731 -1.053473,-5.21676 -2.205849,-11.82666 l -0.436772,-1.55296 z" + style="fill:url(#linearGradient4435);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:none;stroke:#1c64ad;stroke-width:0.310403px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.184754,139.79583 3.47866,0.82348 0.491982,-0.55823" + id="path2595" + inkscape:connector-curvature="0" /> + </g> + <g + id="g3949-5" + style="display:inline" + transform="matrix(0.90431855,0,0,0.88838521,26.854897,126.91383)"> + <path + style="fill:#011f3d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 74.963067,145.87686 1.647163,0.49758 -1.647163,-5.78223 -2.041795,-0.0171 -0.06863,2.74527 z" + id="path3942-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#3380cf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 74.685153,146.03533 0.556061,-0.08 c 0,0 -0.927387,-1.64413 -0.875912,-2.27897 0.05147,-0.63485 0.342418,-1.45843 1.148841,-1.08095 0.806424,0.37747 -1.992344,-2.19198 -1.992344,-2.19198 l -0.634844,2.29917 z" + id="path3940-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#linearGradient4419);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.706578,133.68641 c 0,0 0.630628,7.62412 0.724238,8.73198 0.316665,1.46818 0.775352,2.98309 1.316498,3.20219 1.307604,0.52942 1.060399,0.42689 1.060399,0.42689 0,0 -0.420386,-0.40164 -0.894427,-1.93931 -0.423048,-1.37226 0.518673,-1.53782 0.673533,-1.50737 0.41508,0.0816 0.66714,0.0603 1.032838,1.76423 0.399245,1.86024 0.756722,2.05537 0.756722,2.05537 l 2.484871,0.72257 -3.591219,-12.71486 z" + id="path3938-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscssscccc" /> + <path + style="fill:#c8dff6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.694931,133.69684 3.406967,1.00528 0.445098,-0.95344 -3.353999,-0.96979 z" + id="path3934-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient4443);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 75.027382,134.62222 c 0,0 0.582358,8.00745 1.552958,10.23983 0.9706,2.23238 2.18385,2.08679 2.18385,2.08679 -0.861232,-3.40731 -1.565302,-5.08583 -2.717678,-11.69573 l -0.436772,-1.55296 z" + id="path3936-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscccc" /> + <path + style="display:inline;fill:none;stroke:#1c64ad;stroke-width:0.29519px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.217501,139.12033 3.401215,0.9307 0.512012,-0.48397" + id="path2595-7" + inkscape:connector-curvature="0" /> + </g> + <path + style="display:inline;opacity:1;fill:#c8b7b7;stroke:none;stroke-width:0.201928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 148.53898,250.33398 c 0,0 0.51999,0.32036 1.21504,0.32885 1.04661,0.0128 1.36464,-0.4527 1.36464,-0.4527 l 0.0266,-6.48108 -2.59301,1.03144 z" + id="path2418-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscccc" /> + <path + style="fill:#3a2a2a;fill-opacity:0.29798;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 133.65542,250.21706 9.31776,5.24124 -10.28836,4.51329 -2.96033,-4.17358 1.84414,-5.8236 z" + id="path2275" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.131313;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 143.86719,246.10076 v 1.45521 l 2.57968,1.15755 0.0662,-3.63802 z" + id="path8253" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#000000;fill-opacity:0.131313;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 148.49737,244.74477 v 1.45521 l 2.57968,1.15755 0.0662,-3.63802 z" + id="path8253-8" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#c83737;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 133.05376,250.62701 33.70925,-11.7693 1.63267,-5.65159 -32.97868,10.02754 z" + id="path2412" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,16.95583,10.9195)" + id="g939"> + <g + id="g898-1" + style="display:inline" + transform="translate(30.921316,30.789538)"> + <path + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + id="path862-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient3749);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + id="path854-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + id="path856-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + id="path858-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 40.616472,122.54036 0.653802,11.33929 2.291482,-1.48828 -0.472472,-11.22117 z" + id="path860-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + id="path864-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + </g> + <g + transform="translate(30.392149,30.789538)" + id="g942-7" + style="display:inline"> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="rect939-6" + d="m 33.687128,119.68063 4.326994,1.04156 0.202185,6.99172 -2.414953,2.82419 -2.066979,-3.01318 z" + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.665;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.196078" /> + </g> + <path + style="opacity:1;fill:#c8ab37;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 61.238011,155.76464 c 0,0 -0.255417,0.36275 0.02965,0.8283 0.285059,0.46554 1.677878,1.37993 2.16321,1.44493 0.485291,0.0654 0.695671,-0.25258 0.695671,-0.25258 l 0.05602,-1.80206 -1.469984,-0.55124 z" + id="path1004" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czzcccc" /> + <path + inkscape:connector-curvature="0" + id="path902-75" + d="m 62.453264,153.89499 -1.215251,1.86965 c 0,0 1.013985,-0.17301 1.884446,0.40541 0.870461,0.57842 1.004065,1.61524 1.004065,1.61524 l 1.201204,-1.96712 0.174931,-3.33887 -1.615228,0.34356 z" + style="opacity:1;fill:#e9ddaf;stroke:none;stroke-width:0.372552px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cczccccc" /> + <path + style="opacity:1;fill:#1863d5;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 62.276085,153.56427 -0.03196,0.73892 c 0,0 0.761664,-0.18112 1.783582,0.4724 1.02192,0.65351 0.980376,1.52371 0.980376,1.52371 l 0.48501,-0.24498 0.259132,-2.07012 -2.208797,-1.07487 z" + id="path1002" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cczccccc" /> + <path + sodipodi:nodetypes="ccscccsccc" + inkscape:connector-curvature="0" + id="path900-3" + d="m 65.82551,147.41019 -3.549423,6.15408 c 0,0 1.035984,-0.1152 2.095859,0.56823 1.339819,0.86394 1.12115,1.92189 1.12115,1.92189 l 3.570543,-6.44851 c 0.10993,-0.17781 0.121216,-0.37607 0.03813,-0.71661 0,0 -0.205081,-0.85153 -0.961267,-1.39352 -0.756186,-0.542 -1.789261,-0.31775 -1.789261,-0.31775 -0.192582,0.0372 -0.355096,0.13417 -0.525738,0.23223 z" + style="opacity:1;fill:#4187f1;fill-opacity:1;stroke:none;stroke-width:0.372552px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cczccccc" + inkscape:connector-curvature="0" + id="path902-7-5" + d="m 61.924415,156.36687 -0.927432,1.73934 c 0,0 -0.33484,0.58445 0.360633,0.99262 0.695472,0.40818 1.073298,-0.15105 1.073298,-0.15105 l 0.929983,-1.52899 c 0.121816,-0.20073 -0.04197,-0.58943 -0.451566,-0.89804 -0.29091,-0.21098 -0.869901,-0.35356 -0.984918,-0.15386 z" + style="display:inline;opacity:1;fill:#d7d7d7;fill-opacity:1;stroke:none;stroke-width:0.372552px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path924-7" + d="m 66.106643,147.54547 -3.326107,5.76393 c 0.362985,-0.10777 0.722697,-0.0175 1.13621,0.11279 l 3.259633,-5.88296 c -0.299237,-0.0316 -0.487938,-0.12699 -1.069728,0.006 z" + style="opacity:1;fill:#afdde9;stroke:none;stroke-width:0.372552px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="opacity:1;fill:#000000;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 61.380689,158.16397 c 0.219179,-0.36501 1.187719,0.10573 0.956752,0.5079 0,0 -0.251854,0.55873 -0.521621,0.75069 -0.269765,0.19195 -0.881022,-0.0506 -0.804631,-0.44717 0.07639,-0.39662 0.3695,-0.81142 0.3695,-0.81142 z" + id="path1006" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cczzc" /> + <path + sodipodi:nodetypes="ccscc" + inkscape:connector-curvature="0" + id="path1027" + d="m 59.791743,161.11716 -5.953124,-1.93714 c 0,0 3.874256,0.28349 4.252233,-2.55133 0.377976,-2.83483 -6.636119,-6.72391 -6.636119,-6.72391 l 11.933111,-5.4664" + style="opacity:1;fill:none;stroke:#ffffff;stroke-width:0.89046;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + ry="0" + rx="0" + y="157.89577" + x="52.199635" + height="2.3720171" + width="2.3720169" + id="rect1033" + style="opacity:1;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.703113;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + ry="0" + rx="0" + y="160.22691" + x="59.184483" + height="1.4515327" + width="1.4515328" + id="rect1033-8" + style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.648941;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,32.03012,128.59821)" + style="display:inline" + id="g3949-5-8"> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path3938-6-9" + d="m 71.576476,133.59359 c 0,0 0.76073,7.71694 0.85434,8.8248 0.316665,1.46818 0.793638,3.24369 1.334784,3.46279 0.905988,0.29909 1.648441,0.33122 2.610779,0.53921 l 2.484871,0.72257 -3.591219,-12.71486 z" + style="fill:url(#linearGradient4427);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3934-9-2" + d="m 71.577493,133.59075 3.524405,1.11137 0.445098,-0.95344 -3.506764,-1.20771 z" + style="fill:#c8dff6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cscccc" + inkscape:connector-curvature="0" + id="path3936-9-9" + d="m 75.027382,134.62222 c 0,0 0.582358,8.00745 1.552958,10.23983 0.9706,2.23238 2.18385,2.08679 2.18385,2.08679 -0.861232,-3.40731 -1.565302,-5.08583 -2.717678,-11.69573 l -0.436772,-1.55296 z" + style="fill:#ff9955;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:none;stroke:#1c64ad;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.08325,138.62992 3.471305,0.93314 0.522563,-0.48524" + id="path2595-7-6" + inkscape:connector-curvature="0" /> + </g> + <path + style="opacity:1;fill:url(#linearGradient2370);fill-opacity:1;stroke:#ff9955;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0" + d="m 97.855386,245.30471 0.802601,9.25354 c 0.07266,1.00511 2.839453,5.34745 8.574863,8.07802 3.60029,1.5071 6.88598,2.96513 6.88598,2.96513 0,0 0.90067,2.14225 -1.27624,3.73308 -2.17691,1.59081 -3.85147,1.17217 -3.85147,1.17217 l 0.83729,8.28899 4.15168,0.24698 6.23051,9.96775 c 1.85141,2.23978 3.768,3.17623 5.77718,2.26064 7.99681,-1.05931 14.47971,-4.3207 20.76439,-7.87036 1.93157,-1.16042 0.25117,-2.17691 0.25117,-2.17691 l -7.24364,-2.27499 c -1.56893,-0.65648 -2.55849,-1.88923 -1.12909,-3.33474 l 20.84811,-16.74546 c 1.01966,-1.3258 0.79973,-2.51385 0.41864,-3.684 l -2.08113,-5.73091 c -0.10046,0.3867 -0.37099,0.51409 -0.72648,0.66062 l -22.14313,9.34038 c -1.3253,0.33412 -2.48413,-0.79496 -2.51183,-1.92573 l -0.0261,-15.33775 -2.6539,-0.86881 -19.71706,5.61505 z" + id="path1059" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccsccccccccccccccccccc" /> + <path + style="display:inline;fill:url(#linearGradient2211);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 157.42105,249.95289 -22.30533,9.53982 -2.33348,13.1773 23.93044,-11.70974 3.5909,-5.51684 -2.50369,-6.02854 c -0.058,0.23397 -0.15988,0.43281 -0.37884,0.538 z" + id="path2195" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + inkscape:connector-curvature="0" + id="path1809" + d="m 97.998029,247.95823 12.040141,2.88103 0.043,-3.87005 -12.154055,-2.43443 z" + style="fill:#982112;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#64681e;fill-opacity:0.333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 123.69271,218.35259 -2.05057,0.99218 -2.3151,0.33073 2.87734,0.74414 1.14102,5.63894 0.6847,0.39283 1.18392,2.68295 -0.0661,2.51354 7.01145,-1.38906 -0.7276,-13.95677 z" + id="path6355" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="fill:url(#linearGradient2359);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 161.27853,223.73107 -28.16882,7.72924 -5.44153,-1.39009 -6.40685,2.10685 c -0.37698,1.59167 -1.24309,2.53747 -2.03295,3.09231 l -25.401551,6.9696 10.316211,3.85298 23.13808,-5.65907 11.69644,1.80609 33.02435,-12.04009 z" + id="path1199" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="fill:url(#linearGradient2136);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 152.30797,259.69861 c 0,0 -0.652,0.36031 -1.06379,0.326 -0.41179,-0.0343 -0.82358,-0.84075 -0.0172,-1.69864 0.80642,-0.8579 2.48789,-2.93401 6.21117,-3.65464 l 1.81875,-0.0686 z" + id="path2109" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:1;fill:url(#linearGradient5493);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.03772,246.9374 c -0.31758,4.00496 0.11422,8.00991 0.79541,12.01487 0,0 4.68874,7.24241 9.62865,8.79137 4.93991,1.54895 12.18233,-4.85618 12.18233,-4.85618 -3.32655,1.62377 -6.79369,2.7086 -10.5078,2.84673 0,0 -4.68872,-1.67456 -8.24712,-6.74005 -1.32377,-1.88439 -1.46524,-12.72655 -1.46524,-12.72655 z" + id="path2247" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccscc" /> + <path + style="opacity:1;fill:#e1462e;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 108.4469,271.17647 c 0,0 6.2927,-2.6792 10.29845,-2.72114 4.00579,-0.0419 7.82097,0.95137 8.24715,2.88859 0.46051,2.09318 -0.83725,4.52127 -6.27954,6.53074 -5.44227,2.00945 -10.88455,0.92098 -10.88455,0.92098 z" + id="path2185" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czsccc" /> + <path + style="fill:#de7474;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.71227,272.60138 0.34316,-0.24021 6.48175,-1.54041 c 0,0 -0.61369,-0.67297 -2.32952,-1.63381 l -5.23318,1.01232 c 0,0 -0.39463,0.24021 -0.5319,0.61769 -0.13726,0.37747 10e-6,0.51474 10e-6,0.51474 0,0 0.68631,0.36031 1.26968,1.26968 z" + id="path5562" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + style="opacity:1;fill:#4b3b3b;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.04746,246.82304 4.01153,1.00415 c 0.49738,0.1415 0.64047,0.47865 0.61479,0.90893 l 0.21387,5.48096 -4.83187,-1.35878 z" + id="path2235" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:1;fill:#902828;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 100.12055,247.72414 c 0.008,-0.61129 0.40448,-0.83548 0.92691,-0.76078 l 0.10246,5.37998 c -0.003,0.4182 0.1893,0.59253 0.4575,0.67188 l -0.7577,0.60724 c -0.3385,-0.22172 -0.60325,-0.52019 -0.64276,-1.05306 z" + id="path2231" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="opacity:1;fill:#b23131;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 100.84968,253.62246 4.47269,1.11883 c 0.45312,-0.0633 0.59356,-0.45659 0.54019,-0.73307 l -4.25518,-0.993 z" + id="path2233" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient5465);stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 110.15905,246.8646 c -0.42946,4.07443 0.0923,7.93866 0.66551,11.8303" + id="path2237" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="opacity:1;fill:none;stroke:#000000;stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39899" + d="m 98.717184,254.32143 c 0.880896,0.7977 1.909246,1.22676 2.944926,1.63752 l 9.17102,2.99332 2.53489,-0.95229" + id="path2239" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="opacity:1;fill:none;stroke:url(#linearGradient5437);stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 122.13633,265.73419 -1.67455,2.00945 c -4.28896,-2.24872 -7.39392,-5.0029 -9.56192,-8.59118" + id="path2243" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="opacity:1;fill:#000000;fill-opacity:0.40404;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 100.85195,246.79746 c -0.42608,8.8e-4 -0.72482,0.39187 -0.73135,0.92676 l 0.0173,1.04847 c 0,0 0.26314,-0.72132 0.94041,-0.61766 0.22349,0.0342 0.49095,0.0854 0.80704,0.16072 1.27394,0.30399 2.27048,0.54753 3.02402,2.32674 0.75355,1.7792 0.95305,3.36572 0.95305,3.36572 l 0.0165,-0.009 -0.20513,-5.26336 c 0.0256,-0.43031 -0.11756,-0.7674 -0.61494,-0.90891 l -4.01152,-1.01603 c -0.0653,-0.009 -0.0761,-0.0257 -0.16034,0.01 z" + id="path2249" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsscccccccc" /> + <path + style="display:inline;opacity:1;fill:none;stroke:#e76d6d;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 98.657987,254.55825 c 1.019411,0.77631 1.687413,1.20484 3.010893,1.65252 l 9.16784,2.99228" + id="path2239-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient5509);stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 99.983001,247.71543 0.120809,4.84532 c 0.0481,0.64441 0.26146,0.90004 0.74582,1.06171 l 4.62703,1.17008 c 0.34939,-0.0488 0.48569,-0.41349 0.51776,-0.64988" + id="path2235-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="opacity:1;fill:#982112;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 119.51985,267.42966 c 0.47911,0.1819 1.81125,0.0219 0.0837,1.08846 -0.87739,0.15815 -1.86728,0.34745 -2.91953,0.55419 -0.0814,0.016 -0.0472,0.27657 -0.12932,0.29275 -0.077,0.0152 -0.31584,-0.19437 -0.63609,-0.11835 -1.45414,0.34519 -2.74692,0.52869 -4.29008,0.8413 1.69951,-0.97785 2.89442,-2.69286 2.49026,-4.48661 z" + id="path2331" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsssccc" /> + <path + style="opacity:1;fill:none;stroke:url(#linearGradient1818);stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 126.75586,273.61977 c 0,0 -1.42092,6.36444 2.33855,9.59107 3.75946,3.22662 7.01569,4.64753 7.01569,4.64753 l -0.0592,0.71044" + id="path2367" + inkscape:connector-curvature="0" /> + <path + style="display:inline;opacity:1;fill:none;stroke:url(#linearGradient1826);stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 126.54864,273.70854 c 0,0 -1.42091,6.36446 2.33855,9.59108 3.75947,3.22663 7.0157,4.64754 7.0157,4.64754 l -0.0592,0.71045" + id="path2367-2" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#982112;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 129.77527,242.15275 c 0,0 -5.38759,2.90101 -5.32838,5.56519 0.0592,2.66418 8.70302,2.54578 10.12391,0.17762 l -1.48969,-5.23023 z" + id="path2400" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccc" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path978" + d="m 109.94718,246.79866 c -0.25073,1.33707 -0.0546,2.76725 -0.0617,4.06371 l 2.58907,-2.13913 17.36178,-1.91557 0.57771,-4.80413 -5.35143,-0.30406 z" + style="fill:#550000;fill-opacity:0.429719;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="opacity:1;fill:#ac9d93;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 130.36253,241.9347 c 0,0 -1.32512,1.18033 -1.04659,3.95611 0.27853,2.77579 3.87122,4.10031 4.87712,3.30723 l 2.40715,-2.49089 -0.0629,-4.64686 z" + id="path2406" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czcccc" /> + <path + style="fill:none;stroke:#510d07;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 129.74528,242.69508 c 0,0 -0.84074,2.23053 -0.42895,3.68896 0.41179,1.45842 1.49274,2.50506 3.39727,2.95117" + id="path5523" + inkscape:connector-curvature="0" /> + <ellipse + style="opacity:1;fill:#6c5d53;fill-opacity:1;stroke:none;stroke-width:0.33294;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2402" + cx="133.41856" + cy="245.02214" + rx="2.9304566" + ry="2.9409223" /> + <path + style="fill:#000000;fill-opacity:0.277778;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 135.7334,243.29561 -6.17686,-0.68632 c 0,0 -0.78927,2.74527 -0.0686,4.25517 l 5.76504,-1.13242 z" + id="path2277" + inkscape:connector-curvature="0" /> + <path + style="fill:#312b26;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 132.70909,243.05888 c 0,0 -0.0728,1.18899 0.87354,1.91694 0.94633,0.72795 1.77134,0.77648 1.77134,0.77648 l 0.41251,-2.57209 z" + id="path2279" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#71180d;fill-opacity:0.469697;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 129.82155,242.50079 -2.47503,-0.4853 -10.62807,2.81474 c 0,0 6.39651,3.77998 9.07511,4.3677 2.6786,0.58772 6.14136,-0.0372 6.14136,-0.0372 -0.40334,0.47056 -4.386,-1.66905 -2.21635,-6.62565 z" + id="path2281" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccczccc" /> + <path + style="opacity:1;fill:#b03232;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 135.41701,243.23366 c 0,0 0.0892,3.89331 -1.54168,5.01037 -1.63084,1.11704 -4.18463,1.56094 -8.01294,0.98554 0,0 2.66975,1.40346 4.23209,1.61977 0.70434,0.0975 1.2618,0.10722 2.27488,-0.0781 1.39311,-0.25472 2.90631,-0.8449 3.82613,-2.60933 0.75804,-1.45404 1.05429,-3.15217 1.11352,-4.60311 z" + id="path2404" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czcssscc" /> + <path + sodipodi:nodetypes="ccccccc" + style="display:inline;fill:#550000;fill-opacity:0.429719;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 135.1878,242.88533 0.24325,1.97638 1.64191,0.57772 28.67279,-10.06438 0.21283,-2.1284 -27.30452,9.85152 z" + id="path978-2" + inkscape:connector-curvature="0" /> + <path + style="fill:#d73f2e;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 126.10421,270.13335 c -1.15889,0.80021 -3.85547,2.83938 -5.74434,3.63469 -3.31875,1.39737 -8.06608,1.66581 -10.00009,1.79533 l -0.53134,3.23204 c 0,0 5.44234,1.08858 10.88461,-0.92088 5.44229,-2.00947 6.73971,-4.43768 6.2792,-6.53086 -0.16195,-0.73618 -0.50615,-0.71747 -0.88804,-1.21032 z" + id="path5544" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <ellipse + style="fill:#982112;fill-opacity:1;stroke:#800000;stroke-width:0.234436" + id="path996" + cx="108.43056" + cy="275.37405" + rx="2.1588202" + ry="3.694319" /> + <path + style="display:inline;opacity:1;fill:#c4352c;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 124.74089,273.59279 c -1.7751,1.09844 -2.06816,1.23367 -4.07216,2.26871 -2.52374,1.30346 -7.96454,1.71777 -10.2759,1.67114 l -0.56439,1.26277 c 0,0 5.44234,1.08858 10.88461,-0.92088 5.44229,-2.00947 6.73971,-4.43768 6.2792,-6.53086 -0.0882,-0.4008 -1.84858,1.99987 -2.25136,2.24912 z" + id="path2185-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="scccccs" /> + <path + style="opacity:1;fill:#916f6f;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 108.99112,270.50665 -1.59081,1.46523 c 0,0 2.18994,1.41993 2.12715,3.40845 -0.0793,2.5109 -1.08056,3.70837 -1.08056,3.70837 l 3.13978,-0.0418 c 0,0 0.78507,-1.16643 0.71168,-4.41662 -0.0734,-3.25019 -3.30724,-4.12357 -3.30724,-4.12357 z" + id="path2435" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscczcc" /> + <path + style="opacity:1;fill:url(#linearGradient1867);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 104.34425,274.52094 c 0,0 -0.37676,-2.26064 -1.61175,-2.36529 -1.23498,-0.1046 -3.746789,8.7495 0.37678,12.49628 2.13505,1.5071 0.66068,-2.68202 1.19311,-4.4166 0.74718,-2.43416 1.06753,-3.49561 0.85821,-4.06078 -0.20932,-0.56514 -0.81635,-1.65361 -0.81635,-1.65361 z" + id="path1202" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsccc" /> + <path + style="fill:url(#linearGradient1998);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 102.73275,272.1555 c -0.0642,-0.005 -0.13261,0.019 -0.20258,0.0599 1.69319,1.05497 1.36108,3.68361 2.08012,5.56661 0,0 -0.87354,2.45065 -0.75222,3.78523 0.0915,1.00619 0.30571,2.07444 0.35572,3.10373 0.31697,-0.84029 -0.28171,-3.23025 0.0884,-4.43591 0.74719,-2.43416 1.06767,-3.49556 0.85835,-4.06073 -0.20932,-0.56514 -0.81649,-1.65365 -0.81649,-1.65365 0,0 -0.37628,-2.26058 -1.61127,-2.36523 z" + id="path1961" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="opacity:1;fill:#ac6158;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.32695,272.39653 c -3.07862,1.03607 -5.813532,5.01944 0.76664,6.11047 0.1695,-0.1211 0.54811,-0.1743 0.69054,-0.29658 2.72223,-2.3372 0.42647,-4.91025 -0.71539,-5.73114 -0.35153,-0.25271 -0.77173,-0.1576 -0.74179,-0.0828 z" + id="path1196" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccssc" /> + <path + style="fill:none;stroke:#f26f3e;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 119.54775,278.26729 1.85546,5.12372" + id="path1756" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:url(#linearGradient1751);stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 121.45171,283.573 2.78794,8.04484" + id="path2333" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient1766);stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 119.80939,278.26729 4.69194,13.35055" + id="path2333-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + id="path233" + d="m 93.826995,242.23916 0.01958,1.16743 12.238145,3.45438 0.0227,-1.23658 z" + style="fill:#8d9e9c;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path235" + d="m 105.92037,245.57761 -0.0695,1.18982 2.29563,0.68648 19.13484,-4.99975 v -2.02101 z" + style="fill:#778382;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + id="path237" + d="m 127.28136,242.45416 10.94362,1.41903 0.7525,-1.63403 -11.69612,-1.80601 z" + style="fill:#656766;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path247" + d="m 138.97748,242.23916 -0.7525,1.63403 27.7568,-9.67511 -0.4747,-2.1269 z" + style="fill:#596b69;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + sodipodi:insensitive="true" + d="m 42.334337,112.41515 c -0.02075,-0.13775 -0.09186,-0.25988 -0.155621,-0.38134 -0.02683,-0.0514 -0.05253,-0.10351 -0.07276,-0.15789" + id="path707" + inkscape:path-effect="#path-effect702" + inkscape:original-d="m 42.334337,112.41515 c -0.03091,-0.20055 -0.160086,-0.35569 -0.228376,-0.53923" /> + <path + inkscape:connector-curvature="0" + sodipodi:insensitive="true" + d="m 42.334337,112.41515 c -0.143342,-0.27414 -0.201478,-0.58314 -0.339393,-0.85959" + id="path712" + inkscape:path-effect="#path-effect705" + inkscape:original-d="m 42.334337,112.41515 c -0.143442,-0.27447 -0.202368,-0.58554 -0.339393,-0.85959" /> + <path + inkscape:connector-curvature="0" + sodipodi:insensitive="true" + d="m 42.334337,112.41515 c -0.19105,-0.3706 -0.260051,-0.79235 -0.469441,-1.15457" + id="path717" + inkscape:path-effect="#path-effect710" + inkscape:original-d="m 42.334337,112.41515 c -0.191144,-0.371 -0.260776,-0.79415 -0.469441,-1.15457" /> + <path + inkscape:connector-curvature="0" + sodipodi:insensitive="true" + d="m 56.07816,123.79432 c -0.229784,0.17355 -0.448779,0.36187 -0.650239,0.56777" + id="path797" + inkscape:path-effect="#path-effect792" + inkscape:original-d="m 56.07816,123.79432 c -0.227863,0.17199 -0.449229,0.36219 -0.650239,0.56777" /> + <path + inkscape:connector-curvature="0" + sodipodi:insensitive="true" + d="m 56.07816,123.79432 c -0.345181,0.23682 -0.631191,0.54756 -0.897646,0.86751" + id="path802" + inkscape:path-effect="#path-effect795" + inkscape:original-d="m 56.07816,123.79432 c -0.346603,0.23805 -0.630675,0.54715 -0.897646,0.86751" /> + <path + inkscape:connector-curvature="0" + sodipodi:insensitive="true" + d="m 56.07816,123.79432 c -0.366708,0.26644 -0.710295,0.57785 -0.953193,0.96422 -0.06333,0.10083 -0.119334,0.2063 -0.166486,0.31564" + id="path807" + inkscape:path-effect="#path-effect800" + inkscape:original-d="m 56.07816,123.79432 c -0.465333,0.33799 -0.889665,0.74665 -1.119679,1.27986" /> + <path + inkscape:connector-curvature="0" + sodipodi:insensitive="true" + d="m 56.07816,123.79432 c -0.211115,0.0592 -0.378594,0.21454 -0.511842,0.38253 -0.196405,0.24577 -0.333316,0.53151 -0.515525,0.787 -0.04695,0.0639 -0.09764,0.1261 -0.158922,0.17694" + id="path812" + inkscape:path-effect="#path-effect805" + inkscape:original-d="m 56.07816,123.79432 c -0.590387,0.16644 -0.845361,1.06571 -1.186289,1.34647" /> + <g + id="g550" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <rect + y="122.6433" + x="58.966335" + height="8.6862593" + width="6.2140164" + id="rect541" + style="fill:#656766;fill-opacity:1;stroke:none;stroke-width:0.264583" /> + <rect + y="123.0108" + x="58.46521" + height="8.9869385" + width="2.319284" + id="rect509" + style="fill:#90a3a1;fill-opacity:1;stroke:none;stroke-width:0.24961" /> + <rect + style="display:inline;fill:#9eb1af;fill-opacity:1;stroke:none;stroke-width:0.280719" + id="rect509-2" + width="2.9334137" + height="8.9869385" + x="61.211269" + y="123.0275" /> + <rect + y="122.32591" + x="64.512184" + height="8.9869385" + width="1.7038432" + id="rect509-2-3" + style="display:inline;fill:#bacdcb;fill-opacity:1;stroke:none;stroke-width:0.213944" /> + <path + inkscape:connector-curvature="0" + id="path466" + d="m 58.451117,122.16894 0.01526,0.97391 c 0,0 3.525562,1.48275 7.679714,0.002 l 0.154063,-0.9926 c 0,0 -3.824257,1.54291 -7.849035,0.0164 z" + style="fill:#768684;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + transform="rotate(-0.71214196)" + ry="1.0857824" + rx="3.9923384" + cy="122.65894" + cx="60.862511" + id="path503" + style="fill:#bfd2d0;fill-opacity:1;stroke:none;stroke-width:0.264583" /> + <path + style="fill:none;stroke:#bacdcb;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 60.741338,123.7093 -0.02048,6.12083" + id="path3343" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#bacdcb;stroke-width:0.334203px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 63.985924,123.65224 -0.02034,7.71976" + id="path3343-6" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path466-9" + d="m 58.454499,125.02002 0.01526,0.97391 c 0,0 3.525562,1.48275 7.679714,0.002 l 0.154063,-0.9926 c 0,0 -3.824257,1.54291 -7.849035,0.0164 z" + style="display:inline;fill:#000000;fill-opacity:0.166667;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 58.57141,123.11086 c 0,0 1.514853,0.88025 4.217027,0.71649 2.702171,-0.16377 3.439126,-0.73696 3.439126,-0.73696" + id="path5075" + inkscape:connector-curvature="0" /> + </g> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 79.560973,239.3136 0.879131,7.78665 -2.804858,4.35382 -2.009466,-2.67928 -0.586083,-3.51655 1.548953,-4.89804 z" + id="path448" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:url(#linearGradient5574-1-0);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" + d="m 112.27863,278.19461 c 0,0 1.047,-1.26816 0.58338,-4.13508 -0.46361,-2.86691 -2.52775,-3.47992 -2.52775,-3.47992" + id="path5566-2-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czc" /> + <path + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.1305,271.25482 c 0,0 1.81987,0.98273 2.00186,3.40923 0.18199,2.4265 -0.54596,3.85813 -0.54596,3.85813 l 0.61876,-0.0607 c 0,0 0.89781,-1.43163 0.5217,-4.39196 -0.31877,-2.50902 -2.30518,-3.3971 -2.30518,-3.3971 z" + id="path1810" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccscc" /> + <path + style="display:inline;opacity:1;fill:#92524b;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 102.09868,275.38942 c -0.27556,1.27541 0.66871,2.5661 3.99511,3.11763 0.39255,-0.0353 0.54796,-0.17434 0.69039,-0.29662 0.43831,-0.37631 0.7454,-0.7587 0.9493,-1.13895 -0.70567,0.0724 -1.8525,0.14363 -2.66134,-0.0434 -0.90523,-0.20933 -2.17906,-1.05929 -2.97346,-1.63865 z" + id="path1196-2" + inkscape:connector-curvature="0" /> + <path + style="fill:#740000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 107.37131,274.04265 c 0,0 0.82358,0.20589 1.3898,0.94369 0.56621,0.73779 0.72063,1.70721 0.72063,1.70721 0,0 0.27452,-2.43643 -0.11153,-2.86537 -0.38605,-0.42896 -1.89595,-0.7378 -1.89595,-0.7378 z" + id="path2038" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#ff8080;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 108.711,273.59639 c 0,0 0.59449,0.9706 0.53383,2.03826 -0.0607,1.06766 -0.60663,2.48716 -0.60663,2.48716 l 0.4853,0.40037 c 0,0 0.7463,-0.84224 0.77648,-3.04525 0.0302,-2.203 -1.17685,-2.88754 -1.17685,-2.88754 z" + id="path2036" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccczcc" /> + <path + style="fill:#d2aaa6;fill-opacity:0.474747;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.5548,272.31518 c -0.14525,0.002 -0.24286,0.0437 -0.22789,0.0811 -1.99032,0.66981 -3.8331,2.57128 -3.11196,4.12687 0.85318,-0.75443 2.48256,-2.09643 3.59513,-2.37763 1.11689,-0.28229 1.2664,-0.31747 1.52187,-0.38034 -0.40255,-0.56709 -0.8926,-1.01945 -1.26297,-1.28571 -0.17576,-0.12635 -0.36893,-0.16587 -0.51418,-0.16433 z" + id="path2063" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 106.05398,272.49233 c 0,0 -0.70368,-0.24265 -0.64302,0.4853 0.0607,0.72795 0.27141,1.08579 0.81288,1.69855 0.54146,0.61276 1.18898,0.86141 1.18898,0.86141 l 0.31545,-0.14559 c 0,0 0.0364,0.40037 0.0121,0.53383 0,0 -0.64834,0.0584 -0.95846,0.99487 -0.31011,0.93643 -0.24265,1.40737 -0.24265,1.40737 l 0.90994,-0.42464 c 0,0 0.74008,-1.32244 0.63089,-2.24451 -0.10919,-0.92207 -1.24965,-3.23938 -1.24965,-3.23938 z" + id="path2040" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cczccczccccc" /> + <path + style="fill:#e9afaf;fill-opacity:0.525253;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.55001,272.78351 c 0,0 -1.28605,0.80075 -1.79562,1.48017 l -0.60662,0.50956 c 0,0 -0.0728,-0.87354 -0.70369,-2.18385 l 1.5287,-1.67428 c 0,0 1.21326,0.825 1.57723,1.8684 z" + id="path2042" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:url(#linearGradient1850);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.7467,272.7208 c 0,0 0.7954,-1.25591 -0.46051,-4.56315 -1.2559,-3.30721 -1.71641,-4.87711 0.69076,-4.27007 2.40716,0.607 5.25388,3.72586 4.89805,6.90751 -0.35586,3.18162 -0.94194,3.43281 -2.19785,2.99323 -1.25591,-0.43955 -0.77447,1.19312 -0.77447,1.19312 l -0.54423,0.20931 c -1.16349,-0.57978 -1.61156,-1.43778 -1.61175,-2.46995 z" + id="path1198" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:none;stroke:#982112;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 114.17063,279.06815 c 0,0 5.14418,0.12132 9.12364,-2.37797 3.97946,-2.4993 3.42136,-3.25151 3.42136,-3.25151" + id="path5826" + inkscape:connector-curvature="0" /> + <path + style="fill:#2b0000;fill-opacity:0.116162;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 113.97712,279.19003 1.88738,2.84822 c 0,0 5.85942,-2.20454 7.78971,-4.18653 1.93029,-1.982 2.67663,-3.50023 2.67663,-3.50023 0,0 -3.22569,3.36296 -7.41223,4.08359 -4.18654,0.72064 -4.94149,0.75495 -4.94149,0.75495 z" + id="path5828" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cczccc" /> + <path + style="fill:#411212;fill-opacity:0.474747;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 112.20556,276.78792 c 0,0 -2.00319,0.10292 -3.15277,-0.15442 -0.15344,0.82488 -0.44709,1.46284 -0.87505,1.92169 l 3.55169,1.75011 -0.03,-1.24395 c 0,0 0.43752,-1.43269 0.50615,-2.27343 z" + id="path2044" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:1;fill:url(#linearGradient1859);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 107.8035,276.03317 c 0,0 2.12956,4.24403 4.64138,1.69033 2.51181,-2.55367 2.78395,-2.97232 3.64214,-1.40242 0.85821,1.56989 -0.43957,8.56113 -5.81905,9.46119 -3.53749,-0.0837 -3.51484,-7.78353 -3.51484,-7.78353 0.0654,-0.53036 0.14334,-1.3709 1.05037,-1.96557 z" + id="path1200" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccc" /> + <path + style="fill:#c1cd7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.746728,199.92672 -6.106061,1.72001 -6.278066,1.11802 -1.462014,1.29001 -4.214047,2.15003 -2.064019,2.83802 0.946009,0.344 -0.08601,1.29002 1.680364,0.22492 0.377011,1.09816 1.296649,0.31095 -0.688007,1.63401 2.150024,1.11802 2.83803,-1.29003 3.870043,0.25801 -0.258005,1.07501 1.419015,-0.215 1.76302,0.98901 1.763018,0.12901 0.429999,0.68799 4.042046,1.54802 15.265165,2.70904 15.867158,3.56903 4.64405,-0.86001 -29.1113,-10.75012 -4.988055,-8.08408 z" + id="path390" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccccccccccc" /> + <path + style="fill:#445500;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 55.214543,213.88584 0.561266,-0.93544 0.608039,1.47332 -1.028988,0.6782 z" + id="path8528" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1058" + d="m 60.450042,205.15158 -0.851364,4.0744 -1.459483,1.39866 6.446053,-0.18243 0.243249,-2.79735 z" + style="fill:#cba088;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#000000;fill-opacity:0.267677;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.73229,218.22029 c 0,0 13.22917,2.64584 19.38074,1.19063 6.15156,-1.45521 27.05364,-7.01146 27.05364,-7.01146 v -2.38125 l -30.8901,7.67292 -9.45886,0.66146 z" + id="path3041" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 70.048437,201.08852 71.6194,199.5837 c 1.620172,-0.28437 3.515539,-0.0819 4.613673,-1.28984 l 0.677995,1.27331 -3.852995,2.00091 z" + id="path3400" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + id="path1064" + d="m 62.213587,202.29343 c 0,0 1.489889,-2.00681 1.550701,-3.61831 0.04666,-1.2364 0.111053,-3.35029 0.138504,-4.26739 0.0083,-0.27825 0.294376,-0.46286 0.294376,-0.46286 1.179107,-0.5179 1.768829,-0.46951 2.926171,-0.33447 0,0 0.201805,0.14094 0.211344,0.37579 0.04011,0.98746 0.189312,3.63507 0.656028,4.44568 0.577716,1.0034 2.250043,3.16221 2.250043,3.16221 0,0 -1.581109,1.79395 -4.01359,1.70273 -2.432473,-0.0912 -4.01358,-1.00338 -4.013579,-1.00338 z" + style="fill:url(#linearGradient3337);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccsccscccsc" /> + <path + style="display:inline;fill:none;stroke:#666666;stroke-width:0.311349;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 63.331855,200.60342 c 0,0 1.398058,0.61628 3.200373,0.38097 1.802311,-0.2353 2.57714,-0.79555 2.57714,-0.79555" + id="path3296-3" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.257576;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 64.144922,202.97368 2.000911,-1.25677 c 0,0 1.329078,-1.17928 1.709417,-1.8242 0.380339,-0.64492 0.202936,-1.32595 0.202936,-1.32595 l 1.990251,2.88557 c 0,0 -0.909505,1.33945 -2.497005,1.5875 -1.5875,0.24804 -3.40651,-0.0661 -3.40651,-0.0661 z" + id="path3402" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccccc" /> + <path + style="display:inline;fill:none;stroke:#c4c4c4;stroke-width:0.311349;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 63.315014,200.82752 c 0,0 1.398056,0.61628 3.200372,0.38097 1.80231,-0.23531 2.577139,-0.79555 2.577139,-0.79555" + id="path3296-2-3" + inkscape:connector-curvature="0" /> + <g + id="g1612" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 157.92204,61.64064 c 0,0 -4.4791,-2.463506 -10.6752,-2.090248 -6.19609,0.373259 -9.25681,1.418383 -9.25681,1.418383 l 14.55708,7.46517 z" + id="path3175" + inkscape:connector-curvature="0" /> + <path + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 40.561384,88.397738 1.029478,-1.098108 7.618126,-3.157062 2.333482,-0.480422 1.92169,-1.5099 7.137705,-0.480423 5.078753,-2.813902 5.421911,-5.147384 2.608008,-1.57853 4.872855,-6.314126 8.716238,-10.637927 3.43159,-1.784427 7.274967,-12.69688 3.706113,-5.559174 6.65729,-2.333479 3.50022,-1.92169 5.07875,2.539376 9.88298,5.902333 1.16674,1.921689 7.75539,5.902333 4.3238,5.284647 3.63749,6.451389 9.19665,6.039598 -20.93269,19.28553 -4.87286,8.441711 -35.139469,7.41223 L 70.34758,98.212083 45.365609,91.211642 Z" + id="path1060" + inkscape:connector-curvature="0" /> + <path + style="fill:#6aafb0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 113.92876,38.708327 9.0594,11.11835 5.21601,-8.647607 -1.64716,-2.470743 -9.05939,-4.804225 z" + id="path1624" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1751" + d="m 123.26268,49.414884 0.4118,30.609776 24.29565,-15.37352 -11.80467,-17.295209 z" + style="fill:#64b9b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#488d8e;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 143.44043,58.748808 -10.84382,20.726799 26.62913,-9.471186 z" + id="path1626" + inkscape:connector-curvature="0" /> + <path + style="fill:#9fe4e5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 105.83021,39.943698 103.35947,61.356816 90.593957,53.670056 101.84957,35.139473 Z" + id="path1628" + inkscape:connector-curvature="0" /> + <path + style="fill:#cbf7ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 87.025103,55.454483 103.63399,61.631342 91.143009,53.532793 Z" + id="path2453" + inkscape:connector-curvature="0" /> + <path + style="fill:#9fe4e5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 103.08494,61.082287 92.515647,89.084056 74.945908,70.004421 87.436893,55.317217 Z" + id="path2455" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path926" + d="m 127.92965,41.316335 -5.21602,8.510342 13.58909,-2.196219 z" + style="fill:#5eaba2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1761" + d="m 112.55613,58.474281 -9.19666,3.294325 1.5099,19.354164 6.45139,0.960845 z" + style="fill:#559a9b;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1753" + d="m 103.35947,61.219553 4.39243,20.177744 -15.09899,6.863178 z" + style="fill:#6aafb0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1755" + d="m 126.00796,56.827118 -14.13815,1.784426 11.6674,4.117907 z" + style="fill:#7dd4d6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1757" + d="m 112.55613,58.748808 -2.33348,22.648489 13.86362,2.196216 -0.68632,-21.275852 z" + style="fill:#64b9b4;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1759" + d="m 125.87069,57.101644 9.47119,17.569738 -10.84382,7.549496 -1.23538,-19.628691 z" + style="fill:#4a8f90;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1763" + d="m 103.63399,61.905869 1.09811,-13.589093 7.96129,10.294768 z" + style="fill:#9ee3e4;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#6aa28d;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 117.51587,33.908137 3.74786,6.598341 -7.39014,-1.636389 z" + id="path3483" + inkscape:connector-curvature="0" /> + <g + id="g1772"> + <path + inkscape:connector-curvature="0" + id="path1616" + d="m 102.93213,35.281311 1.9412,2.669149 0.94634,2.499296 7.66773,-2.305177 3.42137,-3.518424 -5.14418,-3.275774 z" + style="fill:#688283;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path1618" + d="m 116.83598,34.674685 -6.96415,0.215736 -4.36761,4.103436 0.33971,1.455899 7.692,-2.256647 z" + style="fill:#012f30;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path1622" + d="m 108.36749,33.607025 1.02099,1.741511 7.20484,-0.06725 0.41251,-0.752215 -5.11991,-3.05739 z" + style="fill:#1c4b4c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccc" + inkscape:connector-curvature="0" + id="path1614" + d="m 111.86981,30.884304 -3.50022,1.92169 -6.65729,2.333479 2.03002,2.295884 2.15014,3.087194 -0.98549,-3.647145 -1.56418,-1.567238 5.21882,-1.240109 3.85693,-2.90939 z" + style="fill:#f6fafb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1620" + d="m 105.99343,40.404906 7.47159,-2.236062 3.44375,-3.591219 h 1.11619 l -4.27064,4.513289 z" + style="fill:#f6fafb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + </g> + <path + style="fill:#a7ae52;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 302.61914,219.32227 -3.13476,4.0625 -8.73243,5.28515 -18.1582,17.23828 -17.00781,9.42383 -23.9043,1.60938 -6.43555,5.05664 -7.81445,1.60742 -25.51172,10.57422 -3.44726,3.67773 8.24218,4.82617 L 216.5,286.5 c 0,0 18.69925,7.59544 35.36914,14.03516 l 36.35352,10.1875 72.40039,6.20703 122.19431,-26.39717 -14.3039,-32.11831 L 412.5,253.5 l -47,19.25 z" + transform="matrix(0.2986068,0,0,0.2986068,-15.717817,5.4279099)" + id="path3154" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccc" /> + <path + style="fill:#417677;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 117.51587,33.908137 3.80065,6.492766 5.59539,3.589498 2.0059,-2.639338 -2.37541,-2.744907 z" + id="path3485" + inkscape:connector-curvature="0" /> + <path + style="fill:#51958f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 136.0968,47.368752 -4.80359,7.073419 7.75965,-3.167203 z" + id="path3487" + inkscape:connector-curvature="0" /> + <path + style="fill:#5cc3ed;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 136.0968,47.421537 -4.64523,7.020634 -0.63344,-5.912113 z" + id="path3489" + inkscape:connector-curvature="0" /> + <path + style="fill:#64b9b1;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 133.14074,44.99335 -2.42819,3.589495 5.38425,-1.108521 z" + id="path3491" + inkscape:connector-curvature="0" /> + <path + style="fill:#5bb2b5;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 131.34599,54.494958 9.23768,4.803592 -1.53081,-8.023582 z" + id="path3493" + inkscape:connector-curvature="0" /> + <path + style="fill:#62c9df;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 131.50435,54.494958 3.11442,11.877014 6.01769,-7.073422 z" + id="path3495" + inkscape:connector-curvature="0" /> + <path + style="fill:#609064;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 140.4781,59.245763 7.28457,11.877014 -12.51046,-0.105573 -0.68623,-4.803592 z" + id="path3497" + inkscape:connector-curvature="0" /> + <path + style="fill:#838b50;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 153.25249,64.946731 -9.60719,-6.439981 3.27278,10.821277 4.7508,-0.47508 z" + id="path3499" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#70792f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 143.6453,58.401177 -0.63344,11.401931 4.59245,0.211147 z" + id="path3501" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#a3cfff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 104.20776,36.863645 -5.80068,9.185438 -0.739016,-4.961952 4.011796,-5.912113 z" + id="path3503" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#d8e9ff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 97.456919,41.614999 -2.956058,5.173097 4.011792,0.527868 z" + id="path3505" + inkscape:connector-curvature="0" /> + <path + style="fill:#52bbff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 97.879212,47.104816 4.011788,-1.266881 2.85049,1.372457 1.37245,-6.651129 -1.95576,-3.707878 -5.856675,8.775405 z" + id="path3507" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#64cce9;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 98.09036,47.104816 3.90621,-1.372452 -0.84458,14.146842 -4.856379,-7.60129 z" + id="path3509" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#a2d1ff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 97.879212,47.210392 -2.217042,9.079316 -4.645232,-3.167203 3.378351,-6.228834 z" + id="path3511" + inkscape:connector-curvature="0" /> + <path + style="fill:#68cfde;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 104.91933,48.725896 10.73484,-7.24652 -4.4641,-2.010291 -5.1323,0.914483 z" + id="path3519" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#64b9b1;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 115.70851,41.486879 -0.18864,9.179961 -10.74984,-2.090247 z" + id="path3521" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#62c7e7;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 115.08768,50.588742 111.60376,56.712 105.05821,48.3717 Z" + id="path3523" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1765" + d="m 93.699107,48.581996 10.870723,5.726539 4.17358,-1.06766 10.77366,-7.861861 6.3089,-0.09706 2.71768,-3.882398 -1.65002,-2.71768 -14.85018,-7.764802 -10.38542,4.367702 z" + style="fill:#ffffff;fill-opacity:0.383838;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:none;stroke:#f9fcfd;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 118.20733,34.243466 8.95821,4.927012" + id="path6426" + inkscape:connector-curvature="0" /> + <path + style="fill:#465251;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 145.52985,59.848999 9.36879,3.359327 -1.97827,1.493034 z" + id="path7106" + inkscape:connector-curvature="0" /> + </g> + <path + style="display:inline;fill:#000000;fill-opacity:0.277778;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 147.75325,187.56169 3.60495,-0.95911 2.9435,-0.42995 c 0,0 1.75286,-2.71198 3.70416,-4.79557 l 3.96875,1.58749 -7.20989,6.35001 -4.82865,0.52917 z" + id="path8708" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#000000;fill-opacity:0.19697;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 118.07031,161.64907 6.21771,-1.45521 1.83555,-3.98528 2.05052,1.2237 -3.10885,3.22461 -6.61459,1.9513 -0.21081,-0.2663 z" + id="path8706" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.08117,177.54499 -0.903,2.30052 1.87051,3.93454 -0.129,-6.38558 z" + id="path3769" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 142.39602,221.31945 2.10702,1.76301 2.06402,2.83803 1.29002,1.84903 -4.64406,1.20401 -3.56903,0.90302 -0.43001,-6.10607 z" + id="path320" + inkscape:connector-curvature="0" /> + <path + style="fill:#737373;fill-opacity:0.666667;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 149.09989,227.09217 18.33241,4.39231 6.98832,-3.34857 -10.82219,-5.92066 z" + id="path1828" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#000000;fill-opacity:0.171717;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 143.08889,211.50046 c 0,0 2.66601,4.20949 3.78854,8.13836 1.12254,3.92886 1.6838,6.26747 1.6838,6.26747 l 1.96443,-4.63045 -1.6838,-9.77538 -0.98221,-2.19829 z" + id="path3043" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.242424;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 176.20358,203.31533 c 0,0 -7.48355,8.5593 -9.54152,11.50595 -2.05798,2.94665 -4.16273,4.34982 -4.16273,4.34982 l -6.26746,-0.79513 -0.32741,-3.55468 z" + id="path3049" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <g + style="display:inline" + id="g1567-6" + transform="matrix(1.1868684,0,0,1.217799,61.727509,93.666543)"> + <path + inkscape:connector-curvature="0" + id="path1561-9-4-1" + d="m 69.019794,78.565374 -1.166741,-0.240212 0.720635,-5.010118 z" + style="display:inline;fill:#829645;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1563-1-1-5" + d="m 69.019794,78.565372 1.37328,-0.737405 -1.819386,-4.512923 z" + style="display:inline;fill:#677536;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#5c6b21;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.274108,79.406974 -0.960845,0.514739 0.686319,-8.064235 1.336749,6.559629 z" + id="path1569-1" + inkscape:connector-curvature="0" /> + <path + style="fill:#b2c859;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 70.999582,71.857478 -1.612847,4.735594 1.210741,-0.01085 z" + id="path1571-6" + inkscape:connector-curvature="0" /> + <path + style="fill:#7f9435;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.386735,76.593072 -0.549057,2.951166 1.475585,0.377471 0.28421,-3.339492 z" + id="path1573-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1561-29" + d="m 72.440849,79.647186 -1.166741,-0.240212 0.720635,-5.010118 z" + style="fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1563-8" + d="m 72.440849,79.647184 1.37328,-0.737405 -1.819386,-4.512923 z" + style="fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 68.107463,80.446148 -1.166741,-0.240212 0.720635,-5.010118 z" + id="path1561-9-63" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 68.107463,80.446146 1.37328,-0.737405 -1.819386,-4.512923 z" + id="path1563-1-8" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke:none" + id="g1234" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + inkscape:connector-curvature="0" + id="path1240" + d="m 131.91029,80.779611 -8.09855,-0.274526 -0.54906,2.196216 3.4316,4.529698 1.0981,5.147384 11.73604,4.598329 -5.55918,-14.069515 z" + style="fill:url(#linearGradient5855);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1236" + d="m 121.90736,81.433341 c 0,0 4.07652,5.24124 4.3677,7.95892 0.29118,2.717679 0,3.30004 0,3.30004 l 2.23238,-0.485302 c 0,0 -0.4853,-4.950057 -2.13532,-7.279499 -1.65002,-2.329439 -3.20298,-4.367699 -3.20298,-4.367699 z" + style="fill:#494b6b;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1246" + d="m 167.18703,69.318102 -6.31413,-6.588651 c 0,0 -4.46106,7.069073 -9.60845,8.922133 -5.14738,1.853057 -8.92213,4.461065 -8.92213,4.461065 l 2.74527,6.725915 c 0,0 15.85394,-2.951168 22.09944,-13.520462 z" + style="fill:#aec1bf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#8789ac;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 140.16154,113.27592 -1.17162,-1.07456 c 0,0 2.01666,-13.039574 -3.3971,-23.2944 -2.82128,-5.344102 -4.17358,-5.629479 -4.17358,-5.629479 l -9.80306,-1.84414 c 0,0 -0.0971,-1.06766 1.06766,-2.426502 1.16472,-1.358839 9.706,-6.794198 9.706,-6.794198 l 10.28836,2.426499 9.70394,35.51632 -9.50218,2.65733 z" + id="path1231" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscccccccc" /> + <path + style="display:inline;fill:url(#linearGradient6363);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 141.11783,73.963998 c -5.73818,2.688228 -10.28569,4.184081 -9.45569,9.434697 0.5012,0.31647 1.79215,1.45728 3.93088,5.50848 5.41375,10.25482 3.39665,23.294245 3.39665,23.294245 l 1.17168,1.07429 2.71837,-0.46308 9.50234,-2.65713 -9.70413,-35.516135 z" + id="path1231-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + inkscape:connector-curvature="0" + id="path1248" + d="m 139.66568,70.278947 c 0,0 5.42191,0.274529 10.91246,-3.774747 5.49054,-4.049276 6.58865,-5.35328 6.58865,-5.35328 l 3.84338,1.5099 c 0,0 -2.60801,5.970963 -8.71624,9.059394 -6.10823,3.088431 -8.71624,4.735595 -8.71624,4.735595 z" + style="fill:#90a3a1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#000000;fill-opacity:0.156566;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 135.15327,79.18379 c 0,0 -1.56769,1.194427 -0.97047,3.433978 0.59721,2.239551 2.98606,1.642337 4.4791,4.777709 1.49303,3.135371 4.3298,18.662923 4.3298,18.662923 l 1.34373,-4.92701 -5.59888,-21.126432 z" + id="path2944" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1238" + d="m 137.8252,68.039061 c 0,0 -8.15304,3.397099 -10.09424,5.14418 -1.9412,1.747078 -3.3971,4.853001 -3.3971,4.853001 l 8.15304,-5.04712 6.40596,1.747078 c 0,0 0.9706,0.679421 -0.0971,1.552961 -1.06766,0.87354 -4.853,1.84414 -4.46476,5.04712 0.38824,3.20298 3.59122,1.16472 5.72654,7.570679 2.13532,6.405959 3.00886,17.27668 3.00886,17.27668 l 10.38542,-3.49416 -7.66774,-30.573899 c 0,0 -0.68674,-1.911302 -1.9412,-2.523561 -2.03826,-0.873541 -6.01772,-1.552959 -6.01772,-1.552959 z" + style="fill:url(#linearGradient3470);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="csccccsscccccc" /> + <path + sodipodi:nodetypes="cccscscc" + inkscape:connector-curvature="0" + id="path1244" + d="m 169.81038,69.925855 1.39074,15.554809 c -0.0535,0.717108 0.14744,1.391812 -0.6985,2.240993 0,0 -5.44318,5.617571 -11.7573,8.431473 -6.31413,2.813905 -13.53124,5.69653 -13.53124,5.69653 -0.81155,0.16949 -1.70353,0.18533 -1.78962,-1.80208 -0.2378,-5.489325 0.17938,-10.863388 -2.04298,-16.728593 8.64497,-3.49 14.00286,-2.467819 28.4289,-13.393132 z" + style="fill:url(#linearGradient3456);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1242" + d="m 142.47958,82.014982 c 0,0 10.15751,-2.539375 15.37353,-6.794547 5.21601,-4.25517 7.48086,-7.892653 7.48086,-7.892653 l 3.38329,1.590886 c 0.56936,0.259582 1.06467,0.74251 1.07777,1.01712 0,0 -3.08842,4.666961 -9.26529,8.167182 -6.17686,3.500223 -13.58909,7.27497 -15.51078,7.206339 -1.92169,-0.06863 -3.70611,-1.853059 -3.70611,-1.853059 z" + style="fill:#bfd2d0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cscccsscc" /> + <g + id="g1343" + transform="translate(3.5037626,-1.0049316)"> + <path + style="display:inline;fill:#90a3a1;fill-opacity:1;stroke:none;stroke-width:0.255239" + d="m 145.74055,87.409906 c 1.06627,-0.140005 2.05744,0.758323 2.22234,2.014194 l 0.81359,6.196254 c 0.1649,1.25587 -0.56075,2.379635 -1.62702,2.51964 -1.06628,0.140007 -2.05744,-0.758334 -2.22234,-2.014204 l -0.81359,-6.196254 c -0.1649,-1.25587 0.56075,-2.379624 1.62702,-2.51963 z" + id="rect1273" + inkscape:connector-curvature="0" /> + <path + id="rect1273-0" + style="display:inline;fill:#071a18;fill-opacity:1;stroke:none;stroke-width:0.964683" + d="m 552.87891,330.57617 c -0.67288,-0.1341 -1.34332,-0.30162 -2.04883,-0.20898 -1.0075,0.13229 -1.93395,0.49816 -2.74805,1.04492 -0.8141,0.54676 -1.51456,1.27608 -2.07031,2.13672 -0.55575,0.86064 -0.96677,1.85184 -1.19922,2.92578 -0.23245,1.07394 -0.28667,2.22937 -0.13086,3.41601 l 3.07422,23.41993 c 0.15581,1.18665 0.50795,2.28809 1.00976,3.26562 0.43284,0.84316 1.01966,1.54196 1.64844,2.17383 0.67389,0.13466 1.34414,0.30177 2.05078,0.20898 4.03,-0.52915 6.77364,-4.77488 6.15039,-9.52148 l -3.07617,-23.41992 c -0.29034,-2.21127 -1.30133,-4.07685 -2.66015,-5.44141 z" + transform="scale(0.26458333)" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.181818;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 543.20508,274.31641 c -0.2206,0.003 -0.44284,0.0195 -0.66602,0.0488 -0.6123,0.0804 -1.18671,0.26368 -1.72265,0.52344 l 3.64411,9.52634 6.26993,2.98367 -0.74803,-6.2893 c -0.51771,-3.94291 -3.46839,-6.83339 -6.77734,-6.79297 z" + transform="matrix(0.2986068,0,0,0.2986068,-16.265523,5.4826805)" + id="path2398" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + id="rect1273-0-4" + style="display:inline;fill:#071a18;fill-opacity:1;stroke:none;stroke-width:0.255239" + d="m 146.28254,87.464943 c -0.17803,-0.03548 -0.35542,-0.0798 -0.54208,-0.05529 -0.26657,0.035 -0.51169,0.131805 -0.72709,0.276468 -0.2154,0.144664 -0.40073,0.33763 -0.54777,0.565341 -0.14704,0.227711 -0.25579,0.489966 -0.3173,0.774112 -0.0615,0.284147 -0.0759,0.589855 -0.0346,0.90382 l 0.81339,6.196523 c 0.0412,0.313968 0.1344,0.605391 0.26717,0.864029 0.11452,0.223086 0.26978,0.407977 0.43615,0.575159 0.1783,0.03563 0.35563,0.07984 0.5426,0.05529 1.06627,-0.140005 1.79219,-1.263354 1.62729,-2.519225 l -0.8139,-6.196521 c -0.0768,-0.585065 -0.34431,-1.078667 -0.70383,-1.439706 z" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 538.18164,277.08594 c 0,0 -0.1917,0.41503 -0.43555,1.07617 0.1437,-0.31743 0.30301,-0.62253 0.48438,-0.91016 z m -1.03125,3.02929 c -0.37044,1.4616 -0.95251,5.08311 -0.77539,6.04595 0.71328,4.92851 1.50363,14.23626 1.90699,17.21403 0.41717,3.07972 2.35979,8.03571 7.48754,7.04276 1.44169,-0.0861 1.73609,-1.56044 1.50195,-3.47852 -0.89749,0.86775 -2.01665,1.45284 -3.2832,1.61914 -0.62614,0.0822 -1.2193,-0.0662 -1.8164,-0.18554 -0.55716,-0.55988 -1.07743,-1.17869 -1.46094,-1.92578 -0.44463,-0.86615 -0.75656,-1.84114 -0.89453,-2.89258 l -2.72461,-20.75196 c -0.12215,-0.92853 -0.0904,-1.83277 0.0586,-2.6875 z" + transform="matrix(0.2986068,0,0,0.2986068,-16.265523,5.4826805)" + id="path2436" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccsccccccccc" /> + </g> + <use + x="0" + y="0" + xlink:href="#g1343" + id="use2394" + transform="translate(6.373271,-2.6513064)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#g1343" + id="use2396" + transform="translate(12.487697,-6.0568291)" + width="100%" + height="100%" /> + <path + style="fill:url(#linearGradient6371);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 461.05469,250.09766 c -1.26982,2.64131 -1.13867,4.43554 -1.13867,4.43554 l 32.83007,6.17578 c 0,0 4.52842,0.95673 13.97657,18.85352 18.13006,34.34224 11.375,78.00977 11.375,78.00977 l 3.92382,3.59765 2.6211,-0.44726 L 520.75,357 c 0,0 5.01376,-37.15755 -4,-63.25 -9.49998,-27.5 -23.5,-38.25 -23.5,-38.25 z" + transform="matrix(0.2986068,0,0,0.2986068,-15.717817,5.4279099)" + id="path2922" + inkscape:connector-curvature="0" /> + <path + style="fill:#b1b1b5;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 126.70736,80.921311 c 0.0343,-0.03434 2.24298,0.200773 4.19617,-0.08335 0.43225,-0.06288 0.92701,-1.055792 1.17164,-1.371458 1.11369,-1.437054 1.17115,-1.375885 1.85737,-1.74539 -0.1371,-0.02285 -2.51225,3.096007 -2.00589,3.747858 0.0792,0.580654 2.08508,2.771303 2.08508,2.771303 -0.0979,-0.09792 -0.9912,-1.222017 -2.8399,-2.312488 -1.23197,-0.541615 -2.60324,-0.735913 -4.46447,-1.00648 z" + id="path2946" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cssccccc" /> + <path + style="fill:#90a3a1;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 124.55273,77.840059 8.06238,-4.927012 -0.12291,-1.656699 c -3.23959,1.399657 -5.26714,3.203327 -7.26761,5.016025 z" + id="path2948" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 132.54046,72.913047 5.74818,1.642337 c 0,0 0.89582,0.746517 0.82117,1.343731 0,0 0.82117,-1.507395 0.22396,-2.403215 -0.59722,-0.895821 -6.86796,-2.213158 -6.86796,-2.213158 z" + id="path2950" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 125.89646,77.01889 6.56935,-3.95654 c 0,0 5.22562,0.895821 5.89748,1.642338 0.67187,0.746517 0.82117,1.194427 0.82117,1.194427" + id="path2952" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:url(#linearGradient7169);stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 141.70431,83.66425 c 0,0 1.37245,2.428191 5.5426,1.108522 4.17016,-1.319669 15.78323,-8.287515 15.78323,-8.287515" + id="path7146" + inkscape:connector-curvature="0" /> + </g> + <path + style="fill:#ffffff;fill-opacity:0.449495;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 171.04582,186.43058 c 0,0 1.25787,0.67615 2.04544,1.0385 0.30321,0.13951 -1.07299,0.30525 -1.53836,0.42809 -0.46536,0.12285 -2.028,0.63108 -2.17135,0.80753 -0.6905,0.84995 -1.52432,1.76319 -2.35814,2.4031 -3.69501,3.46113 0.51449,-0.93545 0.51449,-0.93545 0,0 0.70158,-1.59025 1.07576,-3.60145 0.37418,-2.01121 0.37418,-2.24507 0.37418,-2.24507 z" + id="path7177" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cszsccscc" /> + <path + style="fill:#000000;fill-opacity:0.272727;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 151.27553,220.86613 4.69635,4.63021 11.1125,3.0427 -1.71979,-6.54843 -12.30313,-2.51354 z" + id="path3039" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccccccccccccccccssccssccccccc" + inkscape:connector-curvature="0" + id="path1062" + d="m 65.704691,202.46374 3.053029,1.03202 -2.768534,1.58436 14.335662,5.38171 2.795028,-1.80603 -7.124854,-2.54695 0.916229,-0.54578 7.369633,2.57674 7.009083,-4.98806 2.924026,1.03201 -0.68801,0.55902 -2.021017,-0.68802 -1.290019,0.94601 2.236029,0.68802 -0.98901,0.73101 -1.978016,-0.86002 -3.010038,2.10701 1.806017,0.60201 -4.131337,3.03977 c 0,0 10.250229,3.00004 15.453284,3.51605 5.203054,0.516 13.747324,-0.49274 23.637434,-2.98678 9.89011,-2.49403 20.17056,-4.88253 21.7097,-5.55538 0.85282,1.31748 1.64067,3.85136 1.64067,3.85136 0,0 -28.85444,7.50908 -35.3045,7.85309 -6.45008,0.34401 -18.103195,-0.81701 -27.348296,-3.78404 -9.2451,-2.96704 -19.049202,-6.45007 -19.049202,-6.45007 l -4.214044,2.40802 -2.150023,-1.03201 4.73005,-2.66602 -2.451027,-1.11801 0.387005,-0.94602 z" + style="fill:#cccccc;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + transform="matrix(0.98401216,-0.17810131,0.10320258,0.99466036,0,0)" + ry="0.49600098" + rx="1.7116712" + cy="203.20107" + cx="45.34597" + id="path1066-5" + style="display:inline;fill:#d1d1d1;fill-opacity:0.348485;stroke:none;stroke-width:0.344101" /> + <ellipse + transform="rotate(-7.8030988)" + ry="0.29562819" + rx="1.3330141" + cy="201.18962" + cx="38.693878" + id="path1066" + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.234436" /> + <path + style="fill:#559a9b;fill-opacity:0.540404;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 99.016676,196.11242 12.113994,-2.57247 7.7174,5.65943 -11.50595,4.58367 z" + id="path8251" + inkscape:connector-curvature="0" /> + <g + id="g1190" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 77.284026,95.822486 4.853001,0.897805 0.145589,-3.275774 -4.877265,-0.873541 z" + id="path1169" + inkscape:connector-curvature="0" /> + <path + style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 74.614875,97.448242 2.766211,-1.577226 0.145589,-3.25151 -0.558093,0.09706 z" + id="path1167" + inkscape:connector-curvature="0" /> + <path + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 82.355411,93.808491 -0.291179,5.14418 5.896393,0.655155 -1.383104,-5.071385 z" + id="path1171" + inkscape:connector-curvature="0" /> + <path + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 90.459921,95.288654 3.542689,-2.863267 0.19412,-3.251513 -4.707409,3.445632 z" + id="path1175" + inkscape:connector-curvature="0" /> + <path + style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 88.009155,99.632091 3.858135,-3.518426 -2.305174,-3.542689 -2.936065,2.111055 z" + id="path1173" + inkscape:connector-curvature="0" /> + <path + style="fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 81.96717,86.092219 -8.153041,5.969191 12.666332,2.81474 9.31776,-7.03685 z" + id="path1163" + inkscape:connector-curvature="0" /> + <path + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 73.814129,92.01288 -4.804468,3.712546 5.629479,1.722816 2.329442,-4.731676 z" + id="path1165" + inkscape:connector-curvature="0" /> + <path + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 93.978345,92.328327 2.984595,0.558093 -2.76621,-3.8824 z" + id="path1177" + inkscape:connector-curvature="0" /> + <path + style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 96.890146,92.910685 99.510767,89.97462 95.895281,87.717975 94.19673,88.95549 Z" + id="path1179" + inkscape:connector-curvature="0" /> + </g> + <path + style="fill:#a2d1ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 107.86944,177.8245 -10.476964,3.46114 5.051394,-5.89329 z" + id="path3513" + inkscape:connector-curvature="0" /> + <path + style="fill:#66cbf1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 107.7759,177.8245 -2.80633,11.13178 -3.83532,-4.86431 1.30962,-4.39658 z" + id="path3515" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.191919;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.65127,183.42913 0.4828,-3.49226 1.38448,-1.17038 0.94611,0.0403 0.8423,6.84066 2.11569,0.53718 0.10963,-2.65609 0.39351,-4.11372 0.60804,-0.42094 1.26285,0.28063 0.42095,-0.32741 2.10475,0.32741 6.78196,-2.05798 8.10452,-2.29298 1.57732,2.62039 3.32083,-0.32741 -0.6108,-3.13422 0.51725,-3.41388 c 0,0 2.57247,-0.8419 4.25627,-2.71279 1.6838,-1.87088 0.88867,-2.19829 0.88867,-2.19829 l -1.26285,-0.88867 -10.80437,7.81095 -14.35906,4.06918 -13.04943,-1.02898 -1.56998,2.20279 2.53451,1.69247 -0.53233,4.42911 3.00905,2.53554 z" + id="path6496" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccccccccccccc" /> + <path + style="fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 133.08978,176.84367 2.40208,-1.21623 c 0,0 0.60811,-4.77374 0.5473,-5.41226 -0.0607,-0.63852 -2.79735,1.33786 -2.79735,1.33786 z" + id="path3773" + inkscape:connector-curvature="0" /> + <path + style="fill:#999999;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 104.94261,183.45754 0.344,-6.32106 -3.46153,-0.51601 0.7525,4.14955 z" + id="path3761" + inkscape:connector-curvature="0" /> + <g + style="stroke:none" + id="g1229" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + style="fill:#feeadb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 98.658189,74.980225 -2.779585,-0.446106 -4.117909,3.088428 3.362957,0.686319 z" + id="path1214" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffccaa;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 97.335761,93.481788 0.121373,-8.858797 -2.386311,-1.311928 -0.05012,-7.129783 4.907174,0.446108 0.137263,17.226577 z" + id="path1208" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#c28e6b;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 99.99651,93.785334 3.29433,-3.054114 -0.10295,-16.162785 -3.225696,2.1619 z" + id="path1210" + inkscape:connector-curvature="0" /> + <path + style="fill:#feeadb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.2222,74.499802 -5.113063,-0.549055 -3.157062,2.333482 5.010119,0.446106 z" + id="path1212" + inkscape:connector-curvature="0" /> + <path + style="fill:#efb691;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 91.760695,77.485284 0.07393,2.270191 5.532783,0.963427 -0.116169,-2.20414 z" + id="path1216" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#a16d4a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 97.31462,80.745295 1.309255,-0.857899 -0.102949,-2.161899 -1.269688,0.823581 z" + id="path1218" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#feeadb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 98.486612,77.588233 -3.465906,-0.446108 -0.789266,0.686318 3.122748,0.789266 z" + id="path1220" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.93326,75.395216 -2.295539,1.269079 -2.836764,-0.205293 2.93008,0.466574 0.26128,4.049854 0.205293,-4.08718 z" + id="path8249" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:none;stroke:#c28e6b;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 95.849148,74.555384 -3.993866,2.986068 0.03733,2.202225" + id="path8775" + inkscape:connector-curvature="0" /> + <path + style="fill:#b3744a;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 99.976207,93.741886 0.05278,-6.123258 3.24639,-4.618838 v 7.70686 z" + id="path9102" + inkscape:connector-curvature="0" /> + <path + style="fill:#ddaf91;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 100.05539,87.724201 -2.612945,1.055736 -0.07918,4.724411 2.639335,0.343114 z" + id="path9104" + inkscape:connector-curvature="0" /> + </g> + <g + id="g1271" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + style="fill:#9f8c8c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 164.32258,100.26298 c 0,0 0.67942,-1.552959 1.79561,-2.23238 1.11619,-0.679421 10.53101,-5.04712 10.53101,-5.04712 0,0 2.08679,-0.87354 4.02799,0.19412 1.9412,1.067659 6.7942,3.97946 7.47362,9.51188 0.67942,5.53242 -2.57209,17.51933 -2.57209,17.51933 l -14.85018,6.06625 -1.40737,-1.65002 z" + id="path402" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#4d4d4d;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 151.55978,129.53103 5.45904,3.02867 9.34202,-5.07139 -6.21844,-1.19285 z" + id="path274" + inkscape:connector-curvature="0" /> + <path + style="fill:#666666;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 159.324,118.31614 -0.89781,8.22584 1.23751,0.38824 1.06766,-8.29864 z" + id="path276" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#6c5e59;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 174.65947,112.15283 14.60753,-8.39569 -2.52356,16.20902 -14.60753,6.3089 z" + id="path406" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#000000;fill-opacity:0.308081;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 172.18051,126.10238 0.52256,-3.91921 14.2958,-6.60668 -2.35153,5.52423 z" + id="path7179" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 174.70353,112.04121 -0.58644,3.99436 10.46118,-4.71028 -0.56042,-4.48834 z" + id="path2318" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#263937;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 159.68797,126.97875 14.31635,-5.84787 1.72281,-8.27436 -14.99577,5.79933 z" + id="path278" + inkscape:connector-curvature="0" /> + <path + style="fill:#a6b9b7;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 149.12588,130.40945 7.28631,3.33923 c 0,0 1.26178,0.9706 4.07652,-0.58236 0.54006,-0.29796 1.3417,-0.7253 2.17373,-1.11047 0.36541,-0.48341 0.983,-1.5408 1.47747,-1.75977 1.29092,-0.57168 2.73965,-1.09601 3.90759,-1.57085 0.28438,-0.11561 0.5098,0.81834 0.77732,0.70862 1.48156,-0.60764 2.53461,-1.02347 2.53461,-1.02347 0,0 0.67942,-0.4853 1.26178,-1.69855 0.58236,-1.21325 2.37797,-7.71627 2.37797,-7.71627 l -0.63089,-0.72795 -15.91784,7.08538 -1.11619,5.48389 c 0,0 -0.29118,0.92207 -0.77648,0.92207 -0.4853,0 -4.91221,-2.19361 -4.91221,-2.19361 z" + id="path249" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscssscsccccscc" /> + <path + style="fill:#cccccc;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 170.75281,116.35068 -0.33971,2.49929 3.00886,-1.18899 0.36397,-2.47502 z" + id="path284" + inkscape:connector-curvature="0" /> + <path + id="path253" + style="fill:#8da5a3;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 158.44717,125.36806 -1.11311,5.46891 c 0,0 -0.29088,0.92191 -0.77618,0.92191 -0.4853,0 -4.89494,-2.14201 -4.89494,-2.14201 l -2.43424,0.82668 7.18345,3.30487 c 0,0 0.23358,0.1779 0.71986,0.25942 0.96469,-0.29799 1.215,-0.43891 1.53704,-1.08411 0.58236,-0.72796 1.45568,-6.72146 1.45568,-6.72146 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccccccc" /> + <path + style="display:inline;fill:#000000;fill-opacity:0.237374;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 153.57485,132.54089 0.48411,-1.70407 3.77605,-2.38181 0.25173,-1.4136 -8.94632,3.35004 z" + id="path2300" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#d9ecea;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 158.45045,125.35299 1.35884,0.70369 -0.12132,2.71768 0.80888,-2.89422 14.50233,-6.88458 -0.63089,-0.72795 z" + id="path251" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + inkscape:connector-curvature="0" + id="path1186" + d="m 143.61894,103.59464 16.81994,-6.756317 12.47322,5.197177 3.49628,1.79538 1.93713,4.63021 -1.65365,4.48846 -14.31585,7.09226 -5.24442,-9.59635 z" + style="opacity:1;fill:#a6b9b7;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1184" + d="m 143.2128,106.16641 13.41108,5.14757 c 0,0 0.47247,0.0945 0.66146,0.99219 0.18899,0.89769 1.84264,6.47284 1.84264,6.47284 l 3.26004,1.28087 -2.92932,-8.7459 c 0,0 -0.37797,-1.32292 -1.65364,-1.88988 -1.27567,-0.56697 -14.17411,-5.81138 -14.17411,-5.81138 z" + style="opacity:1;fill:#8c9f9d;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccscccccc" /> + <path + style="display:inline;fill:#000000;fill-opacity:0.257576;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 155.09456,108.28916 0.92376,0.40523 0.0187,2.41433 -0.89736,-0.3695 z" + id="path3051" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1188" + d="m 159.12798,110.60527 17.2804,-6.77439 -3.49628,-1.79539 -14.7495,7.6161 c 0.46293,0.14818 0.64674,0.58907 0.96538,0.95368 z" + style="opacity:1;fill:#bed1cf;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1190" + d="m 178.3455,108.46108 -16.52445,10.03445 0.56697,1.56435 14.30384,-7.11033 z" + style="opacity:1;fill:#738684;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#000000;fill-opacity:0.191919;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 183.78168,99.404765 -4.32137,1.880995 c 0,0 3.47485,6.80807 1.99604,13.8187 -1.47881,7.01064 -2.57422,8.27036 -2.57422,8.27036 l 5.47706,-2.30036 7.06541,-12.70678 z" + id="path2320" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscccc" /> + <path + style="fill:#bfd2d0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 184.51106,114.62786 9.02658,-6.06625 c 0,0 1.89267,-10.069974 -3.83387,-17.398003 l -9.46335,5.92066 z" + id="path394" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#a2b0af;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 179.0757,97.690891 c 0,0 4.853,8.735399 4.12505,16.500199 l 1.21325,0.43677 c 0,0 1.21914,-6.90572 -4.12505,-17.519328 z" + id="path392" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#d8ebe9;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 180.50734,127.68243 9.34202,-6.62434 c 0,0 3.68828,-4.99859 3.63975,-11.1619 l -9.80306,6.7214 z" + id="path400" + inkscape:connector-curvature="0" /> + <path + style="fill:#8c9f9d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 182.98237,115.81685 c 0,0 -1.38311,8.34716 -3.76108,11.0891 l 1.31031,0.84928 c 0,0 3.00886,-4.00373 4.10079,-11.2347 z" + id="path396" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#a2b0af;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 182.9581,115.79258 9.2935,-6.26037 1.21325,0.41251 -8.88099,6.6486 z" + id="path398" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;fill-opacity:0.308081;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 169.41823,97.98207 8.54128,-4.173579 c 0,0 0.72795,-0.388239 1.35884,-0.19412 0.63089,0.19412 1.21325,0.87354 1.21325,0.87354 l -8.58981,4.31917 z" + id="path404" + inkscape:connector-curvature="0" /> + <g + id="g1475" + style="stroke:none" + transform="matrix(0.64606737,0,0,0.64606737,58.927668,34.929881)"> + <path + inkscape:connector-curvature="0" + id="path1465" + d="m 153.59745,103.12625 -0.0243,0.80075 4.63461,2.30517 -0.0243,-0.94633 z" + style="fill:#999999;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1467" + d="m 158.15927,106.18364 3.68828,-0.87354 -0.0728,-0.89781 -3.63975,0.92207 z" + style="fill:#808080;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1469" + d="m 161.82329,105.3101 7.83759,-4.46476 -0.4125,-0.5581 -7.59495,4.14932 z" + style="fill:#666666;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1463" + d="m 162.38138,97.593831 -8.39569,3.785339 -0.33971,1.84414 4.56182,2.13532 3.44563,-0.87354 7.52215,-4.12505 z" + style="fill:#bed1cf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 125.35299,152.42341 c -0.49649,-0.22758 -0.3376,-0.6008 -0.19412,-0.9706 l 24.84736,-10.33689 c 0.37113,0.32353 0.35727,0.64707 0.14559,0.9706 z" + id="path1481" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ffff00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 134.3047,148.79872 -0.0858,-0.978 3.5517,-1.47559 0.0515,1.06379 z" + id="path1483" + inkscape:connector-curvature="0" /> + <path + style="fill:#333333;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 162.5755,132.12293 c 0,0 1.27406,-1.48513 1.68657,-2.60132 l 6.02786,-2.55784 c 0,0 0.11338,1.28702 -1.50259,2.51427 l -0.58799,-0.36449 -4.46106,1.75011 z" + id="path1538" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + id="path1540" + style="fill:#738684;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 642.98134,479.82693 -5.52465,2.65118 -1.79849,5.53361 0.0566,-0.0234 2.22071,1.37695 c 6.1076,-4.63842 6.98556,-10.38474 6.98556,-10.38474 z" + transform="scale(0.26458333)" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:none;stroke:#e5f2f1;stroke-width:0.186218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 187.00372,111.12949 c 0,0 -0.0431,-7.99395 -2.95942,-11.761699 l 5.6915,-3.464033 c 0,0 3.09004,4.643552 2.21062,12.030852 z" + id="path2347" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:none;stroke:#e5f2f1;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 187.24713,97.463351 -2.05868,-3.431135" + id="path3725" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#e5f2f1;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 190.04483,109.182 -0.21115,1.79475" + id="path3731" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#ffffff;fill-opacity:0.717172;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 160.83656,115.70364 -1.08213,-4.72441 4.53965,-2.42819 -4.64523,1.79475 -1.53081,-0.73901 c 0,0 0.79179,0.36951 1.37246,2.26983 0.58064,1.90032 1.34606,3.82703 1.34606,3.82703 z" + id="path2334" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#e5f2f1;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.378788" + d="m 176.78088,105.06464 -12.66881,5.1731 1.42524,3.53671 3.27278,-1.63639 -1.26688,-3.21999" + id="path2699" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#bfcfcd;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 169.86582,111.29347 -0.73901,-1.74196 2.58655,-1.21409 0.63344,1.63639 z" + id="path2701" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#ffff00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 140.19998,146.34313 -0.0858,-0.978 3.5517,-1.47559 0.0515,1.06379 z" + id="path1483-8" + inkscape:connector-curvature="0" /> + </g> + <path + style="fill:#000000;fill-opacity:0.19697;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 169.26317,213.67561 -3.9026,3.43958 v 0.39688 l -2.57969,5.62239 -11.17865,-4.43177 15.08125,-6.28385 z" + id="path7181" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1389" + d="m 157.7946,214.03011 0.0458,2.17402 1.35304,0.5017 c 0,0 -0.19763,-1.5355 -1.39868,-2.67572 z" + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1391" + d="m 157.78699,214.04531 1.36881,-0.59998 c 0,0 0.98765,0.72161 1.24609,2.53074 l -1.22383,0.72976 c 0,0 -0.21284,-1.36827 -1.39107,-2.66052 z" + style="fill:#afcdd3;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 163.60691,211.73838 0.0456,2.17403 1.35306,0.50169 c 0,0 -0.19764,-1.53548 -1.39868,-2.67572 z" + id="path1389-4" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#9abcc7;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 163.59931,211.75358 1.36881,-0.59997 c 0,0 0.98765,0.7216 1.2461,2.53075 l -1.22383,0.72974 c 0,0 -0.21285,-1.36827 -1.39108,-2.66052 z" + id="path1391-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="csccccccc" + inkscape:connector-curvature="0" + id="path337" + d="m 141.19202,222.43746 c 0,0 1.634,1.07502 0.12899,2.53702 -1.50502,1.46202 -1.91352,2.81653 -0.0644,3.69805 1.84902,0.88151 1.05351,0.602 1.05351,0.602 l 2.66604,-0.731 c 0,0 -3.03153,-0.70951 -2.81655,-1.80602 0.21501,-1.09652 2.75204,-1.89202 1.67703,-4.19255 -1.54802,-2.12852 -1.63401,-2.25754 -1.63401,-2.25754 z" + style="fill:#c8b7b7;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:url(#linearGradient7092);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 141.67752,229.10939 -8.56781,2.35092 -5.44153,-1.39009 -6.40685,2.10685 c -0.37698,1.59167 -1.24309,2.53747 -2.03295,3.09231 l -25.40155,6.9696 10.52668,3.89975 22.92761,-5.70584 11.69644,1.80609 z" + id="path1199-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <g + id="g1414" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + style="fill:#000000;fill-opacity:0.116162;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 115.37057,116.73359 -3.73259,1.34374 9.85403,3.35932 9.70472,2.98607 5.67353,-1.94094 1.71698,-0.14931 4.40446,-0.97047 v -0.89582 l -0.37326,-0.97047 -11.34706,-3.73259 -1.19442,-2.12757 z" + id="path7094" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccc" /> + <path + style="fill:url(#linearGradient8183);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 123.50885,118.99556 -8.15304,-2.13532 v -9.706 l 7.95892,1.35884 z" + id="path1411" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1416" + d="m 123.50885,118.9713 6.74567,-1.9412 -0.21838,-6.867 -6.74567,1.86841 z" + style="fill:url(#linearGradient8207);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1422" + d="m 133.33618,107.03292 c 0,0 -1.16472,1.98973 -2.20812,2.9118 l -7.82993,2.34562 3.19532,-3.58314 z" + style="fill:#897c8a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1430" + d="m 123.48459,102.59242 5.53242,-1.55296 c 0,0 2.11105,0.65516 4.34343,4.02799 l -6.13904,2.014 z" + style="fill:#e7dae8;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1418" + d="m 123.02355,109.07118 0.21752,3.23406 c 0,0 3.2281,-0.8561 4.73253,-3.01568 l -0.0728,-2.49929 c 0,0 -0.43677,-2.25665 -4.34344,-4.12505 z" + style="fill:#a89ba9;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + id="path1420" + d="m 127.99575,109.12694 5.31616,-1.9727 v -2.15958 l -5.43536,1.91693 z" + style="fill:#c7bac8;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1436" + d="m 125.35299,105.21304 -8.85672,-0.84928 -5.92067,2.30518 7.88613,1.84414 z" + style="fill:#eee1ef;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path356" + d="m 115.37265,113.36472 7.70562,-2.86302 0.90469,-1.71987 1.31041,-0.368 0.005,-3.23525 -6.45367,3.12305 -3.57794,-0.0865 z" + style="display:inline;fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccccc" /> + <path + inkscape:connector-curvature="0" + id="path1432" + d="m 110.6484,106.71747 0.14559,2.08679 7.93465,1.26178 -0.0728,-2.49929 z" + style="fill:url(#linearGradient8191);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1434" + d="m 118.68267,110.07072 6.64606,-2.52824 -0.007,-2.32731 -6.73886,2.30304 z" + style="fill:#d2c5d3;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1442" + d="m 113.00211,103.32037 8.1773,-2.839 7.95892,0.72794 -8.41996,2.88754 z" + style="fill:#e2dbe6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#978a98;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 113.48961,105.53972 6.49277,0.71262 3.77425,-1.21409 -0.44869,-0.0528 0.0264,-0.58065 -9.29047,0.29032 0.15836,0.50148 z" + id="path8052" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1438" + d="m 120.37867,105.62555 -7.32803,-0.4853 -0.0728,-1.84415 7.78906,0.70369 z" + style="fill:url(#linearGradient8199);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1440" + d="m 120.3544,105.69834 3.97946,-1.4559 -0.0243,-1.84414 -3.54269,1.5287 z" + style="fill:#c9bcca;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:none;stroke:#897c8a;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 127.5388,104.50938 3.80724,-1.1571" + id="path8054" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#897c8a;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 128.09868,105.10659 3.80724,-1.1571" + id="path8054-5" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#897c8a;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 126.90426,103.91217 3.80724,-1.1571" + id="path8054-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 114.99731,107.17818 3.56462,0.37326 2.44484,-0.8585 -2.20222,1.02646 -0.16797,1.26908 -0.27994,-1.1571 z" + id="path8215" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#ffffff;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 118.74855,103.86551 1.92229,0.0373 1.4557,-0.52257 -1.23175,0.70919 -0.41058,1.04513 0.0933,-1.02646 z" + id="path8215-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="display:inline;fill:#ffffff;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 127.03951,105.25328 0.98913,1.23175 2.70613,-0.57855 -2.63147,1.06379 0.0374,2.05292 -0.3546,0.55989 c 0,0 0.13064,-1.77298 0.0746,-2.35153 -0.056,-0.57855 -0.82117,-1.97827 -0.82117,-1.97827 z" + id="path8232" + inkscape:connector-curvature="0" /> + </g> + <path + style="fill:#6aafb0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 91.148958,188.85155 7.077604,5.29166 1.719792,4.89479 -14.2875,-4.56406 z" + id="path3652" + inkscape:connector-curvature="0" /> + <g + id="g307" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + style="fill:#000000;fill-opacity:0.136364;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 57.104916,87.880712 c 0,0 0.858494,0.914484 1.996933,0.690528 1.138438,-0.223955 0.858495,-0.354595 0.858495,-0.354595 l 5.4869,1.922281 c 0,0 -0.186629,0.354596 0.242618,0.615877 0.429247,0.261281 2.146236,0.746517 2.146236,0.746517 l 2.276877,0.615877 2.482169,-0.447911 1.84763,-1.922281 -0.653203,-1.810304 -2.500832,-0.709191 -10.563215,-0.541225 c -2.657951,-0.921023 -3.089926,0.181569 -3.620608,1.194427 z" + id="path3221" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccscccccccc" /> + <use + x="0" + y="0" + xlink:href="#g349" + id="use3181" + transform="translate(4.1041679,-2.2962228)" + width="100%" + height="100%" /> + <path + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.789375,87.935349 -0.05279,-4.526463 c -0.578267,0.03846 -1.15799,-0.323438 -1.702373,-0.488277 l -0.03959,4.790396 c 0,0 0.897373,0.329916 1.227292,0.369505 0.329916,0.03959 0.567458,-0.145161 0.567458,-0.145161 z" + id="path3219" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#902828;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 67.652598,85.392613 3.786471,-1.547629 0.07223,3.910776 -3.57473,2.063505 z" + id="path358" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <use + x="0" + y="0" + xlink:href="#g349" + id="use3179" + transform="matrix(0.96877967,0,0,0.97642081,-1.1138047,-1.4842588)" + width="100%" + height="100%" /> + <path + style="fill:#ccbbcc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 59.661741,83.905093 1.99049,-1.631852 5.215263,1.231782 -0.03691,2.320235 z" + id="path338" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#a694a9;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 66.867494,85.760109 4.57699,-1.920999 -1.804069,-1.236123 -2.823033,0.868627 z" + id="path340" + inkscape:connector-curvature="0" /> + <path + style="fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 61.639034,82.302309 2.555764,-0.835218 5.428914,1.135896 -2.856445,0.918739 z" + id="path342" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient3215);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 59.542349,87.705116 6.461744,2.182345 0.118115,-4.299479 -6.449219,-1.771761 z" + id="path336" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <rect + style="fill:#916f6f;stroke:none;stroke-width:0.280302" + id="rect420" + width="6.6930871" + height="0.90203464" + x="61.583302" + y="69.627365" + ry="0" + transform="matrix(0.96835519,0.2495761,0,1,0,0)" /> + <path + style="fill:#000000;fill-opacity:0.277778;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 65.323,85.401586 -0.05279,4.262526 0.963356,0.290329 -0.0264,-4.381299 z" + id="path3217" + inkscape:connector-curvature="0" /> + <g + id="g349"> + <path + style="fill:#a02c2c;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 65.986373,85.481678 0.177179,-0.200801 1.830821,-0.03544 0.283483,0.183083 -0.667364,0.655551 -1.559153,-0.395693 z" + id="path285" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient5722);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 65.968658,85.475772 -8.37e-4,4.518344 c 0,0 1.230058,0.942566 2.280261,-0.03411 l 0.02387,-4.561015 c -0.205945,0.171621 -0.860506,0.724962 -2.303292,0.07678 z" + id="path270" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path285-8" + d="m 65.950938,84.341849 0.177179,-0.200801 1.830821,-0.03544 0.348448,0.236236 -0.732329,0.602398 -1.559153,-0.395693 z" + style="display:inline;fill:#a02c2c;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#linearGradient5724);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 65.952642,85.33118 c 0.768937,0.308948 1.656578,0.485982 2.343081,-0.122312 l 0.0083,-0.868627 c -0.929298,0.475515 -1.848169,0.325606 -2.369559,-0.006 0.0083,0.314819 0.0029,0.682416 0.01818,0.996948 z" + id="path272" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + id="path275" + style="fill:url(#linearGradient5726);fill-opacity:1;stroke:none;stroke-width:0.272945" + d="m 67.0717,83.27965 c -0.588198,0.009 -1.079844,0.382118 -1.155439,0.876948 0.735373,0.323622 1.506806,0.409254 2.353221,0 -0.0767,-0.501446 -0.580164,-0.876771 -1.176335,-0.876948 -0.0071,-5.5e-5 -0.01429,-5.5e-5 -0.02144,0 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + </g> + <rect + style="fill:#695050;fill-opacity:1;stroke:none;stroke-width:0.200046" + id="rect438" + width="3.4854486" + height="0.88533032" + x="74.599556" + y="116.7277" + transform="matrix(0.91538568,-0.40257801,0,1,0,0)" /> + <use + x="0" + y="0" + xlink:href="#g349" + id="use3177" + transform="matrix(0.93755935,0,0,0.93712216,-4.3477467,3.5186089)" + width="100%" + height="100%" /> + </g> + <path + style="fill:#e3dbdb;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.737196,245.92806 0.87913,3.47469 1.967591,-0.62796 -0.376764,-2.763 z" + id="path450" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 73.616326,249.36089 3.558417,2.38623 0.502357,-0.20933 -1.967581,-2.72115 z" + id="path452" + inkscape:connector-curvature="0" /> + <path + style="fill:#916f6f;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 77.216608,251.03543 v 2.00945 l 1.925726,1.46523 0.125593,-3.09792 z" + id="path456" + inkscape:connector-curvature="0" /> + <path + style="fill:#916f6f;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 82.282103,255.43112 2.302501,-1.29777 0.418639,-5.27483 -0.837265,-3.64215 -2.721141,0.20934 -1.423373,3.39093 z" + id="path460" + inkscape:connector-curvature="0" /> + <path + style="fill:#c8b7b7;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 77.6771,245.42571 -0.209309,2.38621 0.586083,0.92101 -0.962858,2.3025 1.423361,1.04659 0.544231,2.763 1.381496,0.83728 0.209319,-6.99124 0.879141,-3.13977 z" + id="path454" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 80.440104,255.84975 1.925727,-0.29305 -0.753539,-4.77245 -1.004734,-2.26064 z" + id="path458" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 74.997833,241.15561 c 0,0 0.125592,3.09791 -1.967591,4.77245 l 2.176911,0.16746 c 0,0 1.800136,-1.3815 1.63268,-4.60501 z" + id="path440" + inkscape:connector-curvature="0" /> + <path + style="fill:#916f6f;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 74.955969,241.15561 1.883864,-1.84201 2.72114,0.0837 -1.800135,1.92573 -1.004734,0.25118 z" + id="path442" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path357" + d="m 60.716638,210.18233 -0.02149,0.60201 4.192545,-2.23603 0.0645,-0.83851 z" + style="fill:#999999;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path359" + d="m 64.844683,207.73131 14.985661,5.11705 0.107528,0.7955 -15.050155,-5.11705 z" + style="fill:#666666;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path361" + d="m 79.830344,212.84836 -0.02148,0.77401 c 0,0 9.309594,3.09603 13.65264,3.84854 4.343046,0.7525 12.470136,1.41901 12.470136,1.41901 l 0.0215,-0.94601 c 0,0 -11.932632,-0.88151 -16.447677,-2.25752 -4.515046,-1.37601 -9.6751,-2.83803 -9.675099,-2.83803 z" + style="fill:#999999;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path363" + d="m 105.93162,217.92241 c 0,0 8.25608,0 16.70568,-2.15003 8.44961,-2.15001 23.97277,-5.65455 23.97277,-5.65455 l 0.19349,0.989 c 0,0 -24.94026,7.18108 -32.63736,7.52509 -7.69708,0.34399 -8.27758,0.258 -8.27758,0.258 z" + style="fill:#b3b3b3;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 145.78542,210.28279 -6.74687,-2.41432 5.98619,-1.62057 c 0.65989,1.28669 1.25664,2.59442 1.65365,3.96875 l 0.16536,0.95911 -0.85989,0.16537 z" + id="path2954" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#000000;fill-opacity:0;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 135.00535,231.93919 -0.15203,-3.98317 4.05921,-1.18584 0.24323,3.95277 z" + id="path335" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#9b969c;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 139.16023,230.75804 -0.8385,-0.41925 -3.34328,0.95677 0.043,0.63424 z" + id="path344" + inkscape:connector-curvature="0" /> + <path + style="fill:#8e818f;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.32173,230.32805 -0.215,-3.3218 0.81701,-0.22575 0.215,4.00979 z" + id="path346" + inkscape:connector-curvature="0" /> + <path + style="fill:#594c5a;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.11747,227.21051 0.87076,0.55901 -0.043,-0.99977 -0.84924,0.26876 z" + id="path348" + inkscape:connector-curvature="0" /> + <path + style="fill:#594c5a;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.19273,227.25352 -3.3433,0.99975 v -0.30101 l 3.24654,-0.93526 z" + id="path350" + inkscape:connector-curvature="0" /> + <path + style="fill:#d5c8d6;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 135.28107,231.87359 -0.13977,-4.04205 3.79318,-1.02954 0.22575,3.97754 0.33326,-0.1075 -0.301,-4.35381 -4.67631,1.37603 0.13976,4.37529 z" + id="path352" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#eee1ef;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 134.88745,231.97116 -0.12901,-4.32155 4.43405,-1.33137 -0.44076,-0.0644 -4.21905,1.28836 0.12901,4.49354 z" + id="path354" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="opacity:0.514;fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.53, 0.53;stroke-dashoffset:0;stroke-opacity:1" + d="m 64.570236,206.00267 16.532701,5.91874 c 0,0 14.439845,5.72466 28.444693,4.52085 11.60446,-1.74214 35.67662,-8.62877 35.67662,-8.62877" + id="path6373" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + id="rect375" + style="fill:#625563;fill-opacity:1;stroke:none;stroke-width:0.234436" + d="m 129.11421,211.50262 c 2.05713,-0.77688 3.5173,-0.76613 5.53389,0.038 0.26202,0.16474 0.30226,0.42608 0.29266,0.60812 l 0.003,4.54816 c 0.0101,0.25716 0.0169,0.51307 -0.22531,0.6582 -1.73287,0.82556 -3.21842,1.07467 -5.63858,0.043 -0.2581,-0.20254 -0.27226,-0.47825 -0.24727,-0.76571 v -4.59387 c 0.005,-0.17057 0.0709,-0.40078 0.28126,-0.5359 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <path + style="fill:#000000;fill-opacity:0.0909091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 119.85368,211.85125 3.1805,-0.11693 4.41998,-0.91205 1.68379,-1.77735 -3.83531,-1.73057 z" + id="path2353" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <ellipse + style="fill:#ccc1ce;fill-opacity:1;stroke:none;stroke-width:0.234436" + id="path378" + cx="131.89313" + cy="211.88623" + rx="2.9670315" + ry="0.92988485" /> + <ellipse + style="fill:#bbaebc;fill-opacity:1;stroke:none;stroke-width:0.212565" + id="path373" + cx="131.87354" + cy="211.74597" + rx="2.5912476" + ry="0.75016177" /> + <g + style="display:inline;stroke:none" + transform="matrix(1.0356084,0.70561826,-0.76565555,1.1411928,45.986263,-27.726359)" + id="g408-8"> + <path + sodipodi:nodetypes="cccc" + style="fill:url(#linearGradient3640);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.11257,121.93025 -9.05653,5.8136 11.47673,-4.37721 z" + id="path405-8" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path410-8" + d="m 103.53277,123.34237 0.41007,2.32243 -11.8868,2.07905 z" + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path412-5" + d="m 92.05604,127.74385 12.79395,-3.28255 3.11542,2.20455 z" + style="fill:url(#linearGradient3648);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + id="g475" + transform="matrix(0.81424353,0.34944031,-0.34944031,0.81424353,47.006968,59.765069)"> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path467" + d="m 23.68264,113.46314 0.9706,-6.50302 -21.6443799,-5.92066 z" + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path465" + d="M 3.0088601,101.03946 23.68264,113.46314 21.54732,108.99838 Z" + style="fill:#5ab8ba;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path463" + d="M 21.54732,108.99838 3.0088601,101.03946 14.75312,115.11316 Z" + style="fill:url(#linearGradient3624);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path469" + d="m 24.65324,106.96012 4.853,-3.20298 -26.4973799,-2.71768 z" + style="fill:url(#linearGradient3632);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + id="g1350" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + style="fill:#c8b7b7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.26016,73.62001 -1.18898,11.889851 4.3677,1.11619 3.20297,-2.960331 -2.86326,-11.06484 z" + id="path1340" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.49229,78.037838 -2.92966,1.02934 -0.76541,1.39885 3.5631,0.554259 z" + id="path3531" + inkscape:connector-curvature="0" /> + <path + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.85001,80.439634 -0.87099,3.93261 4.3813,1.372456 0.8182,-4.671625 z" + id="path3533" + inkscape:connector-curvature="0" /> + <path + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 113.31108,86.613311 -4.87286,-0.686316 1.64716,-12.285091 2.74527,0.34316 z" + id="path1326" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.15401,73.573274 1.54422,-1.166742 2.71096,-0.24021 -1.57854,2.024638 z" + id="path1328" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 114.34055,72.26927 3.63749,10.77519 -4.46107,3.568851 -0.61768,-12.559615 z" + id="path1330" + inkscape:connector-curvature="0" /> + <path + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 114.54645,85.446573 -0.34316,-5.284648 1.09811,0.06863 1.44127,5.627806 z" + id="path1332" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 114.20329,80.058976 1.26969,-1.132425 0.92653,0.274529 -1.02948,1.132425 z" + id="path1334" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 116.26224,79.132448 3.50022,3.774749 -3.01979,2.985482 -1.37264,-5.662123 z" + id="path1336" + inkscape:connector-curvature="0" /> + <path + style="fill:#c8b7b7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.56097,73.899275 1.1839,-0.03432 0.87505,-0.652003 -0.61769,0.875057 -0.0858,1.57853 -0.29168,-1.527058 z" + id="path1338" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.07,80.888321 -1.84754,0.739013 -1.24049,3.008842 2.37541,0.950161 z" + id="path3539" + inkscape:connector-curvature="0" /> + <path + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.2274,81.386015 -2.09025,-0.149304 -1.23175,0.858495 4.10584,1.045124 z" + id="path3525" + inkscape:connector-curvature="0" /> + <path + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 107.98005,82.05788 -1.04512,4.068518 3.43397,0.783842 1.56769,-3.76991 z" + id="path3527" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.97392,83.028352 -1.60502,3.881888 2.72479,-0.485236 z" + id="path3529" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.323163,126.41405)" + style="fill:#808080" + id="g1358"> + <path + style="fill:#999999;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.93316,89.770375 3.12275,-2.402113 4.1179,0.514739 -3.26001,4.392433 -3.91201,-1.441267 z" + id="path1352" + inkscape:connector-curvature="0" /> + <path + style="fill:#666666;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.89884,89.839005 -0.68631,2.127586 -0.34316,2.745272 5.31896,1.406951 -0.27453,-4.08359 z" + id="path1354" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1360" + d="m 113.0749,87.912095 -3.20298,4.149315 0.16986,4.003725 4.97432,-3.421364 z" + style="fill:#4d4d4d;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1362" + d="m 105.69834,91.673171 3.56696,1.043395 -1.55296,1.11619 -3.00886,-0.970601 z" + style="fill:#a7a7a7;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1364" + d="m 104.70348,92.740831 -0.67942,2.547823 3.63975,1.140458 0.12132,-2.620621 z" + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1366" + d="m 109.14397,92.740831 0.70369,3.227244 -2.15959,0.533832 0.0728,-2.741946 z" + style="fill:#4f5257;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1368" + d="m 108.56161,91.272798 1.31031,0.485301 0.38824,-0.206253 -0.35184,0.727951 z" + style="fill:#cccccc;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1370" + d="m 111.49234,94.986389 0.30884,-3.225693 1.47558,3.311483 z" + style="fill:#8c8c8c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1372" + d="m 111.73255,91.81217 1.28684,-1.115267 2.0418,3.088431 -1.85306,1.321163 z" + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1374" + d="m 109.05591,87.351104 1.87021,3.345799 2.1619,-2.813902 z" + style="fill:#b3b3b3;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + style="fill:#000000;fill-opacity:0.131313;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.71373,209.64328 -0.3072,0.43025 6.10294,0.79551 0.58465,-2.22168 2.78294,-0.5145 0.46773,-0.86528 1.70718,-1.5201 0.58465,-1.66041 -1.6838,-0.3274 -2.75955,2.26845 -0.39757,1.14592 -1.80396,-0.44147 0.0543,0.48803 -2.87758,2.72162 z" + id="path2351" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,16.691831,52.48683)" + style="display:inline" + id="g918"> + <g + id="g898"> + <path + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + id="path862" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient3741);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + id="path854" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + id="path856" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + id="path858" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 40.618736,122.5217 0.651538,11.35795 2.291482,-1.48828 -0.472472,-11.22117 z" + id="path860" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + id="path864" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + </g> + <g + transform="translate(-0.52916663)" + id="g942"> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="rect939" + d="m 33.687128,119.77301 4.340191,1.13393 0.188988,6.80697 -2.414953,2.82419 -2.066979,-3.01318 z" + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.665;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.196078" /> + </g> + <g + transform="matrix(1.3335438,0.16745236,-0.15215044,1.4676594,27.654576,-60.680626)" + id="g930"> + <path + style="fill:#e9ddaf;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 16.737751,123.67571 -0.63476,3.94223 3.20723,-2.53907 -0.26727,-2.40542 -1.1693,0.3675 z" + id="path902" + inkscape:connector-curvature="0" /> + <path + style="fill:#ff7f2a;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 18.892932,119.23669 -2.155178,4.43902 c 0,0 1.102487,-0.26727 1.837478,0.23386 0.734991,0.50113 0.734991,1.1693 0.734991,1.1693 l 2.148217,-4.63884 c 0.06773,-0.12888 0.06087,-0.26318 -0.02677,-0.48521 0,0 -0.217157,-0.55542 -0.818513,-0.8561 -0.601356,-0.30068 -1.348876,-0.0626 -1.348876,-0.0626 -0.139702,0.0413 -0.252563,0.12023 -0.371354,0.2006 z" + id="path900" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscccscc" /> + <path + style="display:inline;fill:#241c1c;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 64.778217,475.74209 C 63.542759,475.0883 62.3522,475.45076 61.957031,475.5332 l -1.095703,6.80274 5.667969,-4.48633 c -0.279076,-0.70016 -0.515622,-1.45374 -1.75108,-2.10752 z" + transform="scale(0.26458333)" + id="path902-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="zcccz" /> + <path + style="fill:#ffcc00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 19.111421,119.30394 -2.01981,4.15774 c 0.260428,-0.10314 0.533631,-0.0728 0.84973,-0.0201 l 1.961468,-4.23219 c -0.223936,0.004 -0.370939,-0.0442 -0.791388,0.0945 z" + id="path924" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <path + sodipodi:nodetypes="czccccccc" + inkscape:connector-curvature="0" + id="path932" + d="m 23.245535,124.64287 c 0.590394,-0.17256 1.258026,-0.84884 1.872362,-0.10779 0.614336,0.74105 -0.394222,2.18542 -0.856355,2.85937 -0.393865,0.575 -0.04955,1.61608 0.684341,1.24702 0.727154,-0.17509 1.351002,-1.05278 2.196284,-0.48506 0.630935,0.50829 0.362443,1.3971 0.335168,2.08883 -0.206015,2.57427 4.657239,2.50414 6.261991,1.78854 0.941661,-0.3948 1.841928,-0.94823 2.503961,-1.73452 l 0.04243,-0.0822" + style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(1.1451658,0,0,1.2977641,23.192881,91.676301)" + id="g1450-5" + style="display:inline"> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.855154,82.697299 -2.887701,0.947689 -0.188738,0.480422 2.65948,0.223054 z" + id="path1498-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.778715,84.12541 1.338321,2.264849 1.338318,0.223052 -0.03431,-2.350638 z" + id="path1500-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.967453,83.644988 2.007478,-1.715794 h 1.818743 l -0.829182,0.892212 z" + id="path1502-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.06863,-1.046635 z" + id="path1466-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.010669,86.165017 -1.108802,-0.279048 -0.890729,-1.710532 2.569761,-0.09721 z" + id="path1460-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.59303,84.041828 -0.853846,2.011136 1.897241,-1.428775 z" + id="path1462-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.901867,85.885969 0.344455,0.887415 1.062083,0.04152 -0.576781,-0.771208 z" + id="path1464-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.600027,84.63632 0.01304,1.700295 -1.304662,0.478285 -0.588915,-0.746943 z" + id="path1458-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.269258,85.446573 1.531433,-1.424658 -1.233448,-2.327727 -0.726935,1.453219 z" + id="path1468-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.180827,83.593514 0.907012,-1.234222 2.001943,0.28939 -0.246632,0.493044 z" + id="path1470-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.063679,82.355291 0.855178,-0.948785 1.648386,0.287682 -0.469564,0.955638 z" + id="path1472-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.088901,82.605457 -0.701729,1.394555 0.760206,0.17103 z" + id="path1525" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.387172,83.9737 0.146193,1.197212 0.540917,0.06578 0.131574,-1.118276 z" + id="path1527" + inkscape:connector-curvature="0" /> + <path + style="fill:#445016;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.088901,82.605457 0.994116,1.868178 -1.008735,0.763057 z" + id="path1529" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + </g> + <g + id="g1450" + transform="matrix(1.0399189,0,0,1.1555747,18.928774,102.87068)"> + <path + inkscape:connector-curvature="0" + id="path1498" + d="m 30.48967,82.684143 -2.522217,0.960845 -0.188738,0.480422 2.65948,0.223054 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1500" + d="m 27.795873,84.056777 1.321163,2.333482 1.338318,0.223052 -0.03431,-2.350638 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1502" + d="m 28.053241,83.576355 1.92169,-1.647161 h 1.818743 l -1.355479,0.892212 z" + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1466" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.08579,-1.132425 z" + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccc" + style="fill:#c87137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.899264,88.775213 -1.132425,-2.264849 -1.647164,-0.102946 0.06863,-0.549056 1.578533,0.274527 0.446106,-1.029476 0.03432,-0.995161 0.480423,0.205896 -0.102949,1.029475 -0.24021,0.892215 1.891895,1.974382 -0.690841,0.66794 z" + id="path1447" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path1452" + d="m 35.548226,88.870564 -1.650021,-2.511428 -1.734947,-0.169854 -0.254784,0.157721 1.856275,0.157723 1.006996,2.377969 z" + style="fill:#deaa87;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1454" + d="m 33.752615,86.104353 0.303313,-0.0364 0.412504,-0.958466 0.01214,-1.188984 h -0.254783 v 1.213249 z" + style="fill:#deaa87;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1456" + d="m 35.790876,88.712841 -0.885673,-1.929067 1.334575,1.431634 z" + style="fill:#784421;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460" + d="m 31.010669,86.165017 -1.722815,-0.279048 0.922072,-1.868406 1.370973,0.06066 z" + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462" + d="m 31.59303,84.041828 -0.897805,2.074659 1.9412,-1.492298 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1464" + d="m 29.275722,85.825305 0.9706,1.237515 1.298178,-0.0364 -0.812876,-0.982733 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458" + d="m 32.600027,84.63632 -0.206251,1.989731 -0.909939,0.412504 -0.764347,-0.970598 z" + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1468" + d="m 33.2521,85.463731 1.870217,-1.612846 -1.321164,-2.590851 -0.960845,1.887373 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1470" + d="m 30.180827,83.593514 0.102947,-1.286847 2.796746,0.326001 -0.274526,0.549055 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1472" + d="m 30.318091,82.28951 1.630005,-1.304003 1.938848,0.308843 -0.789265,1.355476 z" + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.822901,84.321288 -1.337203,-0.279048 0.715687,-1.868406 0.892534,-0.162393 z" + id="path1460-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.034703,81.992204 -0.456642,2.280554 1.506708,-1.492298 z" + id="path1462-3" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.476281,83.981576 0.753354,1.237515 1.007611,-0.0364 -0.630933,-0.982733 z" + id="path1464-9" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#445500;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 36.056518,82.792591 -0.160087,1.989731 -0.70627,0.412504 -0.593266,-0.970598 z" + id="path1458-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="g1559" + transform="matrix(0.88605929,0,0,0.88605929,22.142668,128.30696)"> + <path + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + id="path1460-6-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + id="path1462-3-3" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + id="path1464-9-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + id="path1458-2-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="g1567" + transform="matrix(1.1868684,0,0,1.217799,4.373876,100.13875)"> + <path + inkscape:connector-curvature="0" + id="path1561-9-4" + d="m 69.019794,78.565374 -1.166741,-0.240212 0.720635,-5.010118 z" + style="display:inline;fill:#829645;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1563-1-1" + d="m 69.019794,78.565372 1.37328,-0.737405 -1.819386,-4.512923 z" + style="display:inline;fill:#677536;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#5c6b21;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.274108,79.406974 -0.960845,0.514739 0.686319,-8.064235 1.336749,6.559629 z" + id="path1569" + inkscape:connector-curvature="0" /> + <path + style="fill:#b2c859;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 70.999582,71.857478 -1.612847,4.735594 1.210741,-0.01085 z" + id="path1571" + inkscape:connector-curvature="0" /> + <path + style="fill:#7f9435;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.386735,76.593072 -0.549057,2.951166 1.475585,0.377471 0.28421,-3.339492 z" + id="path1573" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1561" + d="m 72.440849,79.647186 -1.166741,-0.240212 0.720635,-5.010118 z" + style="fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1563" + d="m 72.440849,79.647184 1.37328,-0.737405 -1.819386,-4.512923 z" + style="fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 68.107463,80.446148 -1.166741,-0.240212 0.720635,-5.010118 z" + id="path1561-9" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 68.107463,80.446146 1.37328,-0.737405 -1.819386,-4.512923 z" + id="path1563-1" + inkscape:connector-curvature="0" /> + </g> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path1807" + d="m 132.42447,257.39249 -15.41324,5.26152 -3.11382,0.3779 -11.01852,-3.1021 c -0.6682,-0.77069 -1.96963,-1.6459 -2.48582,-2.56857 l 11.88811,3.77865 3.01024,-0.37769 17.09873,-5.84615 z" + style="fill:#ffd5d5;fill-opacity:0.391129;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.47916,224.82399 c 0,0 -0.258,-1.03202 0.215,-1.97803 0.47301,-0.94601 3.05304,-1.46202 3.95605,-0.387 0.903,1.07501 0.94601,2.32202 0.94601,2.32202 z" + id="path3745" + inkscape:connector-curvature="0" /> + <path + style="fill:#483737;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 112.70262,221.98126 c 0,0 -1.32266,0.71453 -1.68753,1.27705 -0.36487,0.5625 -0.24326,1.27704 -0.24326,1.27704 l 3.87675,0.25844 c 0,0 -0.0912,-2.49327 -1.94596,-2.81253 z" + id="path3747" + inkscape:connector-curvature="0" /> + <path + style="fill:#c6e3ff;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.33917,223.79197 c 0,0 -1.24701,0.43001 -1.54802,2.15002 -0.301,1.72003 -0.301,12.34114 -0.301,12.34114 l 3.56904,-0.68802 c 0,0 -0.30099,-10.8361 0.64501,-11.91112 0.94601,-1.07501 1.84901,-1.67702 1.84901,-1.67702 z" + id="path3743" + inkscape:connector-curvature="0" /> + <path + style="fill:#897d8a;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.61965,175.4146 c 0,0 -0.82096,-1.61152 3.5727,-3.51189 0.48839,-0.21123 1.33911,-0.57476 1.33911,-0.57476 l 1.30882,-2.24634 c 0,0 -6.78921,2.7616 -7.20882,3.70288 -0.56251,1.26184 0.98819,2.63011 0.98819,2.63011 z" + id="path3753" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccsc" /> + <path + style="fill:#bad8ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 102.53741,179.88247 -6.267465,14.68647 -5.893295,-4.86431 6.735193,-8.04481 z" + id="path3517" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 92.983067,186.52412 -0.841899,0.93545 5.472343,3.55468 c 0,0 4.069179,2.33861 6.454559,2.43216 2.38538,0.0935 7.10937,-0.5145 7.10937,-0.5145 l 7.71741,0.79513 2.94442,0.1402 0.18931,-0.84179 2.71179,3.0312 1.84399,-3.13863 7.69853,-1.24896 7.24969,-4.25627 2.24506,-1.68379 c 0,0 4.34981,-1.91766 5.47235,-2.66602 1.12253,-0.74835 1.44993,-1.1693 1.44993,-1.1693 l -1.02899,-1.49671 1.3564,-3.04019 -1.3564,-2.05798 -11.78658,10.24311 -15.20096,4.72399 -12.11399,0.8419 -9.0738,-1.77735 z" + id="path6498" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccccccc" /> + <path + style="fill:#000000;fill-opacity:0.121212;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 131.94428,186.71121 1.87089,-1.44994 4.67722,-3.13373 3.695,-2.75956 2.38538,-2.33861 1.63702,-4.20949 -0.0468,-2.85311 1.91766,1.44994 -0.18709,4.44336 -6.78196,7.10937 -5.84652,3.50791 z" + id="path6780" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient6416);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 92.837975,183.84454 0.04297,2.96704 c 0,0 5.375054,4.64404 16.168155,5.07405 10.79314,0.43 26.67341,-0.49108 35.36601,-8.53295 7.78987,-7.20672 5.87145,-9.01124 5.87145,-9.01124 l -1.29001,-3.44004 c 1.29804,3.41116 -4.75679,10.67298 -13.83056,14.99261 -8.55475,4.07255 -19.90764,5.33398 -26.63288,4.57261 -5.2262,-0.59165 -14.835157,-4.08505 -14.792157,-5.59005 0.04297,-1.50503 -0.903021,-1.03203 -0.903021,-1.03203 z" + id="path3777" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccssccssscc" /> + <path + style="fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 132.29924,172.3436 0.76015,4.53048 c 0,0 0.69932,-4.22643 0.6081,-5.35145 -0.0912,-1.12501 -1.36825,0.82097 -1.36825,0.82097 z" + id="path3771" + inkscape:connector-curvature="0" /> + <path + style="fill:#b3b3b3;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 100.96507,176.36248 c 0,0 0.25799,3.71953 2.10701,6.75106 l 1.80603,0.301 c 0,0 -2.34353,-3.80553 -2.34353,-6.57907 z" + id="path3755" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.05127,177.02937 1.75395,1.49671 2.362,0.70159 0.14031,-2.08137 -4.41997,-1.14591 z" + id="path6782" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient6408);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 95.173602,183.74581 c 0,0 -1.337867,1.03381 0.304058,2.25004 2.406362,1.78248 15.08133,6.99336 31.50054,2.25003 16.41918,-4.74331 19.88547,-12.95292 20.06791,-16.78406 l -1.33785,-1.70274 c 0,0 6.20279,-0.36485 3.04058,6.26363 -3.16222,6.6285 -16.80093,17.03853 -39.22364,14.95971 -8.64784,-0.80174 -17.00847,-3.31787 -16.712848,-7.03846 0.09257,-1.1644 3.151803,-0.9279 3.151803,-0.9279 z" + id="path3775" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + <path + style="fill:#bdbdbd;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 108.40415,177.35148 c 0,0 -0.2795,3.18204 0.645,6.14906 l 1.87053,0.1935 c 0,0 -0.81702,-2.83803 -0.81702,-6.17055 z" + id="path3767" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 108.41788,177.75434 -0.0701,0.86529 1.80072,0.44433 0.81852,0.5145 -0.0234,-2.08137 z" + id="path6784" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 132.29507,172.16507 0.14032,1.14592 1.23946,-0.98222 2.38538,-1.14592 -0.0935,-1.77734 z" + id="path6786" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient6400);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 99.118087,174.05736 0.262596,1.41211 c 0,0 0.722387,0.63159 1.645697,0.9632 2.52633,0.90736 11.52843,3.33218 23.07295,-0.8012 12.22019,-4.3753 14.27189,-7.29889 16.43725,-10.5036 0.17989,-0.26624 0.39365,-1.17934 0.25027,-1.8804 l -0.52087,-1.84689 c 0,0 -4.68554,12.42487 -21.45571,14.14488 -16.7702,1.72001 -19.692183,-1.4881 -19.692183,-1.4881 z" + id="path3751" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsssccsc" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient6494);stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 145.70826,169.75908 c 0,0 6.20279,-0.36485 3.04058,6.26363 -3.16222,6.6285 -16.80093,17.03853 -39.22364,14.95971 -8.64784,-0.80174 -17.008471,-3.31787 -16.712849,-7.03846" + id="path3775-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsc" /> + <path + style="fill:#000000;fill-opacity:0.111111;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 136.49193,161.20259 c 0,0 0.46302,2.71198 -0.33073,4.10104 -0.79375,1.38906 -2.14974,1.65364 -2.14974,1.65364 l -1.95131,2.31511 -5.25859,3.86953 8.20208,-4.06797 3.3073,-4.66328 0.26458,-2.3151 z" + id="path6778" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#4a8f90;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 132.17814,172.30538 0.93545,4.25627 2.43215,-0.88867" + id="path6796" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient6392);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 136.64728,161.18462 c 0,0 5.42011,3.14232 -7.35824,10.45964 -11.82996,6.77423 -34.204791,4.27762 -26.33153,0.4865 1.76387,-0.84934 3.23041,-1.52898 4.45547,-2.05073 l 0.73316,-1.37164 c 0,0 -10.879108,3.44004 -8.772092,5.89106 2.107032,2.45103 11.051122,3.31104 18.963212,1.591 7.91207,-1.72001 17.4258,-4.57357 21.37123,-12.34111 2.75202,-5.41806 -6.06307,-4.38606 -6.06307,-4.38606 z" + id="path3749" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cssccssscc" /> + <ellipse + style="opacity:0.514;fill:#090909;fill-opacity:0.535354;stroke:none;stroke-width:0.265;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="path8765" + cx="99.36747" + cy="206.70631" + rx="4.0925646" + ry="1.5200955" /> + <path + sodipodi:nodetypes="ccccccccccccc" + inkscape:connector-curvature="0" + id="path1508" + d="m 95.6905,208.19217 3.101402,1.30745 3.010188,0.85136 2.13928,3.40847 4.71078,0.83428 c 1.46494,0.21806 7.45975,-1.28956 7.45975,-1.28956 l -1.63812,-1.03413 -5.40473,-1.88166 -1.75957,-1.30264 -0.003,-2.65712 -4.86494,-0.91217 -3.253434,-0.85137 z" + style="fill:#000000;fill-opacity:0.141414;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g1206" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <path + style="fill:#826982;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 81.142162,68.305975 0.436769,-0.424637 5.483889,-0.07279 0.594494,0.509566 -2.899669,1.31031 z" + id="path1090" + inkscape:connector-curvature="0" /> + <path + id="rect1085" + style="fill:url(#linearGradient2184);fill-opacity:1;stroke:none;stroke-width:0.264583" + d="m 81.142166,68.281708 c 2.540406,1.044345 4.64062,0.8608 6.50302,0 v 5.96919 c -2.625547,1.297309 -4.648064,0.886034 -6.50302,0 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient2192);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 84.169563,62.783857 -2.978871,5.303734 c 2.50187,0.852299 4.639333,0.949758 6.236104,-0.07279 L 85.094321,62.859179 C 84.977509,62.5016 84.462409,62.271931 84.169563,62.783857 Z" + id="path1088" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + id="rect1098" + style="fill:url(#linearGradient1503);fill-opacity:1;stroke:none;stroke-width:0.264583" + d="M 82.632668,75.803802 H 86.3731 v 13.280251 c -1.106349,0.642111 -2.314778,0.817569 -3.740432,0 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#b099b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 81.105763,74.238767 1.370973,1.710685 c 1.587142,0.760166 2.890664,0.514775 4.12505,0.02426 l 1.06766,-1.747081 c -2.366572,1.076333 -4.484523,0.660628 -6.563683,0.01214 z" + id="path1096" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccsccc" + inkscape:connector-curvature="0" + id="path1506" + d="m 79.668062,91.060481 0.234501,0.65241 c 0,0 0.306268,0.416901 1.175812,0.4122 0.716547,-0.0039 1.103933,-0.407479 1.103933,-0.407479 l 0.154907,-0.699595 z" + style="fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="rect1101" + style="fill:#b099b1;fill-opacity:1;stroke:none;stroke-width:0.264583" + d="m 79.661995,81.894379 c 0.889717,0.511415 1.779433,0.649815 2.66915,0 v 9.172169 c -0.654139,0.748034 -1.976698,0.734687 -2.66915,0 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1088-0" + d="m 80.937542,78.770648 -1.263412,3.209625 c 1.061104,0.515779 1.967655,0.574759 2.644884,-0.04405 L 81.329755,78.81623 c -0.04955,-0.216394 -0.26801,-0.355381 -0.392213,-0.04558 z" + style="display:inline;fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.134043px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 80.505083,88.123212 -2.453585,1.698638 0.03431,1.149579 2.487903,-0.343159 z" + id="path1119" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccsccc" + inkscape:connector-curvature="0" + id="path1506-3-0" + d="m 86.659047,88.955072 0.234501,0.65241 c 0,0 0.306268,0.416901 1.175812,0.4122 0.716547,-0.0039 1.103933,-0.407479 1.103933,-0.407479 L 89.3282,88.912608 Z" + style="display:inline;fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + d="m 89.338857,79.923916 c -0.889717,0.511415 -1.779433,0.649815 -2.66915,0 v 9.172169 c 1.248632,0.942154 1.916035,0.358579 2.66915,0 z" + style="display:inline;fill:#9f83a1;fill-opacity:1;stroke:none;stroke-width:0.264583" + id="rect1101-8" /> + <path + style="display:inline;fill:#ddd2de;fill-opacity:1;stroke:none;stroke-width:0.134043px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 88.06331,76.800185 1.263412,3.209625 c -1.061104,0.515779 -1.967655,0.574759 -2.644884,-0.04405 l 0.989259,-3.119993 c 0.04955,-0.216394 0.26801,-0.355381 0.392213,-0.04558 z" + id="path1088-0-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1119-6" + d="m 88.495769,86.152749 2.453585,1.698638 -0.03431,1.149579 -2.487903,-0.343159 z" + style="display:inline;fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient8773);fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 82.579808,81.274037 c 0,0 2.818102,-0.522562 3.751248,-2.538158 l -0.03732,10.525891 c 0,0 -1.418382,1.269079 -3.657933,-0.149303 z" + id="path8674" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccsccc" + inkscape:connector-curvature="0" + id="path1506-3" + d="m 83.887744,91.673588 0.234501,0.65241 c 0,0 0.306268,0.416901 1.175812,0.4122 0.716547,-0.0039 1.103933,-0.407479 1.103933,-0.407479 l 0.154907,-0.699595 z" + style="display:inline;fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="rect1101-8-1" + style="display:inline;fill:#b099b1;fill-opacity:1;stroke:none;stroke-width:0.279964" + d="m 86.62403,81.866127 c -0.941439,0.541145 -1.86968,0.859148 -2.811119,0.171557 v 9.705377 c 1.321218,0.996924 2.02742,0.379424 2.824316,0 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path1088-0-4-7" + d="m 85.287528,78.732361 1.284071,3.145474 c -0.304595,0.651336 -2.029254,0.858908 -2.745852,0.204127 l 1.046768,-3.301368 c 0.05243,-0.228974 0.28359,-0.376041 0.415013,-0.04823 z" + style="display:inline;fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.141835px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.221706px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 85.718052,88.628619 1.628134,1.797385 -0.02276,1.216408 -1.650906,-0.363108 z" + id="path1119-6-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 84.671301,63.77615 -1.017579,4.509465 c 0,0 -1.118274,-0.06903 -2.042334,-0.452505 l 2.687567,-4.848657 z" + id="path2174" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#eee9ee;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 81.154293,68.293844 c 0,0 2.147451,1.152586 4.525423,0.691553 0,0 1.176853,-0.242651 1.904803,-0.679421" + id="path2176" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 81.384811,68.815542 c 0,0 0.9706,0.436769 1.844141,0.485299 l 0.07279,5.24124 c 0,0 -0.92207,0 -1.916935,-0.38824 z" + id="path2199" + inkscape:connector-curvature="0" /> + <ellipse + style="fill:#997f9a;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-opacity:1" + id="path2205" + cx="86.007286" + cy="70.744606" + rx="0.40037248" + ry="0.44890252" /> + <ellipse + ry="0.44890252" + rx="0.40037251" + cy="72.528091" + cx="86.043694" + id="path2205-9" + style="display:inline;fill:#997f9a;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-opacity:1" /> + <path + style="fill:none;stroke:#967798;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.409091" + d="m 84.219371,62.703295 -3.008845,5.331457 0.07918,0.184754 -0.184754,0.263936 0.05279,5.832931 1.425241,1.741962 0.05279,0.31672 0.0264,12.642421" + id="path8621" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#967798;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.565657" + d="m 81.072639,78.732678 -1.325067,3.266011 -0.09784,6.555765 -1.612742,1.16163 0.07145,1.146168" + id="path8623" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:none;stroke:#826982;stroke-width:0.295766px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 86.796098,82.261645 0.04039,6.740372" + id="path8625" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 79.789231,83.582968 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + id="path8642" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 83.999443,83.709398 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + id="path8642-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 86.798883,81.61915 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + id="path8642-5-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 79.761147,81.966823 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + id="path8642-57" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 83.984084,82.01961 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + id="path8642-5-48" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 86.781781,80.000518 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + id="path8642-5-4-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + </g> + <path + style="fill:#207eff;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 65.704099,212.60458 0.117515,-5.48408 c 0.02753,-0.41972 0.246349,-0.53261 0.246349,-0.53261 l 7.074958,-4.62595 c 0,0 0.536132,-0.0868 0.518743,0.20838 l -0.0034,5.41063 c -0.256536,0.22234 -0.468623,0.13358 -0.669821,-0.0314 l -0.02092,-2.97233 -6.216751,4.00845 v 4.0189 c -0.366011,0.37723 -0.708136,0.22887 -1.046595,0 z" + id="path268" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <g + id="g3880" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.68036)"> + <rect + transform="matrix(0.97854978,0.20601049,0,1,0,0)" + ry="1.01913" + y="105.26922" + x="71.811821" + height="5.0956497" + width="3.7691286" + id="rect3814" + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.267467" /> + <path + transform="scale(0.26458333)" + d="m 279.5332,471.88477 v -11.31641 c 0,-0.53348 -0.10469,-1.06327 -0.29492,-1.56445 -0.19023,-0.50119 -0.466,-0.97276 -0.80664,-1.39258 -0.34064,-0.41982 -0.74602,-0.78678 -1.19726,-1.07617 -0.45125,-0.2894 -0.94867,-0.50143 -1.47071,-0.61133 l -6.40234,-1.34766 c -0.2638,-0.0555 -0.49396,-0.004 -0.74219,-0.004 v 11.3164 c 0,2.13392 1.68139,4.20492 3.76953,4.64453 l 6.40235,1.34766 c 0.26379,0.0555 0.49395,0.004 0.74218,0.004 z" + style="display:inline;fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.999998" + id="rect3814-8" + inkscape:connector-curvature="0" /> + </g> + <g + id="g3884" + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)"> + <rect + style="display:inline;fill:#8da09e;fill-opacity:1;stroke:none;stroke-width:0.267467" + id="rect3814-3" + width="3.7691286" + height="5.0956502" + x="78.829292" + y="105.32799" + ry="1.01913" + transform="matrix(0.97854978,0.20601049,0,1,0,0)" /> + <path + inkscape:connector-curvature="0" + id="rect3814-8-2" + style="display:inline;fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.264583" + d="m 80.826768,126.35728 v -2.99413 c 0,-0.14115 -0.0277,-0.28132 -0.07803,-0.41393 -0.05033,-0.1326 -0.123296,-0.25737 -0.213423,-0.36845 -0.09013,-0.11108 -0.197385,-0.20817 -0.316775,-0.28474 -0.119393,-0.0766 -0.251003,-0.13267 -0.389126,-0.16174 l -1.693952,-0.35657 c -0.0698,-0.0147 -0.130694,-0.001 -0.196371,-0.001 v 2.99413 c 0,0.5646 0.444868,1.11255 0.997355,1.22887 l 1.693955,0.35656 c 0.06979,0.0147 0.130691,0.001 0.196367,0.001 z" /> + </g> + <g + id="g2226" + transform="matrix(0.65461067,0,0,0.65461067,76.807907,101.05517)"> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path2371-0" + d="m 150.99058,276.81915 c 0.74719,0.64767 2.61086,0.0732 3.79454,-0.49019 l 2.07189,-1.9817 c 1.06516,-1.30959 3.23937,-2.73021 3.03184,-4.21348 l -18.54536,-9.12436 -4.53171,1.72746 c -1.00604,0.56044 -0.32641,1.54798 0.13153,2.07418 z" + style="display:inline;fill:url(#linearGradient9358);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2140" + d="m 156.7079,275.46474 -2.02341,-0.63232 1.34894,-2.36066 4.59486,-1.81265 0.37938,3.62529 z" + style="fill:#564b47;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2136" + d="m 152.78753,272.85115 2.86651,0.63231 -1.51756,2.40282 -2.48713,-0.59016 z" + style="fill:#564b47;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2138" + d="m 152.66106,272.85115 8.81032,-4.04684 2.82435,0.63232 -8.64169,4.55269 z" + style="fill:#9f8c8c;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2124" + d="m 157.97255,275.88628 c 0,0 0.0844,-3.1616 1.39109,-4.55269 1.3068,-1.39111 4.97424,-4.089 6.36535,-4.34193 1.39111,-0.25293 3.96253,0.67447 3.96253,0.67447 0,0 1.98127,3.07729 2.10773,4.63701 0.12646,1.55972 -6.61827,5.64872 -6.61827,5.64872 l -3.83607,0.63231 z" + style="fill:url(#linearGradient9305);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#000000;fill-opacity:0.207071;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 158.14804,274.52583 0.25007,-1.21466 c 0,0 2.64366,0.10718 3.60825,1.46474 0.96457,1.35755 0.96457,1.60763 0.96457,1.60763 l 4.07268,-2.78656 1.0003,0.53588 3.60824,-2.57222 0.60733,1.57191 -6.75206,5.89466 -5.89465,-1.28611 z" + id="path9324" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient9202);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 143.21844,281.87223 c -0.0712,-0.0238 2.12231,-3.38155 5.4801,-5.31148 1.16552,-0.6699 6.32318,-3.20375 6.32318,-3.20375 l 5.0164,1.13818 c 0,0 1.13818,0.12646 2.23419,2.27634 1.09602,2.14989 1.55973,8.97893 1.55973,8.97893 l -0.54802,4.21546 c 0,0 -3.41161,2.13583 -5.14286,3.1616 -2.1066,1.24816 -1.99893,1.1546 -4.52821,1.7026 -2.52927,0.54801 -5.04087,-0.0164 -5.04087,-0.0164 z" + id="path2274" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccsccsscc" /> + <path + style="fill:#2b0000;fill-opacity:0.247475;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 162.33653,276.84756 -6.6943,4.5976 c 0,0 2.34932,4.85021 2.14723,7.42689 -0.2021,2.57667 -2.80403,5.75962 -2.80403,5.75962 0,0 4.39515,-1.96833 6.41642,-3.30925 2.1324,-1.41465 2.10321,-14.47486 0.93468,-14.47486 z" + id="path9214" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccsc" /> + <ellipse + style="fill:url(#linearGradient9210);fill-opacity:1;stroke-width:1.02413" + id="path2194" + cx="58.330738" + cy="318.1394" + rx="7.3274937" + ry="8.0820074" + transform="rotate(-17.063171)" /> + <ellipse + style="fill:#aa0000;stroke-width:0.997595" + id="path2192" + cx="57.024841" + cy="318.79239" + rx="4.7447329" + ry="5.3396387" + transform="rotate(-17.063171)" /> + <path + inkscape:connector-curvature="0" + id="path2192-4" + style="display:inline;fill:#550000;stroke-width:0.948352" + d="m 148.40393,283.36836 a 5.076062,4.5105219 72.93683 0 0 -1.14732,0.1773 5.076062,4.5105219 72.93683 0 0 -2.82254,6.1761 5.076062,4.5105219 72.93683 0 0 3.60673,3.58339 5.3396389,4.7447325 72.93683 0 0 1.58273,-0.17327 5.3396389,4.7447325 72.93683 0 0 2.96888,-6.49705 5.3396389,4.7447325 72.93683 0 0 -1.10199,-2.04463 5.3396389,4.7447325 72.93683 0 0 -4.6e-4,-8.7e-4 5.076062,4.5105219 72.93683 0 0 -3.08603,-1.22094 z" /> + <ellipse + style="fill:none;stroke:#ffffff;stroke-width:0.173099;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.484849" + id="path2229" + cx="70.709183" + cy="315.95923" + rx="5.325129" + ry="5.9925833" + transform="rotate(-14.594068)" /> + <path + id="path2234" + style="fill:#ac6158;fill-opacity:1;stroke:none;stroke-width:0.182621;stroke-miterlimit:4;stroke-dasharray:none" + d="m 150.37348,291.15006 c 0,0 -3.41065,1.92004 -3.7829,2.04928 -2.03431,0.70629 -3.73769,0.55705 -4.60352,-0.93251 -0.86582,-1.48956 -0.0595,-3.33809 1.61714,-4.96842 0.23818,-0.23162 2.67607,-1.75107 2.67607,-1.75107 l 3.60455,1.60576 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csssccc" /> + <path + style="display:inline;opacity:1;fill:#92524b;fill-opacity:1;stroke:none;stroke-width:0.265807px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 141.6071,291.24763 c 0.15278,1.46439 1.63214,2.51781 5.43,1.94396 0.41268,-0.17536 0.5318,-0.37894 0.6428,-0.55999 0.34158,-0.55713 0.5389,-1.07483 0.6252,-1.55407 -0.73868,0.32486 -1.95556,0.80303 -2.89777,0.88582 -1.05449,0.0926 -2.73485,-0.37267 -3.80022,-0.71571 z" + id="path1196-2-3" + inkscape:connector-curvature="0" /> + <path + style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 144.69835,286.46263 c 0,0 2.83174,0.3577 3.30866,2.51877 0.59616,2.325 -0.52164,3.75577 -0.52164,3.75577 l 0.015,0.46202 c 0,0 3.23415,-2.36972 2.19087,-5.24617 -1.04328,-2.87646 -5.06732,-1.86298 -5.06732,-1.86298 z" + id="path2238" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="display:inline;fill:#d2aaa6;fill-opacity:0.474747;stroke:none;stroke-width:0.299987px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 144.26267,286.73975 c -0.15662,0.053 -0.24755,0.13197 -0.21813,0.16681 -1.91868,1.41565 -3.24181,4.10054 -1.9104,5.51624 0.65714,-1.10802 1.94709,-3.11812 3.05259,-3.80948 1.10979,-0.69404 1.25928,-0.78415 1.51372,-0.94107 -0.63662,-0.46717 -1.32741,-0.78064 -1.82276,-0.93644 -0.23506,-0.0739 -0.45826,-0.0487 -0.61503,0.004 z" + id="path2063-9" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path2232" + style="fill:url(#linearGradient9332);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 148.56463,283.37464 -2.16448,1.39152 -1.81684,1.39928 c 0,0 3.09454,0.0969 3.82712,2.73861 0.82201,2.70134 -0.95387,4.31325 -0.95387,4.31325 l 5.12283,-3.10546 c 0.34884,-1.06095 0.3816,-2.27637 0.013,-3.47701 -0.23116,-0.75298 -0.60748,-1.45122 -1.102,-2.04463 l -4.6e-4,-8.7e-4 c -0.84175,-0.75882 -1.87573,-1.18382 -2.92533,-1.21465 z" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="fill:url(#linearGradient9289);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 169.10136,275.12749 -2.44497,-0.80093 -9.1897,6.61827 -0.4637,1.68618 c 0,0 2.23419,4.34192 0.88525,8.38877 l -0.84309,1.60187 0.46369,1.3068 6.19673,-3.83607 7.08197,-12.26698 z" + id="path2276" + inkscape:connector-curvature="0" /> + <path + style="fill:#564b47;fill-opacity:1;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 176.30614,274.09405 c 0,0 -0.85889,0.78311 -0.83363,1.49043 0.0253,0.70733 0.93468,2.47563 0.93468,2.47563 l -5.50701,3.99132 -2.65246,-0.42944 0.9852,-4.24394 5.96172,-3.38504 z" + id="path4322" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient9297);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 163.83204,281.47177 -1.74941,5.9438 c 1.31796,0.28751 2.71929,0.38744 4.13114,0.46369 l 1.60187,-6.34426 z" + id="path2288" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#483737;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 164.47757,281.37066 -1.37936,4.88209 c -0.0104,0.19316 0.005,0.44326 0.28865,0.48478 l 2.00519,0.28615 c 0.26044,0.0473 0.46728,-0.0905 0.59375,-0.49692 l 1.21502,-4.75849 z" + id="path2290" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 163.43661,281.50988 1.18126,-4.19698 2.3548,0.7452 -0.67141,3.87096 z" + id="path2278" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#9f8c8c;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 164.55825,277.40232 7.75002,-5.63366 2.86155,0.83461 -8.13753,5.54425 z" + id="path2280" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c5e59;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 167.00249,277.99848 -0.75277,3.99473 3.5249,-2.23607 0.32788,-2.05674 6.34906,-3.60674 -1.51364,-1.58892 z" + id="path2282" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#917b7b;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 166.29809,281.95654 c 0,0 0.9274,0.16862 0.96955,1.49649 l 3.41452,-2.55036 c 0,0 -0.10541,-0.88524 -1.07494,-1.2857 z" + id="path2284" + inkscape:connector-curvature="0" /> + <path + style="fill:#9f8c8c;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 162.25124,286.85701 c 0,0 0.0527,0.34779 0.25293,0.52693 0.20023,0.17916 3.11944,0.44263 3.11944,0.44263 0.27795,-0.0843 0.58525,-0.0904 0.72716,-0.53747 l 0.99063,-4.11007 1.08548,0.15808 -0.41101,4.94262 -2.98243,1.54918 -2.47658,-0.91686 c 0,0 -0.71663,-0.85363 -0.30562,-2.05504 z" + id="path2292" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <path + style="fill:#6c5e59;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 167.3941,283.09472 -0.44263,5.18501 c 0,0 -0.33723,0.61125 -1.62295,0.80094 -1.28571,0.1897 -2.81472,-0.22184 -2.81472,-0.22184 l -0.2204,1.08601 c 0,0 1.81264,0.94847 3.92037,0.0211 2.10773,-0.9274 9.16863,-5.43793 9.16863,-5.43793 l -0.40047,-6.21782 z" + id="path2286" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="display:inline;fill:#564b47;fill-opacity:1;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 168.67312,285.0581 -0.26793,3.78687 4.4835,-2.66152 c 0,0 -2.39359,0 -2.7687,-0.21436 -0.37511,-0.21434 -1.44687,-0.91099 -1.44687,-0.91099 z" + id="path4324" + inkscape:connector-curvature="0" /> + <path + style="fill:#96231a;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 174.49714,278.47879 c -2.7686,2.14749 -6.48808,3.86418 -5.79625,7.27166 0.25293,1.22248 5.50117,0.21077 5.50117,0.21077 l 5.77518,-4.55269 -2.95082,-3.62529 -1.01171,-0.0211 z" + id="path2375" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#483f3b;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 173.78052,279.21649 c -1.62875,1.5421 -4.7973,3.58615 -4.11007,5.88057 0.18969,0.63232 1.77049,0.86416 5.16393,-0.10541 3.39345,-0.96956 3.73069,-5.29039 3.73069,-5.29039 l -1.62296,-1.81265 h -0.86417 z" + id="path2373" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#linearGradient9366);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 171.37771,285.41322 c -1.10956,-0.2345 -1.12549,-0.78242 -0.8881,-1.80264 0,0 0.34977,-1.31839 1.41502,-2.37066 1.06525,-1.05227 4.05288,-3.4275 5.9971,-3.89434 l 23.51853,8.91482 -3.7685,4.93952 c -0.95344,0.79844 -1.81348,0.84972 -2.65574,0.75879 z" + id="path2371" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cczccccc" /> + <path + inkscape:connector-curvature="0" + id="path2126" + d="m 159.57442,271.20712 c 0,0 3.60003,-0.18567 4.82251,4.70427" + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + id="path2128" + d="m 160.41752,270.40619 c 0,0 4.51007,0.80093 4.88945,4.93208" + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + id="path2130" + d="m 163.83204,272.13452 4.55269,-2.65573" + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" /> + <path + inkscape:connector-curvature="0" + id="path2132" + d="m 164.59034,272.99466 4.42671,-2.71494" + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + id="path2134" + d="m 169.96103,273.44054 c 0,0 0.10988,-3.70883 -3.68403,-5.39501" + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" + sodipodi:nodetypes="cc" /> + <path + style="display:inline;fill:#000000;fill-opacity:0.252525;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 160.75597,270.07804 c 0,0 3.03664,0.96459 4.85863,2.28642 l 2.17923,-0.4287 3.03665,-1.67907 -3.75115,-4.00124 -4.96579,2.64366 z" + id="path9307" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path2167" + d="m 157.42613,266.67286 0.27735,0.98028 8.83624,3.74368 2.43008,-1.09229 8.59473,-5.75641 c 0.73861,-1.21907 -0.34187,-1.25178 -1.07407,-1.51162 l -7.87835,-1.6743 z" + style="fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccccc" /> + <path + sodipodi:nodetypes="cccczccc" + inkscape:connector-curvature="0" + id="path2169-3" + d="m 161.19268,266.67877 c 0,0 5.66187,0.43825 4.8843,-3.14792 -0.77754,-3.58616 2.03556,-2.83688 2.03556,-2.83688 l -12.42603,-4.23593 c 0,0 -3.67559,0.51779 -4.24527,0.9068 -0.56968,0.38901 -0.30182,1.10215 -0.30182,1.10215 0,0 5.13558,5.43081 6.8694,7.15635 1.73386,1.72555 3.18386,1.05543 3.18386,1.05543 z" + style="display:inline;fill:url(#linearGradient3791);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2165" + d="m 177.56861,263.4538 c 0,0 -2.79183,-0.54259 -6.07068,1.3055 -3.27886,1.84808 -4.7147,5.7746 -4.7147,5.7746 l -9.30957,-3.89083 c 0,0 2.01726,-4.44625 6.54805,-5.87704 4.53077,-1.43076 5.45933,-0.60019 5.45933,-0.60019 z" + style="fill:url(#linearGradient3807);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccc" /> + <path + inkscape:connector-curvature="0" + id="path2169" + d="m 168.9698,270.00646 c 0,0 0.3577,-3.15963 3.93464,-4.53079 3.57693,-1.37117 3.63654,-1.07308 3.63654,-1.07308 l 11.92312,4.94809 c 0.40649,0.52047 0.52914,0.93376 -0.0357,1.31133 l -4.85275,2.38484 c 0,0 -0.99068,-0.11878 -3.61376,-0.47648 -2.62309,-0.35768 -10.99206,-2.56391 -10.99206,-2.56391 z" + style="fill:url(#linearGradient3799);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#aa0000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 669.85547,580.63086 -1.11328,4.05273 c 0,0 5.52689,10.74347 2.18945,20.75586 l -2.08594,3.96289 1.14844,3.23243 0.74219,-0.45899 c 4.48035,-8.01831 4.96979,-13.80498 4.19726,-20.58594 -0.64638,-5.67392 -3.85219,-9.62207 -5.07812,-10.95898 z" + transform="matrix(0.40418427,0,0,0.40418427,-113.29188,46.310962)" + id="path9160" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 647.86328,586.52344 -4.21094,2.70898 c 0.76865,0.1015 7.72857,1.09616 11.09766,4.64258 2.2706,2.3901 2.45668,6.84429 2.29492,9.77344 l 0.75196,-0.45508 c 0.86307,-2.62492 0.94516,-5.63299 0.0332,-8.60352 -0.57192,-1.86296 -1.50306,-3.59042 -2.72656,-5.05859 l -0.002,-0.002 c -2.08261,-1.87741 -4.64144,-2.92959 -7.23828,-3.00586 z" + transform="matrix(0.40418427,0,0,0.40418427,-113.29188,46.310962)" + id="path9178" + inkscape:connector-curvature="0" /> + <path + style="fill:#eaa5a5;fill-opacity:0.383838;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 154.88438,273.15938 -7.37636,4.04185 c 0,0 -4.04184,3.63765 -4.34498,4.74916 -0.30314,1.11151 -0.30314,3.53661 -0.30314,3.53661 0,0 2.72824,-3.13242 4.44603,-3.13242 1.71778,0 2.52615,-3.83975 4.54707,-4.95126 2.02092,-1.11151 6.46695,-3.43557 6.46695,-3.43557 z" + id="path9212" + inkscape:connector-curvature="0" /> + <path + transform="rotate(-17.063171)" + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient9247);stroke-width:0.305525;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 54.163941,311.49043 c 1.183014,-0.90362 2.618851,-1.43303 4.166797,-1.43303 4.046861,0 7.32749,3.61843 7.327494,8.082 10e-7,4.46357 -3.28063,8.08201 -7.327494,8.08201 -0.633628,0 -1.248471,-0.0887 -1.83488,-0.25547" + id="path2194-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csssc" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient9279);stroke-width:0.305525;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 143.23044,281.76445 c 0.87061,-1.23372 2.1304,-2.37504 3.95781,-2.81992 3.95836,-0.96364 7.91502,1.4587 9.23202,5.80592 1.31701,4.34721 -0.78687,9.03065 -4.67709,10.24041" + id="path2194-6-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cssc" /> + <path + style="display:inline;fill:#ffffff;fill-opacity:0.353535;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 141.65227,268.79269 c 0,0 -0.50015,-1.01818 0.0535,-1.6255 0.73237,-0.44657 6.46625,-2.76871 6.46625,-2.76871 l 1.822,0.911 -6.55557,2.7687 c 0,0 -0.87527,0.51801 -0.51802,1.44687 0.35725,0.92886 0.16077,0.48229 0.16077,0.48229 z" + id="path3768" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccscc" /> + <use + x="0" + y="0" + xlink:href="#g2353" + id="use2369" + transform="translate(4.4562664,-2.9956797)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#g2353" + id="use2367" + transform="translate(2.0865454,-1.4605857)" + width="100%" + height="100%" /> + <g + id="g2353" + transform="matrix(0.6845709,0.53467746,-0.53467746,0.6845709,134.4966,53.786189)"> + <path + transform="scale(0.26458333)" + d="m 729.74414,665.67383 a 5.317612,2.9506264 0 0 0 -5.30664,2.78906 h -0.01 v 0.16211 8 0.0742 h 0.002 a 5.317612,2.9506264 0 0 0 5.31445,2.87695 5.317612,2.9506264 0 0 0 5.31641,-2.87695 h 0.002 v -0.0742 -8 -0.16211 h -0.01 a 5.317612,2.9506264 0 0 0 -5.30859,-2.78906 z" + style="fill:#a1a7a6;fill-opacity:1;stroke:none;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none" + id="path2294" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="csccc" + inkscape:connector-curvature="0" + d="m 194.4167,176.83836 c 0,0.32219 -0.57998,0.58337 -1.29542,0.58337 -0.49882,0 -0.93178,-0.12696 -1.14825,-0.31304 2.34784,0.22838 2.11509,-0.61904 1.98918,-0.71409 0.27815,0.107 0.45449,0.26611 0.45449,0.44376" + style="display:inline;fill:#d8d8d8;fill-opacity:1;stroke:none;stroke-width:0.165894;stroke-miterlimit:4;stroke-dasharray:none" + id="path2294-9" /> + <ellipse + ry="0.37747481" + rx="0.84073937" + cy="176.77832" + cx="193.14699" + id="path2328" + style="fill:#5c5858;fill-opacity:1;stroke:none;stroke-width:0.191181;stroke-miterlimit:4;stroke-dasharray:none" /> + </g> + <g + id="g4381" + transform="translate(0.82167911,0.64305321)"> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path2115-9" + d="m 173.32305,272.52267 -7.24709,4.93221 -1.04783,-0.37382" + style="display:inline;fill:none;stroke:url(#linearGradient2172-0);stroke-width:0.404821;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2117-6" + d="m 166.15036,277.44789 -0.46766,3.3537" + style="display:inline;fill:#9f8c8c;fill-opacity:1;stroke:url(#linearGradient2180-1);stroke-width:0.404184px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <g + id="g2243" + transform="matrix(0.61537913,0.14702264,0,0.75841323,80.179952,23.529797)"> + <rect + y="165.63875" + x="165.53986" + height="23.746597" + width="31.296093" + id="rect2228" + style="fill:#929ad7;fill-opacity:1;stroke:none;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + y="167.83496" + x="167.87334" + height="4.6669617" + width="26.766396" + id="rect2230" + style="fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + y="174.69814" + x="168.28514" + height="5.6278062" + width="8.5103416" + id="rect2232" + style="fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.395282;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + y="174.56088" + x="178.85443" + height="5.9023337" + width="8.0985508" + id="rect2234" + style="fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.450572;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + y="174.42361" + x="188.32561" + height="12.490985" + width="5.9023337" + id="rect2236" + style="fill:none;fill-opacity:1;stroke:#aeb7e4;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + id="g2268" + transform="matrix(1.0200658,0.26876003,0,1.0200658,-10.391159,-75.985853)"> + <path + style="display:inline;fill:#000000;fill-opacity:0.242424;stroke:none;stroke-width:0.259379px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 188.59264,204.36301 10.56968,-0.12617 -0.12964,8.01006 -10.31031,0.44693 z" + id="path8035" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <rect + y="207.36687" + x="185.0313" + height="9.3339233" + width="12.628248" + id="rect2249" + style="fill:#aeb7e4;fill-opacity:1;stroke:none;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + y="207.36687" + x="185.0313" + height="1.7844269" + width="12.628248" + id="rect2249-4" + style="display:inline;fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.184951;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + y="214.02345" + x="187.41985" + height="1.7844269" + width="6.8050752" + id="rect2249-4-0" + style="display:inline;fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.13577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.99999341,-0.00363108,0,1,0,0)" /> + </g> + <g + aria-label="artwork by Bayu Rizaldhan Rayes" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.02637px;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:Quicksand;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.100659" + id="text5365" + transform="translate(-1.0583333,1.0583333)"> + <path + d="m 182.65875,134.80043 q 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0621 v 1.27 q 0,0.0339 -0.0254,0.0593 -0.0254,0.0254 -0.0593,0.0254 -0.0395,0 -0.0621,-0.0254 -0.0226,-0.0254 -0.0226,-0.0593 v -0.33585 l 0.048,-0.0226 q 0,0.079 -0.0452,0.16087 -0.0423,0.0819 -0.11853,0.1524 -0.0762,0.0706 -0.18062,0.11571 -0.1016,0.0423 -0.22296,0.0423 -0.18909,0 -0.34149,-0.0988 -0.14958,-0.0988 -0.23707,-0.27094 -0.0847,-0.17215 -0.0847,-0.38664 0,-0.22013 0.0875,-0.38664 0.0875,-0.16934 0.23706,-0.26529 0.14958,-0.096 0.33585,-0.096 0.12135,0 0.22578,0.0423 0.10724,0.0423 0.18626,0.11572 0.079,0.0734 0.12418,0.16933 0.0452,0.0931 0.0452,0.19473 l -0.0593,-0.0423 v -0.35842 q 0,-0.0367 0.0226,-0.0621 0.0226,-0.0254 0.0621,-0.0254 z m -0.58703,1.31233 q 0.14958,0 0.26529,-0.0762 0.11571,-0.079 0.18062,-0.21449 0.0677,-0.13829 0.0677,-0.30762 0,-0.16651 -0.0677,-0.29916 -0.0649,-0.13264 -0.18062,-0.21166 -0.11571,-0.079 -0.26529,-0.079 -0.14675,0 -0.26529,0.0762 -0.11571,0.0762 -0.18344,0.20884 -0.0649,0.13264 -0.0649,0.3048 0,0.16933 0.0649,0.30762 0.0649,0.13547 0.18062,0.21449 0.11854,0.0762 0.26811,0.0762 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4527" + inkscape:connector-curvature="0" /> + <path + d="m 183.26993,136.24258 q -0.0395,0 -0.0621,-0.0254 -0.0226,-0.0254 -0.0226,-0.0593 v -1.26436 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 0.42333 l -0.0423,0.008 q 0.008,-0.0988 0.048,-0.19473 0.0423,-0.0988 0.11289,-0.18062 0.0706,-0.0819 0.16651,-0.13265 0.0988,-0.0508 0.22014,-0.0508 0.0508,0 0.0988,0.0226 0.048,0.0197 0.048,0.0677 0,0.0423 -0.0226,0.0649 -0.0226,0.0226 -0.0536,0.0226 -0.0254,0 -0.0564,-0.0141 -0.0282,-0.0141 -0.0762,-0.0141 -0.079,0 -0.15805,0.048 -0.079,0.0451 -0.14393,0.12417 -0.0649,0.079 -0.10442,0.1778 -0.0367,0.096 -0.0367,0.19474 v 0.69709 q 0,0.0339 -0.0254,0.0593 -0.0254,0.0254 -0.0593,0.0254 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4529" + inkscape:connector-curvature="0" /> + <path + d="m 184.17803,134.80607 h 0.65757 q 0.0339,0 0.0565,0.0254 0.0226,0.0226 0.0226,0.0565 0,0.031 -0.0226,0.0536 -0.0226,0.0226 -0.0565,0.0226 h -0.65757 q -0.0339,0 -0.0593,-0.0226 -0.0226,-0.0254 -0.0226,-0.0565 0,-0.0339 0.0226,-0.0564 0.0254,-0.0226 0.0593,-0.0226 z m 0.29069,-0.39793 q 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 1.41675 q 0,0.079 0.0198,0.11853 0.0226,0.0395 0.0564,0.0536 0.0339,0.0113 0.0677,0.0113 0.0226,0 0.0395,-0.006 0.0198,-0.008 0.0423,-0.008 0.0254,0 0.0423,0.0198 0.0198,0.0198 0.0198,0.0508 0,0.0395 -0.0452,0.0677 -0.0451,0.0254 -0.10724,0.0254 -0.0254,0 -0.0762,-0.003 -0.0508,-0.006 -0.10442,-0.031 -0.0536,-0.0282 -0.0903,-0.096 -0.0339,-0.0677 -0.0339,-0.19473 v -1.42522 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4531" + inkscape:connector-curvature="0" /> + <path + d="m 187.05361,134.76938 q 0.031,0 0.0564,0.0226 0.0282,0.0226 0.0282,0.0621 0,0.008 -0.003,0.0198 -0.003,0.0113 -0.006,0.0169 l -0.43463,1.29822 q -0.0113,0.0254 -0.0367,0.0423 -0.0226,0.0141 -0.048,0.0113 -0.0508,-0.003 -0.0762,-0.0536 l -0.39794,-0.93698 0.0508,0.0113 -0.35277,0.92569 q -0.0226,0.0508 -0.0762,0.0536 -0.0254,0.003 -0.0508,-0.0113 -0.0254,-0.0169 -0.0339,-0.0423 l -0.44591,-1.29822 q -0.008,-0.0198 -0.008,-0.0367 0,-0.0367 0.0226,-0.0593 0.0254,-0.0254 0.0649,-0.0254 0.0254,0 0.0452,0.0141 0.0226,0.0141 0.031,0.0423 l 0.40076,1.20226 -0.0536,-0.003 0.36407,-0.91722 q 0.0226,-0.0536 0.079,-0.0536 0.0282,0 0.048,0.0141 0.0198,0.0141 0.0311,0.0395 l 0.38664,0.92004 -0.0621,0.003 0.39793,-1.20509 q 0.0169,-0.0564 0.079,-0.0564 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4533" + inkscape:connector-curvature="0" /> + <path + d="m 188.79479,135.52009 q 0,0.21449 -0.096,0.38665 -0.0931,0.16933 -0.254,0.26811 -0.16087,0.096 -0.36407,0.096 -0.20037,0 -0.36406,-0.096 -0.16087,-0.0988 -0.25683,-0.26811 -0.0931,-0.17216 -0.0931,-0.38665 0,-0.21731 0.0931,-0.38664 0.096,-0.16933 0.25683,-0.26811 0.16369,-0.0988 0.36406,-0.0988 0.2032,0 0.36407,0.0988 0.16087,0.0988 0.254,0.26811 0.096,0.16933 0.096,0.38664 z m -0.16934,0 q 0,-0.17215 -0.0705,-0.3048 -0.0706,-0.13546 -0.19474,-0.21166 -0.12135,-0.079 -0.2794,-0.079 -0.15522,0 -0.2794,0.079 -0.12135,0.0762 -0.19473,0.21166 -0.0706,0.13265 -0.0706,0.3048 0,0.17216 0.0706,0.3048 0.0734,0.13265 0.19473,0.21167 0.12418,0.0762 0.2794,0.0762 0.15805,0 0.2794,-0.0762 0.12418,-0.079 0.19474,-0.21167 0.0705,-0.13264 0.0705,-0.3048 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4535" + inkscape:connector-curvature="0" /> + <path + d="m 189.22857,136.24258 q -0.0395,0 -0.0621,-0.0254 -0.0226,-0.0254 -0.0226,-0.0593 v -1.26436 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 0.42333 l -0.0423,0.008 q 0.008,-0.0988 0.048,-0.19473 0.0423,-0.0988 0.11289,-0.18062 0.0706,-0.0819 0.16651,-0.13265 0.0988,-0.0508 0.22013,-0.0508 0.0508,0 0.0988,0.0226 0.048,0.0197 0.048,0.0677 0,0.0423 -0.0226,0.0649 -0.0226,0.0226 -0.0536,0.0226 -0.0254,0 -0.0564,-0.0141 -0.0282,-0.0141 -0.0762,-0.0141 -0.079,0 -0.15805,0.048 -0.079,0.0451 -0.14393,0.12417 -0.0649,0.079 -0.10442,0.1778 -0.0367,0.096 -0.0367,0.19474 v 0.69709 q 0,0.0339 -0.0254,0.0593 -0.0254,0.0254 -0.0593,0.0254 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4537" + inkscape:connector-curvature="0" /> + <path + d="m 190.3314,136.24258 q -0.0367,0 -0.0621,-0.0254 -0.0226,-0.0254 -0.0226,-0.0593 v -1.91911 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 1.91911 q 0,0.0339 -0.0254,0.0593 -0.0226,0.0254 -0.0593,0.0254 z m 0.95955,-1.4478 q 0.031,0 0.0564,0.0282 0.0254,0.0254 0.0254,0.0564 0,0.0367 -0.0311,0.0649 l -0.94826,0.80716 -0.008,-0.20038 0.84667,-0.72813 q 0.0254,-0.0282 0.0593,-0.0282 z m 0.0226,1.4478 q -0.0367,0 -0.0621,-0.031 l -0.64347,-0.68298 0.127,-0.11571 0.63783,0.68016 q 0.0254,0.0282 0.0254,0.0649 0,0.0395 -0.031,0.0621 -0.031,0.0226 -0.0536,0.0226 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4539" + inkscape:connector-curvature="0" /> + <path + d="m 193.19763,134.76656 q 0.19191,0 0.33866,0.096 0.14958,0.096 0.23707,0.26529 0.0875,0.16651 0.0875,0.38664 0,0.21449 -0.0875,0.38664 -0.0875,0.17216 -0.23707,0.27094 -0.14957,0.0988 -0.33584,0.0988 -0.0988,0 -0.18909,-0.0311 -0.0875,-0.031 -0.16087,-0.0818 -0.0734,-0.0536 -0.12982,-0.12418 -0.0564,-0.0706 -0.0903,-0.1524 l 0.0508,-0.0367 v 0.31891 q 0,0.0367 -0.0254,0.0621 -0.0226,0.0226 -0.0593,0.0226 -0.0367,0 -0.0621,-0.0226 -0.0226,-0.0254 -0.0226,-0.0621 v -1.92193 q 0,-0.0367 0.0226,-0.0593 0.0226,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0226 0.0254,0.0593 v 0.94544 l -0.0395,-0.0226 q 0.0282,-0.0875 0.0818,-0.15804 0.0565,-0.0734 0.12983,-0.127 0.0734,-0.0536 0.16086,-0.0818 0.0875,-0.031 0.18345,-0.031 z m -0.0141,0.15805 q -0.1524,0 -0.26811,0.0762 -0.11572,0.0762 -0.18345,0.20884 -0.0649,0.13264 -0.0649,0.3048 0,0.16933 0.0649,0.30762 0.0677,0.13547 0.18345,0.21449 0.11571,0.0762 0.26811,0.0762 0.14957,0 0.26246,-0.079 0.11571,-0.079 0.18345,-0.21449 0.0677,-0.13829 0.0677,-0.3048 0,-0.17216 -0.0677,-0.3048 -0.0677,-0.13264 -0.18345,-0.20884 -0.11289,-0.0762 -0.26246,-0.0762 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4541" + inkscape:connector-curvature="0" /> + <path + d="m 195.28484,134.77503 q 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 1.2446 q 0,0.2286 -0.0903,0.38383 -0.0903,0.15804 -0.24271,0.23706 -0.1524,0.0819 -0.34713,0.0819 -0.12136,0 -0.22578,-0.0282 -0.1016,-0.0254 -0.16651,-0.0677 -0.0339,-0.0198 -0.0508,-0.048 -0.0169,-0.0282 -0.003,-0.0593 0.0141,-0.0395 0.0423,-0.0536 0.031,-0.0113 0.0621,0.003 0.048,0.0254 0.13829,0.0621 0.0903,0.0367 0.20602,0.0367 0.15522,0 0.26811,-0.0649 0.11571,-0.0649 0.1778,-0.18908 0.0621,-0.12136 0.0621,-0.29069 v -0.2032 l 0.0198,0.0677 q -0.0423,0.0875 -0.12136,0.15522 -0.0762,0.0677 -0.1778,0.10725 -0.0988,0.0367 -0.21167,0.0367 -0.16933,0 -0.28222,-0.0677 -0.11006,-0.0705 -0.16369,-0.19191 -0.0536,-0.12135 -0.0536,-0.28504 v -0.86643 q 0,-0.0339 0.0226,-0.0593 0.0226,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 0.84103 q 0,0.19755 0.0847,0.3048 0.0875,0.10724 0.28222,0.10724 0.12136,0 0.22296,-0.0564 0.1016,-0.0593 0.16651,-0.1524 0.0649,-0.096 0.0649,-0.2032 v -0.84103 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4543" + inkscape:connector-curvature="0" /> + <path + d="m 166.93107,138.93999 q 0.25965,0 0.39229,0.127 0.13547,0.127 0.13547,0.36971 0,0.127 -0.0621,0.23142 -0.0593,0.1016 -0.1778,0.16087 -0.11571,0.0593 -0.29069,0.0621 l 0.006,-0.10442 q 0.0931,0 0.20037,0.0254 0.11007,0.0254 0.20603,0.0875 0.0959,0.0621 0.15804,0.16933 0.0621,0.10442 0.0621,0.26247 0,0.17215 -0.0564,0.28786 -0.0564,0.11289 -0.14957,0.1778 -0.0931,0.0649 -0.20603,0.0931 -0.11006,0.0254 -0.21731,0.0254 h -0.72249 q -0.0593,0 -0.1016,-0.0395 -0.0423,-0.0423 -0.0423,-0.10443 v -1.68769 q 0,-0.0621 0.0423,-0.1016 0.0423,-0.0423 0.1016,-0.0423 z m -0.0395,0.27658 h -0.55598 l 0.0339,-0.0452 v 0.60678 l -0.031,-0.031 h 0.5588 q 0.1016,-0.003 0.1778,-0.0677 0.079,-0.0677 0.079,-0.19755 0,-0.13265 -0.0706,-0.19756 -0.0705,-0.0677 -0.19191,-0.0677 z m 0.0198,0.80715 h -0.56162 l 0.0197,-0.0197 v 0.66604 l -0.0226,-0.0254 h 0.58138 q 0.14676,0 0.23707,-0.0762 0.0903,-0.079 0.0903,-0.23706 0,-0.13265 -0.0536,-0.19756 -0.0536,-0.0649 -0.13265,-0.0875 -0.079,-0.0226 -0.15804,-0.0226 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4545" + inkscape:connector-curvature="0" /> + <path + d="m 169.08527,139.40848 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 1.2192 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0564,0.008 q 0,0.0508 -0.0423,0.11289 -0.0395,0.0621 -0.11007,0.12135 -0.0705,0.0565 -0.16651,0.096 -0.096,0.0367 -0.20602,0.0367 -0.19474,0 -0.34996,-0.0988 -0.15522,-0.1016 -0.24553,-0.27658 -0.0903,-0.17497 -0.0903,-0.39793 0,-0.2286 0.0903,-0.40076 0.0903,-0.17497 0.24271,-0.27375 0.15522,-0.0988 0.34431,-0.0988 0.12136,0 0.22296,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11853,0.13265 0.0423,0.0677 0.0423,0.12982 l -0.0875,0.008 v -0.25683 q 0,-0.0593 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57574,1.27564 q 0.13265,0 0.23143,-0.0677 0.1016,-0.0677 0.15804,-0.18344 0.0565,-0.11854 0.0565,-0.26247 0,-0.14676 -0.0565,-0.26247 -0.0564,-0.11571 -0.15804,-0.18344 -0.0988,-0.0677 -0.23143,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15804,0.18344 -0.0565,0.11571 -0.0565,0.26247 0,0.14393 0.0565,0.26247 0.0564,0.11571 0.15522,0.18344 0.1016,0.0677 0.23424,0.0677 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4547" + inkscape:connector-curvature="0" /> + <path + d="m 170.68692,139.41977 q 0.0621,0 0.1016,0.0423 0.0395,0.0395 0.0395,0.1016 v 1.21356 q 0,0.24835 -0.096,0.40358 -0.0931,0.15522 -0.254,0.22577 -0.15805,0.0734 -0.35842,0.0734 -0.1016,0 -0.2032,-0.0197 -0.1016,-0.0169 -0.16652,-0.0508 -0.0677,-0.031 -0.096,-0.0762 -0.0282,-0.0452 -0.008,-0.0988 0.0198,-0.0677 0.0677,-0.0931 0.048,-0.0226 0.0988,-0.003 0.048,0.0198 0.127,0.0508 0.079,0.031 0.18063,0.031 0.13828,0 0.23424,-0.0452 0.096,-0.0451 0.14393,-0.14111 0.0508,-0.096 0.0508,-0.24836 v -0.19473 l 0.0452,0.0677 q -0.0452,0.0931 -0.11853,0.15523 -0.0734,0.0621 -0.17498,0.0959 -0.0988,0.0339 -0.22014,0.0339 -0.15522,0 -0.26811,-0.0677 -0.11006,-0.0706 -0.16933,-0.19192 -0.0593,-0.12417 -0.0593,-0.28222 v -0.8382 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.762 q 0,0.18627 0.0818,0.27376 0.0818,0.0847 0.24271,0.0847 0.10725,0 0.18627,-0.0452 0.079,-0.0452 0.12418,-0.12418 0.0451,-0.0818 0.0451,-0.18909 v -0.762 q 0,-0.0621 0.0395,-0.1016 0.0423,-0.0423 0.1016,-0.0423 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4549" + inkscape:connector-curvature="0" /> + <path + d="m 172.32685,139.43106 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.74225 q 0,0.29351 -0.16369,0.46002 -0.16369,0.16369 -0.46285,0.16369 -0.29633,0 -0.46002,-0.16369 -0.16087,-0.16651 -0.16087,-0.46002 v -0.74225 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.74225 q 0,0.18344 0.0847,0.27375 0.0875,0.0903 0.254,0.0903 0.16934,0 0.25682,-0.0903 0.0875,-0.0903 0.0875,-0.27375 v -0.74225 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4551" + inkscape:connector-curvature="0" /> + <path + d="m 173.84076,140.91555 q -0.0677,0 -0.11854,-0.0395 -0.0508,-0.0423 -0.0508,-0.10443 v -1.68769 q 0,-0.0621 0.0423,-0.1016 0.0423,-0.0423 0.1016,-0.0423 h 0.79586 q 0.1524,0 0.2794,0.0762 0.127,0.0734 0.2032,0.20602 0.079,0.12983 0.079,0.29916 0,0.11289 -0.0452,0.21731 -0.0452,0.1016 -0.12136,0.18062 -0.0762,0.079 -0.17215,0.11854 l -0.031,-0.0536 q 0.0875,0.0311 0.1524,0.0903 0.0649,0.0564 0.1016,0.13547 0.0395,0.0762 0.0423,0.17498 0.008,0.0875 0.0141,0.14675 0.008,0.0564 0.0226,0.0931 0.0141,0.0367 0.0508,0.0564 0.0508,0.0282 0.0621,0.0847 0.0141,0.0564 -0.0226,0.1016 -0.0254,0.0339 -0.0649,0.0452 -0.0367,0.008 -0.0762,0.003 -0.0395,-0.008 -0.0677,-0.0226 -0.0452,-0.0282 -0.0931,-0.079 -0.0452,-0.0536 -0.0734,-0.14676 -0.0282,-0.0931 -0.0282,-0.24553 0,-0.0706 -0.0226,-0.12136 -0.0226,-0.0508 -0.0621,-0.0818 -0.0395,-0.0339 -0.0931,-0.048 -0.0536,-0.0169 -0.11853,-0.0169 h -0.59832 l 0.0395,-0.0564 v 0.67451 q 0,0.0621 -0.0339,0.10443 -0.0339,0.0395 -0.0931,0.0395 z m 0.0903,-1.00754 h 0.67451 q 0.0649,-0.003 0.12418,-0.0508 0.0621,-0.0508 0.0988,-0.13546 0.0395,-0.0847 0.0395,-0.19191 0,-0.13547 -0.0818,-0.22578 -0.079,-0.0931 -0.18909,-0.0931 h -0.6604 l 0.031,-0.0734 v 0.82973 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4553" + inkscape:connector-curvature="0" /> + <path + d="m 175.82941,140.77161 q 0,0.0621 -0.0395,0.10443 -0.0395,0.0395 -0.1016,0.0395 -0.0593,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -1.20791 q 0,-0.0621 0.0395,-0.1016 0.0423,-0.0423 0.1016,-0.0423 0.0621,0 0.1016,0.0423 0.0395,0.0395 0.0395,0.1016 z m -0.14394,-1.53811 q -0.0818,0 -0.11853,-0.0282 -0.0367,-0.031 -0.0367,-0.1016 v -0.0452 q 0,-0.0705 0.0395,-0.0988 0.0395,-0.0282 0.11854,-0.0282 0.0847,0 0.12135,0.031 0.0367,0.0282 0.0367,0.0959 v 0.0452 q 0,0.0734 -0.0395,0.1016 -0.0367,0.0282 -0.12136,0.0282 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4555" + inkscape:connector-curvature="0" /> + <path + d="m 177.15166,140.6559 q 0.0565,0 0.0931,0.0367 0.0395,0.0367 0.0395,0.0931 0,0.0536 -0.0395,0.0931 -0.0367,0.0367 -0.0931,0.0367 h -0.91157 q -0.0593,0 -0.096,-0.0423 -0.0367,-0.0452 -0.0339,-0.0875 0.003,-0.0339 0.008,-0.0593 0.008,-0.0282 0.0367,-0.0621 l 0.75353,-0.99907 v 0.0339 h -0.62935 q -0.0564,0 -0.096,-0.0367 -0.0367,-0.0395 -0.0367,-0.0931 0,-0.0564 0.0367,-0.0931 0.0395,-0.0367 0.096,-0.0367 h 0.86924 q 0.0536,0 0.0903,0.0423 0.0395,0.0395 0.0339,0.0988 0,0.0254 -0.008,0.0508 -0.006,0.0226 -0.031,0.0536 l -0.74225,0.98778 -0.0113,-0.0169 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4557" + inkscape:connector-curvature="0" /> + <path + d="m 178.77563,139.40848 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 1.2192 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0564,0.008 q 0,0.0508 -0.0423,0.11289 -0.0395,0.0621 -0.11006,0.12135 -0.0706,0.0565 -0.16652,0.096 -0.0959,0.0367 -0.20602,0.0367 -0.19473,0 -0.34995,-0.0988 -0.15523,-0.1016 -0.24554,-0.27658 -0.0903,-0.17497 -0.0903,-0.39793 0,-0.2286 0.0903,-0.40076 0.0903,-0.17497 0.24271,-0.27375 0.15523,-0.0988 0.34432,-0.0988 0.12135,0 0.22295,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11854,0.13265 0.0423,0.0677 0.0423,0.12982 l -0.0875,0.008 v -0.25683 q 0,-0.0593 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57573,1.27564 q 0.13264,0 0.23142,-0.0677 0.1016,-0.0677 0.15805,-0.18344 0.0564,-0.11854 0.0564,-0.26247 0,-0.14676 -0.0564,-0.26247 -0.0565,-0.11571 -0.15805,-0.18344 -0.0988,-0.0677 -0.23142,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15805,0.18344 -0.0564,0.11571 -0.0564,0.26247 0,0.14393 0.0564,0.26247 0.0565,0.11571 0.15522,0.18344 0.1016,0.0677 0.23425,0.0677 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4559" + inkscape:connector-curvature="0" /> + <path + d="m 179.61167,140.77161 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0593,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -1.80057 q 0,-0.0621 0.0423,-0.1016 0.0423,-0.0423 0.1016,-0.0423 0.0621,0 0.0988,0.0423 0.0395,0.0395 0.0395,0.1016 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4561" + inkscape:connector-curvature="0" /> + <path + d="m 181.212,138.8271 q 0.0593,0 0.0988,0.0395 0.0423,0.0395 0.0423,0.10443 v 1.80057 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0565,0.003 q 0,0.0508 -0.0423,0.11571 -0.0395,0.0621 -0.11006,0.12135 -0.0706,0.0593 -0.16651,0.0988 -0.096,0.0367 -0.20603,0.0367 -0.19191,0 -0.34995,-0.0988 -0.15522,-0.1016 -0.24554,-0.27375 -0.0903,-0.17498 -0.0903,-0.40076 0,-0.22578 0.0903,-0.39793 0.0903,-0.17498 0.24272,-0.27376 0.15522,-0.1016 0.34431,-0.1016 0.11853,0 0.22013,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11854,0.13265 0.0452,0.0677 0.0452,0.12982 l -0.0875,0.008 v -0.8382 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57573,1.85702 q 0.13264,0 0.23142,-0.0677 0.1016,-0.0677 0.15805,-0.18344 0.0564,-0.11571 0.0564,-0.26247 0,-0.14676 -0.0564,-0.26247 -0.0565,-0.11571 -0.15805,-0.18344 -0.0988,-0.0677 -0.23142,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15805,0.18344 -0.0564,0.11571 -0.0564,0.26247 0,0.14676 0.0564,0.26247 0.0564,0.11571 0.15805,0.18344 0.1016,0.0677 0.23142,0.0677 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4563" + inkscape:connector-curvature="0" /> + <path + d="m 182.49113,139.40566 q 0.19474,0 0.30198,0.0847 0.10724,0.0819 0.14958,0.22296 0.0452,0.14111 0.0452,0.31044 v 0.74789 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.74789 q 0,-0.0988 -0.0282,-0.18062 -0.0254,-0.0818 -0.0931,-0.12982 -0.0649,-0.048 -0.18345,-0.048 -0.11007,0 -0.19755,0.048 -0.0847,0.048 -0.13265,0.12982 -0.0451,0.0819 -0.0451,0.18062 v 0.74789 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -1.80057 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.77046 l -0.0508,0.0282 q 0.0197,-0.0621 0.0649,-0.127 0.048,-0.0649 0.11571,-0.11853 0.0705,-0.0536 0.15522,-0.0847 0.0847,-0.0339 0.18062,-0.0339 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4565" + inkscape:connector-curvature="0" /> + <path + d="m 184.58544,139.40848 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 1.2192 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0564,0.008 q 0,0.0508 -0.0423,0.11289 -0.0395,0.0621 -0.11007,0.12135 -0.0705,0.0565 -0.16651,0.096 -0.0959,0.0367 -0.20602,0.0367 -0.19473,0 -0.34995,-0.0988 -0.15523,-0.1016 -0.24554,-0.27658 -0.0903,-0.17497 -0.0903,-0.39793 0,-0.2286 0.0903,-0.40076 0.0903,-0.17497 0.24271,-0.27375 0.15523,-0.0988 0.34431,-0.0988 0.12136,0 0.22296,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11854,0.13265 0.0423,0.0677 0.0423,0.12982 l -0.0875,0.008 v -0.25683 q 0,-0.0593 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57573,1.27564 q 0.13264,0 0.23142,-0.0677 0.1016,-0.0677 0.15804,-0.18344 0.0565,-0.11854 0.0565,-0.26247 0,-0.14676 -0.0565,-0.26247 -0.0564,-0.11571 -0.15804,-0.18344 -0.0988,-0.0677 -0.23142,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15805,0.18344 -0.0564,0.11571 -0.0564,0.26247 0,0.14393 0.0564,0.26247 0.0565,0.11571 0.15522,0.18344 0.1016,0.0677 0.23425,0.0677 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4567" + inkscape:connector-curvature="0" /> + <path + d="m 185.8815,139.39719 q 0.20038,0 0.31045,0.0847 0.11006,0.0818 0.1524,0.22295 0.0452,0.13829 0.0452,0.31045 v 0.75635 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.75353 q 0,-0.1016 -0.0282,-0.18062 -0.0282,-0.0819 -0.0988,-0.12982 -0.0677,-0.0508 -0.19191,-0.0508 -0.11571,0 -0.2032,0.0508 -0.0875,0.048 -0.13829,0.12982 -0.048,0.079 -0.048,0.18062 v 0.75353 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -1.19662 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.15805 l -0.0508,0.0282 q 0.0198,-0.0621 0.0677,-0.12418 0.0508,-0.0649 0.12135,-0.11853 0.0706,-0.0565 0.15805,-0.0875 0.0875,-0.0339 0.18626,-0.0339 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4569" + inkscape:connector-curvature="0" /> + <path + d="m 187.76445,140.91555 q -0.0677,0 -0.11853,-0.0395 -0.0508,-0.0423 -0.0508,-0.10443 v -1.68769 q 0,-0.0621 0.0423,-0.1016 0.0423,-0.0423 0.1016,-0.0423 h 0.79587 q 0.1524,0 0.2794,0.0762 0.127,0.0734 0.2032,0.20602 0.079,0.12983 0.079,0.29916 0,0.11289 -0.0452,0.21731 -0.0452,0.1016 -0.12136,0.18062 -0.0762,0.079 -0.17215,0.11854 l -0.031,-0.0536 q 0.0875,0.0311 0.1524,0.0903 0.0649,0.0564 0.1016,0.13547 0.0395,0.0762 0.0423,0.17498 0.008,0.0875 0.0141,0.14675 0.008,0.0564 0.0226,0.0931 0.0141,0.0367 0.0508,0.0564 0.0508,0.0282 0.0621,0.0847 0.0141,0.0564 -0.0226,0.1016 -0.0254,0.0339 -0.0649,0.0452 -0.0367,0.008 -0.0762,0.003 -0.0395,-0.008 -0.0677,-0.0226 -0.0452,-0.0282 -0.0931,-0.079 -0.0452,-0.0536 -0.0734,-0.14676 -0.0282,-0.0931 -0.0282,-0.24553 0,-0.0706 -0.0226,-0.12136 -0.0226,-0.0508 -0.0621,-0.0818 -0.0395,-0.0339 -0.0931,-0.048 -0.0536,-0.0169 -0.11854,-0.0169 h -0.59831 l 0.0395,-0.0564 v 0.67451 q 0,0.0621 -0.0339,0.10443 -0.0339,0.0395 -0.0931,0.0395 z m 0.0903,-1.00754 h 0.67452 q 0.0649,-0.003 0.12417,-0.0508 0.0621,-0.0508 0.0988,-0.13546 0.0395,-0.0847 0.0395,-0.19191 0,-0.13547 -0.0818,-0.22578 -0.079,-0.0931 -0.18909,-0.0931 h -0.6604 l 0.031,-0.0734 v 0.82973 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4571" + inkscape:connector-curvature="0" /> + <path + d="m 190.70393,139.40848 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 1.2192 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0564,0.008 q 0,0.0508 -0.0423,0.11289 -0.0395,0.0621 -0.11007,0.12135 -0.0705,0.0565 -0.16651,0.096 -0.096,0.0367 -0.20602,0.0367 -0.19473,0 -0.34995,-0.0988 -0.15523,-0.1016 -0.24554,-0.27658 -0.0903,-0.17497 -0.0903,-0.39793 0,-0.2286 0.0903,-0.40076 0.0903,-0.17497 0.24271,-0.27375 0.15523,-0.0988 0.34431,-0.0988 0.12136,0 0.22296,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11854,0.13265 0.0423,0.0677 0.0423,0.12982 l -0.0875,0.008 v -0.25683 q 0,-0.0593 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57573,1.27564 q 0.13264,0 0.23142,-0.0677 0.1016,-0.0677 0.15804,-0.18344 0.0564,-0.11854 0.0564,-0.26247 0,-0.14676 -0.0564,-0.26247 -0.0564,-0.11571 -0.15804,-0.18344 -0.0988,-0.0677 -0.23142,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15805,0.18344 -0.0564,0.11571 -0.0564,0.26247 0,0.14393 0.0564,0.26247 0.0564,0.11571 0.15522,0.18344 0.1016,0.0677 0.23425,0.0677 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4573" + inkscape:connector-curvature="0" /> + <path + d="m 192.30559,139.41977 q 0.0621,0 0.1016,0.0423 0.0395,0.0395 0.0395,0.1016 v 1.21356 q 0,0.24835 -0.096,0.40358 -0.0931,0.15522 -0.254,0.22577 -0.15804,0.0734 -0.35842,0.0734 -0.1016,0 -0.2032,-0.0197 -0.1016,-0.0169 -0.16651,-0.0508 -0.0677,-0.031 -0.096,-0.0762 -0.0282,-0.0452 -0.008,-0.0988 0.0197,-0.0677 0.0677,-0.0931 0.048,-0.0226 0.0988,-0.003 0.048,0.0198 0.127,0.0508 0.079,0.031 0.18062,0.031 0.13829,0 0.23424,-0.0452 0.096,-0.0451 0.14394,-0.14111 0.0508,-0.096 0.0508,-0.24836 v -0.19473 l 0.0451,0.0677 q -0.0451,0.0931 -0.11853,0.15523 -0.0734,0.0621 -0.17498,0.0959 -0.0988,0.0339 -0.22013,0.0339 -0.15522,0 -0.26811,-0.0677 -0.11007,-0.0706 -0.16934,-0.19192 -0.0593,-0.12417 -0.0593,-0.28222 v -0.8382 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.762 q 0,0.18627 0.0818,0.27376 0.0819,0.0847 0.24271,0.0847 0.10725,0 0.18627,-0.0452 0.079,-0.0452 0.12418,-0.12418 0.0452,-0.0818 0.0452,-0.18909 v -0.762 q 0,-0.0621 0.0395,-0.1016 0.0423,-0.0423 0.1016,-0.0423 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4575" + inkscape:connector-curvature="0" /> + <path + d="m 193.5,140.94377 q -0.23142,0 -0.4064,-0.096 -0.17215,-0.0988 -0.26811,-0.26811 -0.0931,-0.17215 -0.0931,-0.39229 0,-0.24835 0.0988,-0.42333 0.1016,-0.1778 0.26246,-0.27093 0.16369,-0.096 0.34431,-0.096 0.13547,0 0.25965,0.0565 0.127,0.0536 0.22295,0.1524 0.096,0.0959 0.1524,0.2286 0.0564,0.12982 0.0593,0.28504 -0.003,0.0564 -0.0452,0.0931 -0.0423,0.0367 -0.0988,0.0367 h -1.09502 l -0.0677,-0.23989 h 1.06116 l -0.0536,0.0508 v -0.0705 q -0.008,-0.0988 -0.0677,-0.17216 -0.0593,-0.0762 -0.14675,-0.11571 -0.0847,-0.0423 -0.18063,-0.0423 -0.0847,0 -0.16368,0.0282 -0.079,0.0254 -0.13829,0.0847 -0.0593,0.0593 -0.096,0.15804 -0.0367,0.096 -0.0367,0.23989 0,0.15522 0.0649,0.27093 0.0649,0.11571 0.17498,0.18063 0.11007,0.0621 0.24553,0.0621 0.1016,0 0.16934,-0.0198 0.0677,-0.0226 0.11289,-0.0536 0.0452,-0.031 0.079,-0.0593 0.0451,-0.0254 0.0847,-0.0254 0.0508,0 0.0847,0.0367 0.0339,0.0339 0.0339,0.0818 0,0.0621 -0.0621,0.11289 -0.0762,0.0734 -0.21167,0.12982 -0.13264,0.0565 -0.2794,0.0565 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4577" + inkscape:connector-curvature="0" /> + <path + d="m 194.35024,140.68412 q -0.0254,-0.0395 -0.0226,-0.0903 0.003,-0.0536 0.0593,-0.0903 0.0395,-0.0254 0.0818,-0.0198 0.0452,0.003 0.0847,0.0423 0.079,0.0875 0.17498,0.13829 0.0988,0.0508 0.23707,0.0508 0.0564,-0.003 0.11571,-0.0169 0.0593,-0.0169 0.1016,-0.0565 0.0423,-0.0423 0.0423,-0.12135 0,-0.0706 -0.0452,-0.11289 -0.0452,-0.0423 -0.11853,-0.0677 -0.0734,-0.0282 -0.15804,-0.0508 -0.0903,-0.0254 -0.18345,-0.0564 -0.0903,-0.0311 -0.16369,-0.079 -0.0734,-0.0508 -0.12135,-0.12983 -0.0452,-0.079 -0.0452,-0.19473 0,-0.13264 0.0734,-0.2286 0.0762,-0.096 0.19473,-0.14958 0.12136,-0.0536 0.26247,-0.0536 0.0818,0 0.17216,0.0226 0.0903,0.0197 0.17497,0.0649 0.0847,0.0452 0.14676,0.11853 0.0282,0.0367 0.031,0.0875 0.006,0.0508 -0.0451,0.0903 -0.0339,0.0282 -0.0819,0.0254 -0.048,-0.003 -0.079,-0.031 -0.0536,-0.0677 -0.13829,-0.10442 -0.0847,-0.0395 -0.19191,-0.0395 -0.0536,0 -0.11289,0.0169 -0.0564,0.0141 -0.096,0.0536 -0.0395,0.0395 -0.0395,0.11571 0,0.0706 0.0452,0.11289 0.048,0.0423 0.12418,0.0706 0.0762,0.0282 0.16651,0.0508 0.0875,0.0226 0.17216,0.0536 0.0875,0.031 0.15522,0.0818 0.0705,0.048 0.11289,0.127 0.0452,0.0762 0.0452,0.19474 0,0.13829 -0.0818,0.23706 -0.079,0.096 -0.2032,0.14676 -0.12136,0.0508 -0.25682,0.0508 -0.16087,0 -0.32174,-0.0565 -0.15804,-0.0593 -0.26811,-0.2032 z" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + id="path4579" + inkscape:connector-curvature="0" /> + </g> + <g + id="g9220" + transform="translate(10.583333)" /> + <path + style="fill:none;stroke:#9fe4e5;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 73.351583,202.00571 -7.202916,4.58367 c 0,0 -0.327403,0.42095 -0.280633,0.74836 0.04677,0.3274 0.09355,2.0112 0.09355,2.0112" + id="path3412" + inkscape:connector-curvature="0" /> + <g + aria-label="inkscape" + transform="matrix(1,0.22954759,0,1,8.8041311,6.4217559)" + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffcc00;fill-opacity:1;stroke:#ffcc00;stroke-width:0.529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="text1578-9-2"> + <path + id="path2011-5-7" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.272321;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 95.744519,191.24191 -0.203081,0.0493 v 0.0351 c -0.312989,0.0947 -0.621758,0.20352 -0.910029,0.38046 l -0.0021,0.002 c -0.334989,0.20967 -0.634349,0.44937 -0.89658,0.71895 -7.94e-4,7.1e-4 -5.3e-4,9.2e-4 -0.0021,0.002 -5.29e-4,6.5e-4 -0.0011,0.001 -0.0021,0.002 -0.113159,0.11211 -0.179379,0.223 -0.273367,0.33405 -0.0608,-0.13562 -0.0611,-0.30556 -0.179322,-0.39654 -0.240929,-0.1947 -0.566621,-0.24707 -0.88883,-0.1701 -0.322588,0.077 -0.603309,0.26196 -0.810811,0.52925 -5.29e-4,6.5e-4 5.3e-4,9.4e-4 0,0.002 -0.20801,0.25834 -0.319868,0.5652 -0.319868,0.89043 v 9.48676 c 0,0.33405 0.12097,0.64067 0.366901,0.82787 0.243318,0.18523 0.565499,0.22717 0.886769,0.15043 0.32348,-0.0773 0.603129,-0.26283 0.8108,-0.53132 0.20697,-0.25793 0.319879,-0.56604 0.319879,-0.89043 v -2.55643 c 0.306062,0.15198 0.650311,0.25167 1.031462,0.30221 0.39751,0.0527 0.818819,0.0249 1.257797,-0.0799 0.743231,-0.17748 1.41478,-0.53199 2.001949,-1.05279 0.594651,-0.53123 1.065993,-1.17442 1.410224,-1.92362 0.356888,-0.76656 0.006,-2.00297 0.006,-2.88433 0,-0.87973 0.352359,-1.22416 -0.0176,-1.83255 l -0.0021,-0.002 c -0.355171,-0.6022 -0.858835,-1.03903 -1.486193,-1.28303 -5.3e-4,-1.4e-4 -0.0021,2.8e-4 -0.0021,1e-5 -0.624758,-0.25922 -1.332368,-0.29189 -2.095468,-0.10966 z m -0.10903,2.27347 c 0.41329,-0.0987 0.738838,-0.0767 1.005618,0.043 l 0.0021,2e-5 0.0021,0.002 c 0.286412,0.12254 0.49865,0.31917 0.659911,0.62108 l 0.004,0.004 0.0021,0.006 c 0.167269,0.2858 0.25786,0.65106 0.25786,1.11128 0,0.44918 -0.0898,0.87776 -0.271812,1.29488 l -0.0021,-2e-5 v 0.002 c -0.171659,0.40338 -0.410339,0.74106 -0.722439,1.02366 l -0.0021,0.002 c -0.29718,0.27528 -0.645549,0.45959 -1.058849,0.55829 -0.413308,0.0987 -0.745778,0.079 -1.025258,-0.0406 -0.286081,-0.12239 -0.504462,-0.32282 -0.67542,-0.62166 -0.16152,-0.31363 -0.246491,-0.68794 -0.246491,-1.13662 0,-0.46207 0.0851,-0.88361 0.255799,-1.27519 0.182012,-0.40661 0.42836,-0.74878 0.740521,-1.03143 0.30848,-0.27932 0.661059,-0.46366 1.074351,-0.56236 z m 9.275241,-4.38619 c -0.13643,0.0321 -0.27402,0.072 -0.4129,0.1196 -0.7193,0.24623 -1.39594,0.66419 -2.02726,1.24412 -0.6341,0.58246 -1.15013,1.28495 -1.54513,2.1034 v 0.002 c -0.38903,0.81398 -1.640209,1.42202 -1.640209,2.38569 0,0.83209 1.237589,1.82828 1.612819,2.39344 l 0.002,0.002 v 0.002 c 0.38635,0.5609 0.94921,0.93401 1.64279,1.0993 l 0.002,-1e-5 0.004,1.1e-4 c 0.60879,0.12981 1.32798,-0.002 2.08049,-0.21299 v 0.0822 l 0.3514,-0.11942 c 0.53969,-0.18474 1.06143,-0.44933 1.56424,-0.79263 v -0.002 l 0.002,-1e-5 c 0.49687,-0.34982 0.88903,-0.69251 1.1777,-1.03515 0.31159,-0.35255 0.49816,-0.70949 0.49816,-1.07811 0,-0.26936 -0.12915,-0.52787 -0.34778,-0.67568 -0.22221,-0.15904 -0.51686,-0.17294 -0.79272,-0.0785 -0.20704,0.0709 -0.40603,0.19606 -0.60926,0.36723 l -0.004,0.002 -0.002,0.002 c -0.11805,0.1048 -0.24952,0.23052 -0.39636,0.3752 l 0.002,-0.004 c -0.11482,0.10999 -0.28021,0.2364 -0.4961,0.36916 -0.20195,0.12418 -0.49188,0.25211 -0.86144,0.37861 -0.37504,0.12839 -0.71445,0.15811 -1.03508,0.0996 -0.30173,-0.0701 -0.53807,-0.22154 -0.74053,-0.47648 -0.0591,-0.0828 -0.0515,-0.2635 -0.0935,-0.37283 l 4.79506,-1.64071 c 0.29425,-0.10073 0.55299,-0.28366 0.76532,-0.53328 0.21654,-0.25459 0.34472,-0.55198 0.3576,-0.86498 v -0.006 -0.006 c 0,-0.58909 -0.11538,-1.11967 -0.35191,-1.58165 v -0.002 c -0.22309,-0.4585 -0.53814,-0.83183 -0.93534,-1.10562 -0.39854,-0.28486 -0.86315,-0.45664 -1.37718,-0.51535 -0.38152,-0.0469 -0.77922,-0.0204 -1.18856,0.0759 z m -0.032,2.26303 5.3e-4,-1.2e-4 c 0.20158,-0.0457 0.38509,-0.0506 0.55604,-0.0207 l 0.008,2.3e-4 0.006,0.002 c 0.24372,0.0297 0.42261,0.11094 0.56482,0.24397 l 0.004,0.002 0.002,0.004 c 0.11894,0.10323 0.16496,0.25128 0.19533,0.42593 l -3.35121,1.14805 c 0.10083,-0.29056 0.21723,-0.55515 0.37103,-0.76161 0.17818,-0.23918 0.38495,-0.43624 0.62684,-0.59348 0.24976,-0.16233 0.5192,-0.29167 0.80873,-0.39079 0.0713,-0.0244 0.14055,-0.0443 0.20774,-0.0596 z m -14.123786,0.91961 -0.326081,0.0785 c -0.32258,0.077 -0.6033,0.26196 -0.8108,0.52924 -5.29e-4,6.5e-4 5.3e-4,9.4e-4 0,0.002 -0.125621,0.15602 -0.141049,0.35345 -0.19327,0.53891 -0.02199,-0.0117 -0.0321,-0.0298 -0.0548,-0.0412 -0.301419,-0.15894 -0.650351,-0.2602 -1.044901,-0.30843 -0.408548,-0.0499 -0.8481,-0.0164 -1.316199,0.0954 -0.73388,0.17526 -1.403881,0.5349 -1.999871,1.06678 -0.596048,0.52165 -1.073349,1.16833 -1.42783,1.92972 -0.34654,0.75418 -0.51934,1.57626 -0.51934,2.45654 0,0.8704 0.17316,1.6228 0.531231,2.24226 v 0.004 l 0.0021,0.002 c 0.366509,0.60106 0.875441,1.04081 1.5043,1.2949 l 0.0021,1e-5 0.0021,0.002 c 0.632801,0.2444 1.338929,0.26957 2.091859,0.0898 0.417621,-0.0997 0.805731,-0.25856 1.16014,-0.47611 l 0.0021,2e-5 v -0.002 c 0.354189,-0.22411 0.66449,-0.46438 0.927589,-0.72452 0.0908,-0.0898 0.140682,-0.17452 0.219112,-0.26217 0.0589,0.11605 0.0523,0.26831 0.15399,0.35171 l 0.004,0.002 0.004,0.004 c 0.243321,0.18525 0.565502,0.22718 0.886769,0.15043 0.321263,-0.0767 0.59994,-0.25308 0.808731,-0.51172 l 0.0021,-0.004 0.0021,-0.002 c 0.206039,-0.26737 0.318331,-0.57816 0.318331,-0.90403 v -6.54536 c 0,-0.33405 -0.121491,-0.64261 -0.367421,-0.82981 -0.15384,-0.11712 -0.36335,-0.0868 -0.560171,-0.0957 z m -3.327961,3.04131 c 0.4133,-0.0987 0.74577,-0.0769 1.02526,0.0427 0.286409,0.12254 0.499171,0.31957 0.660419,0.62148 l 0.0021,0.002 v 0.004 c 0.16918,0.29794 0.25994,0.66866 0.25994,1.12889 0,0.44917 -0.0901,0.87154 -0.271298,1.27719 v 0.002 0.004 c -0.171662,0.40339 -0.412401,0.74052 -0.724512,1.02311 -0.30848,0.27932 -0.661048,0.46624 -1.074348,0.56494 -0.40205,0.096 -0.730951,0.0729 -1.01182,-0.0473 -0.28607,-0.12239 -0.502912,-0.32007 -0.67387,-0.61891 -0.161081,-0.30229 -0.248041,-0.67098 -0.248041,-1.12128 0,-0.46139 0.0868,-0.89007 0.25786,-1.29271 2.49e-4,-5.9e-4 -2.49e-4,-0.001 0,-0.002 0.181951,-0.40594 0.426691,-0.74503 0.73846,-1.02734 0.3092,-0.27998 0.65835,-0.46468 1.0604,-0.56071 z m -7.07974,-2.59992 c -1.95498,-0.12212 -2.961793,0.99986 -3.292483,1.19806 -0.64934,0.38519 0.06989,3.73349 -0.301477,4.42163 v 0.002 l -0.0021,-1e-5 c -0.363141,0.68227 -0.541052,1.4706 -0.541052,2.35196 0,0.83965 0.169101,1.61008 0.507982,2.29876 v 0.002 -1.05633 c 0.34985,0.68877 0.849108,1.24402 1.486209,1.65045 l 0.0021,1e-5 0.0021,0.002 c 0.644031,0.39975 1.402631,0.59589 2.25774,0.59589 0.56669,0 1.09677,-0.0631 1.58595,-0.19352 l 0.0021,-0.002 0.0021,2e-5 c 0.49516,-0.13995 0.903751,-0.31828 1.22628,-0.54866 l 0.0021,-0.002 0.0021,-0.002 c 0.329149,-0.24687 0.53898,-0.56753 0.53898,-0.92419 0,-0.29748 -0.0934,-0.57518 -0.279051,-0.78913 -0.19558,-0.23515 -0.496329,-0.35732 -0.820621,-0.35733 -0.26302,10e-6 -0.497099,0.0518 -0.677479,0.19944 -0.0979,0.0801 -0.213299,0.15825 -0.34209,0.23252 -0.092,0.0455 -0.21939,0.0856 -0.38448,0.11308 -0.166089,0.0277 -0.375912,0.0433 -0.62321,0.0433 -0.421081,0 -0.777761,-0.10118 -1.095549,-0.30094 -0.31147,-0.20207 -0.556401,-0.46733 -0.74259,-0.81036 -0.174882,-0.35126 -0.263552,0.30779 -0.263552,-0.15086 0,-0.47127 0.0892,-0.86931 0.263552,-1.20875 l 0.0021,-0.002 c 0.175628,-0.35125 0.41846,-0.62098 0.73846,-0.8227 7.94e-4,-4.4e-4 0.0011,-0.001 0.0021,-0.002 0.323302,-0.19663 0.718722,-0.29885 1.205092,-0.29885 0.0679,0 0.213868,0.0173 0.411859,0.0569 l 0.008,0.002 0.006,1.6e-4 c 0.19802,0.0283 0.33106,0.0755 0.38086,0.10533 l 0.006,0.002 0.004,0.002 c 0.0992,0.0541 0.180491,0.11102 0.245981,0.16833 0.100129,0.0876 0.213839,0.16311 0.335899,0.22417 l 0.01191,0.006 0.0155,0.006 c 0.152191,0.0554 0.320881,0.0782 0.50797,0.0782 0.302451,0 0.58787,-0.13502 0.757579,-0.37544 l 0.0021,-0.004 0.0021,-0.002 c 0.14887,-0.22331 0.230481,-0.4753 0.230481,-0.73452 0,-0.37851 -0.16859,-0.72711 -0.46096,-0.98456 -0.2785,-0.26403 -0.65491,-0.45477 -1.122921,-0.58559 l -0.0021,-1e-5 c -0.46327,-0.13216 -0.997699,-0.19571 -1.603521,-0.1957 l -5.29e-4,1.2e-4 c -0.417431,0 2.924701,-2.66246 2.548252,-2.56357 z m -8.960044,0.84203 c -0.260204,0.0524 -0.514797,0.13085 -0.762747,0.23555 l -0.0021,-5e-5 c -0.489411,0.21134 -2.408337,1.54271 -2.724813,1.93831 -0.327224,0.40904 1.017941,-0.1092 1.017941,0.45596 0,0.48796 0.09587,0.91418 0.300757,1.2637 0.194188,0.33126 0.449953,0.60485 0.761709,0.81269 l 0.0016,0.002 0.0041,0.002 c 0.296624,0.18676 0.618781,0.33949 0.966867,0.45915 l 0.0021,0.002 0.0021,5e-5 c 0.34345,0.11448 0.676585,0.21867 0.999941,0.31255 l 0.0021,4e-5 0.0036,0.002 c 0.302567,0.0807 0.57304,0.165 0.810806,0.25416 l 0.0021,0.002 c 0.235553,0.0848 0.412253,0.18491 0.534853,0.29116 0.0989,0.0857 0.142621,0.1751 0.142621,0.34191 0,0.21975 -0.0534,0.33396 -0.1328,0.40824 -0.10015,0.0924 -0.21345,0.15134 -0.357608,0.18337 -0.168336,0.0277 -0.321424,0.0451 -0.458888,0.0547 -0.46223,-8.3e-4 -0.831862,-0.0777 -1.113109,-0.21835 -0.301498,-0.15075 -0.592936,-0.36472 -0.874883,-0.64667 -0.204281,-0.20426 -0.446817,-0.33466 -0.70745,-0.35178 -0.239626,-0.0247 -0.480075,0.0308 -0.687295,0.16041 l -0.0021,-5e-5 -0.0021,0.002 c -0.302913,0.19386 -1.855467,1.1357 -1.870188,1.45965 -0.01225,0.26945 1.390608,-0.13935 1.534292,0.0618 l 0.0021,0.002 0.0021,0.002 c 0.430468,0.57396 0.984469,0.9871 1.640725,1.22069 l 0.0021,5e-5 0.0021,0.002 c 0.634008,0.21491 1.271456,0.32224 1.909961,0.32225 0.518605,0 0.760754,-0.0439 1.25444,-0.24132 l 0.645123,-0.35991 0.34788,-0.20269 c 0.499948,-0.21109 0.203081,-0.0165 0.539541,-0.42028 0.3488,-0.41856 0.525549,-0.93793 0.525549,-1.51591 0,-0.48595 -0.0885,-0.90328 -0.283188,-1.24395 -0.183002,-0.33083 -0.4274,-0.60606 -0.728642,-0.8146 -0.287919,-0.19934 -0.602419,-0.35975 -0.943089,-0.48063 -0.32608,-0.11571 -0.648086,-0.21601 -0.964803,-0.30046 l 0.0021,0.002 c -0.292724,-0.0808 -0.569812,-0.16153 -0.83199,-0.24207 l -0.0021,-0.002 c -0.230659,-0.0833 -0.403715,-0.18092 -0.525553,-0.28502 -0.100947,-0.0948 -0.148312,-0.19786 -0.148312,-0.37679 0,-0.21202 0.04884,-0.30578 0.107486,-0.3554 l 0.0057,-0.004 0.0041,-0.004 c 0.09994,-0.0923 0.202435,-0.14109 0.329694,-0.16353 l 0.0062,-0.002 0.0057,-0.002 c 0.170482,-0.0378 0.32199,-0.0544 0.453202,-0.0544 0.350684,0 0.64606,0.0601 0.894519,0.17552 l 0.0021,0.002 c 0.265922,0.1192 0.465063,0.27344 0.611333,0.46274 l 0.01339,0.0176 -0.426469,1.37478 c 0.423828,-0.24186 0.90668,-0.62735 1.22315,-0.8372 0.316469,-0.20986 0.415439,-0.30388 0.61776,-0.4657 0.261229,-0.21147 0.42023,-0.50798 0.390679,-0.81831 -0.0244,-0.25628 -0.10635,-0.49328 -0.250119,-0.68932 l -0.0021,-0.002 -0.004,-0.004 c -0.23836,-0.30647 0.04744,-1.81915 -0.30185,-2.00055 -0.313774,-0.83447 -1.061005,-1.53032 -2.06789,-1.16344 -0.368179,-0.0866 -0.311762,1.90209 -0.654296,1.90209 l -5.3e-4,1.2e-4 c -0.269827,0 -0.53561,0.0264 -0.795814,0.0788 z m -9.773047,-4.13142 c -0.23481,0.0466 -0.421443,0.14954 -0.748408,0.34235 -0.326964,0.19281 -1.49834,2.00822 -1.539083,2.33933 l -1.033222,8.39674 c 0.04567,0.31218 -0.02194,0.80012 0.197086,1.03203 l 0.415391,0.59379 0.825681,0.26105 c 0.223052,0.22305 1.068303,0.25875 1.394169,0.25875 0.325866,0 1.357789,-0.32742 1.580841,-0.55046 l 0.0016,-0.003 0.0041,-0.003 c 0.219025,-0.23191 0.33383,-0.53727 0.33383,-0.86315 v -1.50946 l 0.484725,-0.44561 0.999902,2.22389 0.608725,0.44511 c 0.227626,0.25 1.121551,0.35576 1.455175,0.35576 0.276865,0 0.956017,0.0107 1.19592,-0.18119 l 0.0021,4e-5 v -0.002 c 0.267893,-0.21687 1.14963,-1.03829 1.14963,-1.37772 0,-0.32404 -0.858496,-0.122 -1.091236,-0.36788 l -0.0021,-0.002 -2.52336,-2.74821 2.134753,-1.96281 c 0.28516,-0.24951 0.460955,-0.55863 0.460955,-0.89439 0,-0.26898 -0.127164,-0.52306 -0.330214,-0.74999 -0.2149,-0.24019 -1.020597,-2.69941 -1.330707,-2.69941 -0.324917,0 -0.407529,0.75719 -0.52604,0.87569 -0.118511,0.1185 -2.172265,1.42165 -2.172265,1.42165 l -0.515919,3.11532 v -6.1172 c 0,-0.32432 -0.11645,-0.62531 -0.337448,-0.84806 -0.221348,-0.23253 -0.525976,-0.35904 -0.853694,-0.35905 -0.08193,0 -0.162542,0.008 -0.240811,0.0232 z m -9.052679,0.37113 c -0.147468,0.0497 -0.28258,0.13037 -0.396356,0.24033 -0.227304,0.21004 -1.750408,1.01059 -1.68236,1.31206 1.679796,1.14975 -0.266492,6.10739 0.05381,6.27807 0.325261,0.0273 3.088918,0.85408 3.318364,0.64393 l 0.0036,-0.002 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52351 0.343649,-0.84938 v -3.96104 c 0,-0.30299 0.06213,-0.55131 0.181901,-0.76367 0.129622,-0.22143 0.302517,-0.38435 0.536917,-0.50411 0.23631,-0.11478 0.53517,-0.16454 0.91209,-0.13288 0.388876,0.0327 0.661032,0.13282 0.83199,0.27152 0.187174,0.15186 0.306403,0.33438 0.375171,0.57224 l 0.0021,0.006 0.0021,0.004 c 0.08236,0.24485 -2.427774,1.07763 -2.414834,1.39076 0.05612,1.35802 -0.483681,3.08202 0.652002,3.77701 0.249336,0.15258 2.003706,0.26755 2.217585,0.51199 l 0.0021,0.002 0.0021,0.004 c 0.217411,0.23568 0.641096,0.95424 0.966358,0.98157 0.32526,0.0273 0.507448,-0.64457 0.736897,-0.85475 l 0.0036,-0.004 0.0021,-0.002 c 0.224888,-0.21922 0.343648,-0.52196 0.343648,-0.84783 v -3.96102 c 0,-0.66949 -0.08001,-2.34651 -0.241845,-2.91174 -0.156223,-0.5914 -0.45897,-0.0349 -0.898652,-0.4221 -0.44954,-0.40451 -1.086806,-0.62625 -1.886707,-0.69346 l -0.287183,-0.0229 v 0.0512 c -0.268085,0.002 -0.537544,7.9e-4 -0.780831,0.0723 -0.322408,0.0846 -0.617292,0.21119 -0.879017,0.38264 -0.182168,0.11934 -0.328222,0.26307 -0.478522,0.4044 -0.04759,-0.21578 -0.08313,-0.43877 -0.234613,-0.60347 -2.02e-4,-2.1e-4 2.02e-4,-0.002 0,-0.002 -0.215738,-0.24375 -0.511486,-0.39267 -0.837676,-0.42008 l -5.29e-4,-4.1e-4 c -0.163536,-0.0138 -0.323305,0.005 -0.470773,0.0548 z m -4.574197,2.37103 c -0.139697,0.0833 -0.149462,0.0941 -0.525743,0.35633 -0.376281,0.26222 -1.417364,0.94803 -1.278241,1.20906 -0.303144,1.57591 0.926424,5.67035 1.307049,5.68487 0.340289,-0.0582 1.297967,0.01 1.482246,-0.24139 l 1.030677,-0.54915 0.415291,-0.54463 c 0.177413,-0.25796 0.806523,-1.6265 0.727331,-1.92442 l -1.175155,-3.28513 c -0.102081,-0.28537 -0.271104,-0.54594 -0.550511,-0.70583 -0.280998,-0.16873 -0.620166,-0.22995 -0.962384,-0.17139 -0.171113,0.0292 -0.330993,0.0874 -0.470711,0.17062 z m -0.725337,-2.63936 c -0.148251,0.0583 -0.3179,0.12683 -0.563683,0.25871 -0.245782,0.13188 -1.64173,1.42327 -1.303827,1.28085 2.803588,-1.19832 -0.678326,1.8305 1.56704,1.441 0.299693,0.44372 2.072378,-0.926 2.225039,-1.28403 l 0.0049,-0.005 0.0037,-0.003 c 0.221628,-0.21689 0.24657,-0.52689 0.162782,-0.84209 l -0.07119,-0.26779 c -0.08091,-0.30438 -0.243875,-0.55397 -0.516276,-0.67271 -0.270745,-0.11804 -0.597633,-0.10853 -1.004059,-0.039 -0.187581,0.0321 -0.356223,0.0746 -0.504543,0.13266 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccsscccscccccscccccccccccccsccccccccscccccccccscccccccccccccsccccccccccccccccscccccccccccccccccccccccccccccccscccccccccccccccccccssccccccccscccccccsccccccccccsccccccsccccccscccccsccsccccsccccccccccscccscccccccccccscccccccccccccscccccccccccccccccccccsccccccccsccccccscccccccccccccccccccsccccscccsccccscccsccccscssccscccccccccccsscccccccsscccccccssccccccccccccccccccccccsccccccccccccccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1666);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 47.199991,187.96019 c -0.148251,0.0583 -0.3179,0.12683 -0.563683,0.25871 -0.245782,0.13188 -1.64173,1.42327 -1.303827,1.28085 0.881898,0.64975 1.140416,0.5208 1.56704,1.441 0.299693,0.44372 2.072378,-0.926 2.225039,-1.28403 l 0.0049,-0.005 0.0037,-0.003 c 0.221626,-0.21689 0.246568,-0.52689 0.16278,-0.84209 l -0.07119,-0.26779 c -0.08091,-0.30438 -0.243875,-0.55397 -0.516276,-0.67271 -0.270745,-0.11804 -0.597633,-0.10853 -1.004059,-0.039 -0.187581,0.0321 -0.356223,0.0746 -0.504543,0.13266 z" + id="path2027" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czccccccccccc" /> + <path + id="path2011-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.272321;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 96.936309,192.44966 -0.20308,0.0493 v 0.0351 c -0.31299,0.0947 -0.62176,0.20352 -0.91003,0.38046 l -0.002,0.002 c -0.33499,0.20967 -0.63435,0.44937 -0.89658,0.71895 -8e-4,7.1e-4 -5.3e-4,9.1e-4 -0.002,0.002 -5.3e-4,6.5e-4 -10e-4,9.9e-4 -0.002,0.002 -0.11316,0.11211 -0.17938,0.223 -0.27337,0.33405 -0.0608,-0.13562 -0.0611,-0.30556 -0.17932,-0.39654 -0.24093,-0.1947 -0.56662,-0.24707 -0.88883,-0.1701 -0.32259,0.077 -0.60331,0.26196 -0.81081,0.52925 -5.2e-4,6.5e-4 5.3e-4,9.3e-4 0,0.002 -0.20801,0.25834 -0.31987,0.5652 -0.31987,0.89043 v 9.48676 c 0,0.33405 0.12097,0.64067 0.3669,0.82787 0.24332,0.18523 0.5655,0.22717 0.88677,0.15043 0.32348,-0.0773 0.60313,-0.26283 0.8108,-0.53132 0.20697,-0.25793 0.31988,-0.56604 0.31988,-0.89043 v -2.55643 c 0.30606,0.15198 0.65031,0.25167 1.03146,0.30221 0.39751,0.0527 0.81882,0.0249 1.2578,-0.0799 0.743229,-0.17748 1.414779,-0.53199 2.001948,-1.05279 0.59465,-0.53123 1.065993,-1.17442 1.410223,-1.92362 0.35689,-0.76656 0.006,-2.00297 0.006,-2.88433 0,-0.87973 0.35236,-1.22416 -0.0176,-1.83255 l -0.002,-0.002 c -0.35517,-0.6022 -0.858833,-1.03903 -1.486193,-1.28303 -5.3e-4,-1.4e-4 -0.002,2.6e-4 -0.002,-1e-5 -0.624759,-0.25922 -1.332369,-0.29189 -2.095468,-0.10966 z m -0.10903,2.27347 c 0.41329,-0.0987 0.738839,-0.0767 1.005619,0.043 l 0.002,5e-5 0.002,0.002 c 0.28641,0.12254 0.49865,0.31917 0.65991,0.62108 l 0.004,0.004 0.002,0.006 c 0.16727,0.2858 0.25786,0.65106 0.25786,1.11128 0,0.44918 -0.0898,0.87776 -0.27181,1.29488 l -0.002,-5e-5 v 0.002 c -0.17166,0.40338 -0.41034,0.74106 -0.72244,1.02366 l -0.002,0.002 c -0.29718,0.27528 -0.645549,0.45959 -1.058849,0.55829 -0.41331,0.0987 -0.74578,0.079 -1.02526,-0.0406 -0.28608,-0.12239 -0.50446,-0.32282 -0.67542,-0.62166 -0.16152,-0.31363 -0.24649,-0.68794 -0.24649,-1.13662 0,-0.46207 0.0851,-0.88361 0.2558,-1.27519 0.18201,-0.40661 0.42836,-0.74878 0.74052,-1.03143 0.30848,-0.27932 0.66106,-0.46366 1.07435,-0.56236 z m 9.275241,-4.38619 c -0.13643,0.0321 -0.27402,0.072 -0.4129,0.1196 -0.7193,0.24623 -1.39594,0.66419 -2.02726,1.24412 -0.6341,0.58246 -1.15013,1.28495 -1.54513,2.1034 v 0.002 c -0.38903,0.81398 -1.64021,1.42202 -1.64021,2.38569 0,0.83209 1.23759,1.82828 1.61282,2.39344 l 0.002,0.002 v 0.002 c 0.38635,0.5609 0.94921,0.93401 1.64279,1.0993 l 0.002,2e-5 0.004,1.1e-4 c 0.60879,0.12981 1.32798,-0.002 2.08049,-0.21299 v 0.0822 l 0.3514,-0.11942 c 0.53969,-0.18474 1.06143,-0.44933 1.56424,-0.79263 v -0.002 l 0.002,2e-5 c 0.49687,-0.34982 0.88903,-0.69251 1.1777,-1.03515 0.31159,-0.35255 0.49816,-0.70949 0.49816,-1.07811 0,-0.26936 -0.12915,-0.52787 -0.34778,-0.67568 -0.22221,-0.15904 -0.51686,-0.17294 -0.79272,-0.0785 -0.20704,0.0709 -0.40603,0.19606 -0.60926,0.36723 l -0.004,0.002 -0.002,0.002 c -0.11805,0.1048 -0.24952,0.23052 -0.39636,0.3752 l 0.002,-0.004 c -0.11482,0.10999 -0.28021,0.2364 -0.4961,0.36916 -0.20195,0.12418 -0.49188,0.25211 -0.86144,0.37861 -0.37504,0.12839 -0.71445,0.15811 -1.03508,0.0996 -0.30173,-0.0701 -0.53807,-0.22154 -0.74053,-0.47648 -0.0591,-0.0828 -0.0515,-0.2635 -0.0935,-0.37283 l 4.79506,-1.64071 c 0.29425,-0.10073 0.55299,-0.28366 0.76532,-0.53328 0.21654,-0.25459 0.34472,-0.55198 0.3576,-0.86498 v -0.006 -0.006 c 0,-0.58909 -0.11538,-1.11967 -0.35191,-1.58165 v -0.002 c -0.22309,-0.4585 -0.53814,-0.83183 -0.93534,-1.10562 -0.39854,-0.28486 -0.86315,-0.45664 -1.37718,-0.51535 -0.38152,-0.0469 -0.77922,-0.0204 -1.18856,0.0759 z m -0.032,2.26303 5.3e-4,-1.2e-4 c 0.20158,-0.0457 0.38509,-0.0506 0.55604,-0.0207 l 0.008,2.3e-4 0.006,0.002 c 0.24372,0.0297 0.42261,0.11094 0.56482,0.24397 l 0.004,0.002 0.002,0.004 c 0.11894,0.10323 0.16496,0.25128 0.19533,0.42593 l -3.35121,1.14805 c 0.10083,-0.29056 0.21723,-0.55515 0.37103,-0.76161 0.17818,-0.23918 0.38495,-0.43624 0.62684,-0.59348 0.24976,-0.16233 0.5192,-0.29167 0.80873,-0.39079 0.0713,-0.0244 0.14055,-0.0443 0.20774,-0.0596 z m -14.123788,0.91961 -0.32608,0.0785 c -0.32258,0.077 -0.6033,0.26196 -0.8108,0.52924 -5.3e-4,6.5e-4 5.3e-4,9.4e-4 0,0.002 -0.12562,0.15602 -0.14105,0.35345 -0.19327,0.53891 -0.022,-0.0117 -0.0321,-0.0298 -0.0548,-0.0412 -0.30142,-0.15894 -0.65035,-0.2602 -1.0449,-0.30843 -0.40855,-0.0499 -0.8481,-0.0164 -1.3162,0.0954 -0.73388,0.17526 -1.40388,0.5349 -1.99987,1.06678 -0.59605,0.52165 -1.07335,1.16833 -1.42783,1.92972 -0.34654,0.75418 -0.51934,1.57626 -0.51934,2.45654 0,0.8704 0.17316,1.6228 0.53123,2.24226 v 0.004 l 0.002,0.002 c 0.36651,0.60106 0.87544,1.04081 1.5043,1.2949 l 0.002,5e-5 0.002,0.002 c 0.6328,0.2444 1.33893,0.26957 2.09186,0.0898 0.41762,-0.0997 0.80573,-0.25856 1.16014,-0.47611 l 0.002,4e-5 v -0.002 c 0.35419,-0.22411 0.66449,-0.46438 0.92759,-0.72452 0.0908,-0.0898 0.14068,-0.17452 0.21911,-0.26217 0.0589,0.11605 0.0523,0.26831 0.15399,0.35171 l 0.004,0.002 0.004,0.004 c 0.24332,0.18525 0.5655,0.22718 0.88677,0.15043 0.32126,-0.0767 0.59994,-0.25308 0.80873,-0.51172 l 0.002,-0.004 0.002,-0.002 c 0.20604,-0.26737 0.31833,-0.57816 0.31833,-0.90403 v -6.54535 c 0,-0.33405 -0.12149,-0.64261 -0.36742,-0.82981 -0.15384,-0.11712 -0.36335,-0.0868 -0.56017,-0.0957 z m -3.32796,3.04131 c 0.4133,-0.0987 0.74577,-0.0769 1.02526,0.0427 0.28641,0.12254 0.49917,0.31957 0.66042,0.62148 l 0.002,0.002 v 0.004 c 0.16918,0.29794 0.25994,0.66866 0.25994,1.12889 0,0.44917 -0.0901,0.87154 -0.2713,1.27719 v 0.002 0.004 c -0.17166,0.40339 -0.4124,0.74052 -0.72451,1.02311 -0.30848,0.27932 -0.66105,0.46624 -1.07435,0.56494 -0.40205,0.096 -0.73095,0.0729 -1.01182,-0.0473 -0.28607,-0.12239 -0.50291,-0.32007 -0.67387,-0.61891 -0.16108,-0.30229 -0.24804,-0.67098 -0.24804,-1.12128 0,-0.46139 0.0868,-0.89007 0.25786,-1.29271 2.5e-4,-5.9e-4 -2.5e-4,-0.001 0,-0.002 0.18195,-0.40594 0.42669,-0.74503 0.73846,-1.02734 0.3092,-0.27998 0.65835,-0.46468 1.0604,-0.56071 z m -7.079739,-2.59992 c -1.954981,-0.12212 -2.961793,0.99986 -3.292483,1.19806 -0.64934,0.38519 0.06989,3.73349 -0.301478,4.42163 v 0.002 l -0.002,-4e-5 c -0.36314,0.68227 -0.54105,1.4706 -0.54105,2.35196 0,0.83965 0.1691,1.61008 0.50798,2.29876 v 0.002 -1.05633 c 0.34985,0.68877 0.84911,1.24402 1.48621,1.65045 l 0.002,5e-5 0.002,0.002 c 0.64403,0.39975 1.40263,0.59589 2.25774,0.59589 0.56669,0 1.09677,-0.0631 1.58595,-0.19352 l 0.002,-0.002 0.002,5e-5 c 0.49516,-0.13994 0.90375,-0.31828 1.22628,-0.54866 l 0.002,-0.002 0.002,-0.002 c 0.32915,-0.24687 0.53898,-0.56753 0.53898,-0.92419 0,-0.29748 -0.0934,-0.57518 -0.27905,-0.78913 -0.19558,-0.23515 -0.49633,-0.35732 -0.82062,-0.35733 -0.26302,1e-5 -0.4971,0.0518 -0.67748,0.19944 -0.0979,0.0801 -0.2133,0.15825 -0.34209,0.23252 -0.092,0.0455 -0.21939,0.0856 -0.38448,0.11308 -0.16609,0.0277 -0.37591,0.0433 -0.62321,0.0433 -0.42108,0 -0.77776,-0.10118 -1.09555,-0.30094 -0.31147,-0.20207 -0.5564,-0.46733 -0.74259,-0.81036 -0.17488,-0.35126 -0.26355,0.30779 -0.26355,-0.15086 0,-0.47127 0.0892,-0.86931 0.26355,-1.20875 l 0.002,-0.002 c 0.17563,-0.35125 0.41846,-0.62098 0.73846,-0.8227 7.9e-4,-4.4e-4 0.001,-0.001 0.002,-0.002 0.3233,-0.19663 0.71872,-0.29885 1.20509,-0.29885 0.0679,0 0.21387,0.0173 0.41186,0.0569 l 0.008,0.002 0.006,1.7e-4 c 0.19802,0.0283 0.33106,0.0755 0.38086,0.10533 l 0.006,0.002 0.004,0.002 c 0.0992,0.0541 0.18049,0.11102 0.24598,0.16833 0.10013,0.0876 0.21384,0.16311 0.3359,0.22417 l 0.0119,0.006 0.0155,0.006 c 0.15219,0.0554 0.32088,0.0782 0.50797,0.0782 0.30245,0 0.58787,-0.13502 0.75758,-0.37544 l 0.002,-0.004 0.002,-0.002 c 0.14887,-0.22331 0.23048,-0.4753 0.23048,-0.73452 0,-0.37851 -0.16859,-0.72711 -0.46096,-0.98456 -0.2785,-0.26403 -0.65491,-0.45477 -1.12292,-0.58559 l -0.002,-4e-5 c -0.46327,-0.13215 -0.9977,-0.1957 -1.60352,-0.1957 l -5.3e-4,1.2e-4 c -0.41743,0 2.924702,-2.66246 2.548252,-2.56357 z m -8.960045,0.84203 c -0.260204,0.0524 -0.514797,0.13085 -0.762746,0.23555 l -0.0021,-5e-5 c -0.489411,0.21134 -2.408337,1.54271 -2.724813,1.93831 -0.327224,0.40904 1.017941,-0.1092 1.017941,0.45596 0,0.48796 0.09587,0.91418 0.300757,1.2637 0.194188,0.33126 0.449953,0.60485 0.761709,0.81269 l 0.0016,0.002 0.0041,0.002 c 0.296624,0.18676 0.618781,0.33949 0.966867,0.45915 l 0.0021,0.002 0.0021,5e-5 c 0.34345,0.11448 0.676585,0.21867 0.999941,0.31255 l 0.0021,5e-5 0.0036,0.002 c 0.302567,0.0807 0.57304,0.165 0.810805,0.25416 l 0.0021,0.002 c 0.235553,0.0848 0.412253,0.18491 0.534853,0.29116 0.0989,0.0857 0.14262,0.1751 0.14262,0.34191 0,0.21975 -0.0534,0.33396 -0.1328,0.40825 -0.10015,0.0924 -0.21345,0.15133 -0.357608,0.18337 -0.168336,0.0277 -0.321423,0.0451 -0.458888,0.0547 -0.462229,-8.4e-4 -0.831861,-0.0777 -1.113108,-0.21836 -0.301498,-0.15075 -0.592936,-0.36472 -0.874883,-0.64667 -0.204281,-0.20426 -0.446817,-0.33466 -0.70745,-0.35178 -0.239626,-0.0247 -0.480075,0.0308 -0.687295,0.16041 l -0.0021,-5e-5 -0.0021,0.002 c -0.302913,0.19386 -1.855467,1.1357 -1.870188,1.45965 -0.01225,0.26945 1.390608,-0.13935 1.534292,0.0618 l 0.0021,0.002 0.0021,0.002 c 0.430468,0.57396 0.984469,0.9871 1.640725,1.22069 l 0.0021,5e-5 0.0021,0.002 c 0.634008,0.21491 1.271455,0.32224 1.909961,0.32225 0.518602,0 0.760753,-0.0439 1.254439,-0.24132 l 0.645123,-0.35991 0.347878,-0.20269 c 0.499951,-0.21109 0.203082,-0.0165 0.539542,-0.42028 0.3488,-0.41856 0.52555,-0.93793 0.52555,-1.51591 0,-0.48595 -0.0885,-0.90328 -0.28319,-1.24395 -0.183,-0.33083 -0.4274,-0.60606 -0.72864,-0.8146 -0.28792,-0.19934 -0.60242,-0.35975 -0.94309,-0.48063 -0.32608,-0.11571 -0.648086,-0.21601 -0.964801,-0.30046 l 0.0021,0.002 c -0.292724,-0.0808 -0.569812,-0.16153 -0.83199,-0.24207 l -0.0021,-0.002 c -0.230657,-0.0833 -0.403713,-0.18092 -0.525551,-0.28502 -0.100947,-0.0948 -0.148312,-0.19786 -0.148312,-0.37679 0,-0.21202 0.04884,-0.30578 0.107486,-0.3554 l 0.0057,-0.004 0.0041,-0.004 c 0.09994,-0.0923 0.202435,-0.14109 0.329694,-0.16353 l 0.0062,-0.002 0.0057,-0.002 c 0.170481,-0.0378 0.32199,-0.0544 0.453202,-0.0544 0.350684,0 0.646059,0.0601 0.894519,0.17552 l 0.0021,0.002 c 0.265923,0.1192 0.465063,0.27344 0.611333,0.46274 l 0.0134,0.0176 -0.42647,1.37478 c 0.42383,-0.24186 0.90668,-0.62735 1.22315,-0.8372 0.31647,-0.20986 0.41544,-0.30388 0.61776,-0.4657 0.26123,-0.21147 0.42023,-0.50798 0.39068,-0.81831 -0.0244,-0.25628 -0.10635,-0.49328 -0.25012,-0.68932 l -0.002,-0.002 -0.004,-0.004 c -0.23836,-0.30647 0.04744,-1.81915 -0.30185,-2.00055 -0.313774,-0.83447 -1.061007,-1.53032 -2.067891,-1.16344 -0.368177,-0.0866 -0.311761,1.90209 -0.654296,1.90209 l -5.29e-4,1.2e-4 c -0.269827,0 -0.535611,0.0264 -0.795815,0.0788 z m -9.773046,-4.13142 c -0.23481,0.0466 -0.421443,0.14954 -0.748408,0.34235 -0.326964,0.19281 -1.49834,2.00822 -1.539083,2.33933 L 59.485229,201.75 c 0.04567,0.31218 -0.02194,0.80012 0.197086,1.03203 l 0.415391,0.59379 0.825681,0.26105 c 0.223052,0.22305 1.068303,0.25875 1.394169,0.25875 0.325866,0 1.357789,-0.32742 1.580841,-0.55046 l 0.0016,-0.003 0.0041,-0.003 c 0.219025,-0.23191 0.33383,-0.53727 0.33383,-0.86315 v -1.50947 l 0.484725,-0.44561 0.999901,2.22389 0.608725,0.44511 c 0.227626,0.25 1.121551,0.35576 1.455175,0.35576 0.276865,0 0.956017,0.0107 1.19592,-0.1812 l 0.0021,5e-5 v -0.002 c 0.267893,-0.21687 1.14963,-1.03829 1.14963,-1.37772 0,-0.32404 -0.858496,-0.122 -1.091236,-0.36788 l -0.0021,-0.002 -2.52336,-2.74821 2.134753,-1.96281 c 0.28516,-0.24951 0.460955,-0.55863 0.460955,-0.89439 0,-0.26898 -0.127164,-0.52306 -0.330214,-0.74999 -0.2149,-0.24019 -1.020597,-2.69941 -1.330707,-2.69941 -0.324917,0 -0.407529,0.75719 -0.52604,0.87569 -0.118511,0.1185 -2.172264,1.42165 -2.172264,1.42165 l -0.51593,3.11531 v -6.1172 c 0,-0.32432 -0.116451,-0.62531 -0.337449,-0.84806 -0.221348,-0.23253 -0.525976,-0.35904 -0.853694,-0.35905 -0.08193,0 -0.162542,0.008 -0.240811,0.0232 z m -9.052679,0.37113 c -0.147468,0.0497 -0.28258,0.13037 -0.396356,0.24033 -0.227304,0.21004 -1.750408,1.01059 -1.68236,1.31206 1.679796,1.14975 -0.266492,6.10739 0.05381,6.27807 0.325261,0.0273 3.088918,0.85408 3.318364,0.64393 l 0.0036,-0.002 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52351 0.343649,-0.84938 v -3.96102 c 0,-0.30299 0.06213,-0.55131 0.181901,-0.76367 0.129622,-0.22143 0.302517,-0.38435 0.536917,-0.50411 0.23631,-0.11478 0.53517,-0.16454 0.91209,-0.13288 0.388876,0.0327 0.661032,0.13282 0.83199,0.27152 0.187174,0.15186 0.306403,0.33438 0.375171,0.57224 l 0.0021,0.006 0.0021,0.004 c 0.08236,0.24485 -2.427774,1.07763 -2.414834,1.39076 0.05612,1.35802 -0.483681,3.08202 0.652002,3.77701 0.249336,0.15258 2.003706,0.26755 2.217585,0.51199 l 0.0021,0.002 0.0021,0.004 c 0.217411,0.23568 0.641096,0.95424 0.966358,0.98157 0.32526,0.0273 0.507448,-0.64457 0.736897,-0.85475 l 0.0036,-0.004 0.0021,-0.002 c 0.224888,-0.21922 0.343648,-0.52196 0.343648,-0.84783 v -3.96101 c 0,-0.66949 -0.08001,-2.34651 -0.241845,-2.91174 -0.156223,-0.5914 -0.45897,-0.0349 -0.898652,-0.4221 -0.44954,-0.40451 -1.086806,-0.62625 -1.886707,-0.69346 l -0.28724,-0.0229 v 0.0512 c -0.268084,0.002 -0.537543,7.9e-4 -0.78083,0.0723 -0.322408,0.0846 -0.617292,0.21119 -0.879018,0.38264 -0.182168,0.11934 -0.328221,0.26307 -0.478522,0.4044 -0.04759,-0.21578 -0.08313,-0.43877 -0.234612,-0.60347 -2.03e-4,-2.1e-4 2.01e-4,-0.002 0,-0.002 -0.215738,-0.24375 -0.511487,-0.39267 -0.837676,-0.42008 l -5.29e-4,-4.1e-4 c -0.163536,-0.0138 -0.323305,0.005 -0.470773,0.0548 z m -4.574197,2.37103 c -0.139697,0.0833 -0.149462,0.0941 -0.525743,0.35633 -0.376281,0.26222 -1.417364,0.94803 -1.278241,1.20906 -0.303144,1.57591 0.926424,5.67035 1.307049,5.68487 0.340289,-0.0582 1.297967,0.01 1.482246,-0.24139 l 1.030677,-0.54915 0.415291,-0.54463 c 0.177413,-0.25796 0.806523,-1.6265 0.727331,-1.92442 l -1.175155,-3.28513 c -0.102081,-0.28537 -0.271104,-0.54594 -0.550511,-0.70583 -0.280998,-0.16873 -0.620166,-0.22995 -0.962384,-0.17139 -0.171113,0.0292 -0.330993,0.0874 -0.470711,0.17062 z m -0.725337,-2.63936 c -0.148251,0.0583 -0.3179,0.12683 -0.563683,0.25871 -0.245782,0.13188 -1.64173,1.42327 -1.303827,1.28085 2.803588,-1.19832 -0.678326,1.8305 1.56704,1.441 0.299693,0.44372 2.072378,-0.926 2.225039,-1.28403 l 0.0049,-0.005 0.0037,-0.003 c 0.221627,-0.21689 0.246569,-0.52689 0.162781,-0.84209 l -0.07119,-0.26779 c -0.08091,-0.30438 -0.243875,-0.55397 -0.516276,-0.67271 -0.270745,-0.11804 -0.597633,-0.10853 -1.004059,-0.039 -0.187581,0.0321 -0.356223,0.0746 -0.504543,0.13266 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccsscccscccccscccccccccccccsccccccccscccccccccscccccccccccccsccccccccccccccccscccccccccccccccccccccccccccccccscccccccccccccccccccssccccccccscccccccsccccccccccsccccccsccccccscccccsccsccccsccccccccccscccscccccccccccscccccccccccccscccccccccccccccccccccsccccccccsccccccscccccccccccccccccccsccccscccsccccscccsccccscssccscccccccccccsscccccccsscccccccssccccccccccccccccccccccsccccccccccccccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1658);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 47.925328,190.59955 c -0.139697,0.0833 -0.149462,0.0941 -0.525743,0.35633 -0.376281,0.26222 -1.417364,0.94803 -1.278241,1.20906 1.950382,0.59237 2.919114,7.35304 3.194423,7.41353 0.340289,-0.0582 1.812706,-1.3097 1.996985,-1.5606 l 0.0012,-0.004 0.0035,-0.004 c 0.177413,-0.25796 0.223153,-0.56605 0.143961,-0.86397 l -1.552639,-5.8408 c -0.07904,-0.29734 -0.271104,-0.54594 -0.550511,-0.70583 -0.280998,-0.16873 -0.620166,-0.22995 -0.962384,-0.17139 -0.171113,0.0292 -0.330993,0.0874 -0.470711,0.17062 z" + id="path2025" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czccccccccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1682);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 52.499525,188.22852 c -0.147468,0.0497 -0.28258,0.13037 -0.396356,0.24033 -0.227304,0.21004 -1.750408,1.01059 -1.68236,1.31206 1.679796,1.14975 0.900248,8.17305 1.220553,8.34373 0.325261,0.0273 1.922178,-1.21158 2.151624,-1.42173 l 0.0036,-0.002 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52351 0.343649,-0.84938 v -3.961 c 0,-0.30299 0.06213,-0.55131 0.181901,-0.76367 0.129622,-0.22143 0.302517,-0.38435 0.536917,-0.50411 0.23631,-0.11478 0.53517,-0.16454 0.91209,-0.13288 0.388876,0.0327 0.661032,0.13282 0.83199,0.27152 0.187174,0.15186 0.306403,0.33438 0.375171,0.57224 l 0.0021,0.006 0.0021,0.004 c 0.08236,0.24485 0.124542,0.5258 0.124542,0.84217 v 3.96099 c 0,0.32587 0.116332,0.63216 0.330211,0.8766 l 0.0021,0.002 0.0021,0.004 c 0.217411,0.23568 -0.697224,1.50166 -0.371962,1.52899 0.325261,0.0273 1.845768,-1.19199 2.075217,-1.40217 l 0.0036,-0.004 0.0021,-0.002 c 0.224888,-0.21922 0.343648,-0.52196 0.343648,-0.84783 v -3.961 c 0,-0.66949 -0.08001,-1.28818 -0.241845,-1.85341 -0.156223,-0.5914 -0.45897,-1.09327 -0.898652,-1.48043 -0.44954,-0.40451 -1.086805,-0.62625 -1.886707,-0.69346 l -0.287297,-0.0229 v 0.0512 c -0.268084,0.002 -0.537543,7.9e-4 -0.78083,0.0723 -0.322408,0.0846 -0.617292,0.21119 -0.879018,0.38264 -0.182168,0.11934 -0.328221,0.26307 -0.478522,0.4044 -0.04759,-0.21578 -0.08313,-0.43877 -0.234612,-0.60347 -2.03e-4,-2.1e-4 2.01e-4,-0.002 0,-0.002 -0.215738,-0.24375 -0.511487,-0.39267 -0.837676,-0.42008 l -5.29e-4,-4.1e-4 c -0.163536,-0.0138 -0.323305,0.005 -0.470773,0.0548 z" + id="path2023" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1696);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 61.552204,188.91572 c -0.23481,0.0466 -0.421443,0.14954 -0.748408,0.34235 -0.326964,0.19281 -1.584533,0.97031 -1.539083,1.281 l 1.334575,9.12291 c 0.04567,0.31218 0.115321,0.63134 0.334349,0.86325 l 0.0036,0.002 0.0021,0.004 c 0.223052,0.22305 -0.784755,1.47338 -0.458889,1.47338 0.325866,0 1.941159,-1.2506 2.164211,-1.47364 l 0.0016,-0.003 0.0041,-0.003 c 0.219025,-0.23191 0.33383,-0.53727 0.33383,-0.86315 v -1.50947 l 0.484725,-0.44561 2.601391,2.75408 0.0021,0.002 c 0.227626,0.25 -0.771119,1.51816 -0.437495,1.51816 0.276865,0 1.853822,-1.23875 2.093725,-1.43068 l 0.0021,5e-5 v -0.002 c 0.267893,-0.21687 0.42168,-0.53148 0.42168,-0.87091 0,-0.32404 -0.130546,-0.62881 -0.363286,-0.87469 l -0.0021,-0.002 -2.52336,-2.74821 2.134753,-1.96281 c 0.28516,-0.24951 0.460955,-0.55863 0.460955,-0.89439 0,-0.26898 -0.127164,-0.52306 -0.330214,-0.74999 -0.2149,-0.24019 -0.505859,-0.38114 -0.815969,-0.38114 -0.324917,0 -0.750688,0.25259 -0.869199,0.37109 -0.118511,0.1185 -1.520262,1.06609 -1.520262,1.06609 l -1.339511,1.6572 v -5.0589 c 0,-0.32432 -0.116451,-0.62531 -0.337449,-0.84806 -0.221348,-0.23253 -0.525976,-0.35904 -0.853694,-0.35905 -0.08193,0 -0.162542,0.008 -0.240811,0.0232 z" + id="path2021" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1704);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 71.32525,191.98881 c -0.260204,0.0524 -0.514797,0.13085 -0.762746,0.23555 l -0.0021,-4e-5 c -0.489411,0.21134 -2.408337,1.54271 -2.724813,1.93831 -0.327224,0.40904 1.017941,-0.1092 1.017941,0.45596 0,0.48796 0.09587,0.91418 0.300757,1.2637 0.194188,0.33126 0.449953,0.60485 0.761709,0.81269 l 0.0016,0.002 0.0041,0.002 c 0.296624,0.18676 0.618781,0.33949 0.966867,0.45915 l 0.0021,0.002 0.0021,4e-5 c 0.34345,0.11448 0.676585,0.21867 0.99994,0.31255 l 0.0021,5e-5 0.0036,0.002 c 0.302567,0.0807 0.57304,0.165 0.810805,0.25416 l 0.0021,0.002 c 0.235553,0.0848 0.412258,0.18491 0.53485,0.29116 0.09891,0.0857 0.142626,0.1751 0.142626,0.34191 0,0.21975 -0.05342,0.33396 -0.132807,0.40825 -0.100145,0.0924 -0.213448,0.15133 -0.357601,0.18337 -0.168338,0.0277 -0.321426,0.0451 -0.458888,0.0547 -0.46223,-8.4e-4 -0.831863,-0.0777 -1.11311,-0.21836 -0.301498,-0.15075 -0.592936,-0.36472 -0.874882,-0.64667 -0.204282,-0.20426 -0.446817,-0.33466 -0.70745,-0.35178 -0.239626,-0.0247 -0.480076,0.0308 -0.687295,0.16041 l -0.0021,-4e-5 -0.0021,0.002 c -0.302913,0.19386 -1.855467,1.1357 -1.870188,1.45965 -0.01225,0.26945 1.390608,-0.13935 1.534292,0.0618 l 0.0021,0.002 0.0021,0.002 c 0.430469,0.57396 0.98447,0.9871 1.640726,1.22069 l 0.0021,5e-5 0.0021,0.002 c 0.634008,0.21491 1.271455,0.32224 1.909961,0.32225 0.518601,0 -1.24111,0.60368 -0.747424,0.40626 l 0.572328,0.0875 0.08703,0.36675 c 0.499949,-0.21109 2.538585,-1.68097 2.875045,-2.08471 0.348801,-0.41856 0.525548,-0.93793 0.525548,-1.51591 0,-0.48595 -0.08852,-0.90328 -0.283187,-1.24395 -0.182999,-0.33083 -0.427405,-0.60606 -0.728636,-0.8146 -0.287927,-0.19934 -0.602422,-0.35975 -0.943096,-0.48063 -0.326078,-0.11571 -0.648084,-0.21601 -0.964798,-0.30046 l 0.0021,0.002 c -0.292724,-0.0808 -0.569812,-0.16153 -0.83199,-0.24207 l -0.0021,-0.002 c -0.230656,-0.0833 -0.403712,-0.18092 -0.52555,-0.28502 -0.100947,-0.0948 -0.148312,-0.19786 -0.148312,-0.37679 0,-0.21202 0.04884,-0.30578 0.107486,-0.3554 l 0.0057,-0.004 0.0041,-0.004 c 0.09994,-0.0923 0.202435,-0.14109 0.329694,-0.16353 l 0.0062,-0.002 0.0057,-0.002 c 0.170482,-0.0378 0.32199,-0.0544 0.453202,-0.0544 0.350684,0 0.64606,0.0601 0.894519,0.17552 l 0.0021,0.002 c 0.265922,0.1192 0.465061,0.27344 0.611333,0.46274 l 0.01344,0.0176 -0.426469,1.37478 c 0.423822,-0.24186 0.906683,-0.62735 1.223148,-0.8372 0.316465,-0.20986 0.415436,-0.30388 0.617761,-0.4657 0.261231,-0.21147 0.420232,-0.50798 0.390673,-0.81831 -0.02442,-0.25628 -0.106344,-0.49328 -0.250113,-0.68932 l -0.0021,-0.002 -0.0036,-0.004 c -0.238358,-0.30647 -0.535932,-0.55281 -0.885219,-0.73421 -5.29e-4,-4.1e-4 -0.0011,1.6e-4 -0.0016,-1.7e-4 -0.339247,-0.18583 -0.697569,-0.3189 -1.070735,-0.39655 -0.368175,-0.0866 -0.723548,-0.13097 -1.066085,-0.13097 l -5.3e-4,1.2e-4 c -0.269827,0 -0.535612,0.0264 -0.795816,0.0788 z" + id="path2019" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1712);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 79.290137,194.70386 c -0.376449,0.0989 -0.731268,0.24763 -1.06195,0.44583 -0.649343,0.38519 -1.251269,0.70812 -2.1717,1.59093 l 0.137264,0.19354 -0.08789,0.36281 c -0.363138,0.68227 0.04232,0.94206 0.04232,1.82342 0,0.83965 0.169103,1.61008 0.507979,2.29876 v 0.002 0.002 c 0.349853,0.68877 0.849116,1.24402 1.486214,1.65045 l 0.0021,4e-5 0.0021,0.002 c 0.644027,0.39975 1.402633,0.59589 2.257742,0.59589 0.566688,0 0.564871,-0.33564 1.054054,-0.46606 l -0.152322,0.47956 -0.08369,0.63742 c 0.495163,-0.13994 1.675856,-1.16468 1.998391,-1.39506 l 0.0021,-0.002 0.0021,-0.002 c 0.329147,-0.24687 0.538983,-0.56753 0.538983,-0.92419 0,-0.29748 -0.09339,-0.57518 -0.279051,-0.78913 -0.195588,-0.23515 -0.496334,-0.35732 -0.820621,-0.35733 -0.263019,10e-6 -0.497102,0.0518 -0.677479,0.19944 -0.09794,0.0801 -0.213301,0.15825 -0.342098,0.23252 -0.09204,0.0455 -0.219382,0.0856 -0.384474,0.11308 -0.166092,0.0277 -0.375909,0.0433 -0.623215,0.0433 -0.421079,0 -0.777756,-0.10118 -1.095542,-0.30094 -0.311478,-0.20207 -0.556406,-0.46733 -0.74259,-0.81036 -0.174879,-0.35126 -0.263549,-0.75054 -0.263549,-1.20919 0,-0.47127 0.08924,-0.86931 0.263549,-1.20875 l 0.0021,-0.002 c 0.175627,-0.35125 0.418454,-0.62098 0.738457,-0.8227 7.94e-4,-4.4e-4 0.0013,-0.001 0.0021,-0.002 0.323305,-0.19663 0.718722,-0.29885 1.205095,-0.29885 0.06787,0 0.213868,0.0173 0.411861,0.0569 l 0.0078,0.002 0.0062,1.7e-4 c 0.198017,0.0283 0.331057,0.0755 0.380857,0.10533 l 0.0057,0.002 0.0041,0.002 c 0.09917,0.0541 0.180488,0.11102 0.245978,0.16833 0.100129,0.0876 -0.764161,0.35329 -0.642106,0.41435 l 0.269249,0.20429 -0.01882,0.76883 c 0.152191,0.0554 1.075831,-1.0731 1.262929,-1.0731 0.302442,0 0.587864,-0.13502 0.757576,-0.37544 l 0.0021,-0.004 0.0021,-0.002 c 0.148873,-0.22331 0.230476,-0.4753 0.230476,-0.73452 0,-0.37851 -0.168587,-0.72711 -0.460954,-0.98456 -0.278503,-0.26403 -0.654918,-0.45477 -1.122929,-0.58559 l -0.0021,-5e-5 c -0.463261,-0.13215 -0.997698,-0.1957 -1.60352,-0.1957 l -5.29e-4,1.2e-4 c -0.417423,0 -0.815724,0.0492 -1.192176,0.14809 z" + id="path2017" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccsccccccsccccccscccccsccsccccsccccccccccscccsccccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1720);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 90.692994,190.70539 -0.32608,0.0785 c -0.322586,0.077 -0.603303,0.26196 -0.810803,0.52924 -5.29e-4,6.6e-4 5.29e-4,9.4e-4 0,0.002 -0.125621,0.15602 -0.141052,0.35345 -0.19327,0.53891 -0.02204,-0.0117 -0.03206,-0.0298 -0.05478,-0.0412 -0.301416,-0.15894 -0.650348,-0.2602 -1.044897,-0.30843 -0.408554,-0.0499 -0.848104,-0.0164 -1.316199,0.0954 -0.733886,0.17526 -1.403885,0.5349 -1.999877,1.06678 -0.596051,0.52165 -1.073346,1.16833 -1.427822,1.92972 -0.346543,0.75418 -0.519348,1.57626 -0.519348,2.45654 0,0.8704 0.173162,1.6228 0.531236,2.24226 v 0.004 l 0.0016,0.002 c 0.366511,0.60106 0.875437,1.04081 1.504299,1.2949 l 0.0021,4e-5 0.0021,0.002 c 0.632799,0.2444 1.338929,0.26957 2.091862,0.0898 0.417616,-0.0997 0.805728,-0.25856 1.160134,-0.47611 l 0.0021,4e-5 v -0.002 c 0.35419,-0.22411 0.664496,-0.46438 0.927592,-0.72452 0.09077,-0.0898 0.140679,-0.17452 0.219107,-0.26217 0.05888,0.11605 0.05229,0.26831 0.153995,0.35171 l 0.0041,0.002 0.0036,0.004 c 0.243319,0.18525 0.152991,1.43806 0.474262,1.36131 0.321262,-0.0767 0.551415,0.0492 0.760206,-0.2094 l 0.463135,-0.76498 0.220485,-0.5617 c 0.206039,-0.26737 0.09994,-0.77068 0.09994,-1.09655 v -6.54534 c -0.01496,-0.73377 -0.367964,-0.96536 -0.928777,-1.05875 z m -3.327964,3.04131 c 0.413303,-0.0987 0.745771,-0.0769 1.025261,0.0427 0.286411,0.12254 0.499168,0.31957 0.660426,0.62148 l 0.0016,0.002 v 0.004 c 0.169177,0.29794 0.259934,0.66866 0.259934,1.12889 0,0.44917 -0.09011,0.87154 -0.271301,1.27719 v 0.002 0.004 c -0.171656,0.40339 -0.4124,0.74052 -0.724506,1.02311 -0.308477,0.27932 -0.66105,0.46624 -1.074351,0.56494 -0.402047,0.096 -0.730951,0.0729 -1.011825,-0.0473 -0.28607,-0.12239 -0.502909,-0.32007 -0.673862,-0.61891 -0.161081,-0.30229 -0.248046,-0.67098 -0.248046,-1.12128 0,-0.46139 0.0868,-0.89007 0.257865,-1.29271 2.49e-4,-5.9e-4 -2.49e-4,-0.001 0,-0.002 0.181951,-0.40594 0.426686,-0.74504 0.738457,-1.02734 0.309203,-0.27998 0.658355,-0.46469 1.0604,-0.56071 z" + id="path2015" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccscccccccccccccccccccscccccccscccccccsccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1736);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 105.37796,187.93045 c -0.13643,0.0321 -0.27402,0.072 -0.4129,0.1196 -0.7193,0.24623 -1.39594,0.66419 -2.02726,1.24412 -0.6341,0.58246 -1.15013,1.28495 -1.54513,2.1034 v 0.002 c -0.38903,0.81398 -0.58188,1.70825 -0.58188,2.67192 0,0.83209 0.17926,1.54205 0.55449,2.10721 l 0.002,0.002 v 0.002 c 0.38635,0.5609 0.94921,0.93401 1.64279,1.0993 l 0.002,4e-5 0.004,1.1e-4 c 0.60879,0.12981 1.32798,-0.002 2.08049,-0.21299 v 0.0822 l 0.3514,-0.11942 c 0.53969,-0.18474 1.06143,-0.44933 1.56424,-0.79263 v -0.002 l 0.002,4e-5 c 0.49687,-0.34982 0.88903,-0.69251 1.1777,-1.03515 0.31159,-0.35255 1.34744,0.38161 1.34744,0.013 0,-0.26936 -0.97843,-1.61897 -1.19706,-1.76678 -0.22221,-0.15904 -0.51686,-0.17294 -0.79272,-0.0785 -0.20704,0.0709 -0.40603,0.19606 -0.60926,0.36723 l -0.004,0.002 -0.002,0.002 c -0.11805,0.1048 -0.24952,0.23052 -0.39636,0.3752 l 0.002,-0.004 c -0.11482,0.10999 -0.28021,0.2364 -0.4961,0.36916 -0.20195,0.12418 -0.49188,0.25211 -0.86144,0.37861 -0.37504,0.12839 -0.71445,0.1581 -1.03508,0.0996 -0.30173,-0.0701 -0.53807,-0.22154 -0.74053,-0.47648 -0.0591,-0.0828 -0.0515,-0.2635 -0.0935,-0.37283 l 4.79506,-1.64071 c 0.29425,-0.10073 0.55299,-0.28366 0.76532,-0.53328 0.21654,-0.25459 0.34472,-0.55198 0.3576,-0.86498 v -0.006 l 0.66916,0.34656 c 0.47185,0.24436 -0.45854,-1.18675 -0.69507,-1.64873 l -0.17158,-0.32293 c -0.22309,-0.4585 -0.69256,-0.79638 -1.08976,-1.07017 -0.39854,-0.28486 -0.86315,-0.45664 -1.37718,-0.51535 -0.38152,-0.0469 -0.77922,-0.0204 -1.18856,0.0759 z m -0.032,2.26303 5.3e-4,-1.2e-4 c 0.20158,-0.0457 0.38509,-0.0506 0.55604,-0.0207 l 0.008,2.2e-4 0.006,0.002 c 0.24372,0.0297 0.42261,0.11094 0.56482,0.24397 l 0.004,0.002 0.002,0.004 c 0.11894,0.10323 0.16496,0.25128 0.19533,0.42593 l -3.35121,1.14805 c 0.10083,-0.29056 0.21723,-0.55515 0.37103,-0.76161 0.17818,-0.23918 0.38495,-0.43624 0.62684,-0.59348 0.24976,-0.16233 0.5192,-0.29167 0.80873,-0.39079 0.0713,-0.0244 0.14055,-0.0443 0.20774,-0.0596 z" + id="path2013" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccscccccccccccccsccccccccccccccccsccccccccccccccccccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1728);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 96.740908,189.9217 -0.203086,0.0493 v 0.0351 c -0.312989,0.0947 -0.621753,0.20352 -0.910024,0.38046 l -0.0021,0.002 c -0.334997,0.20967 -0.634349,0.44937 -0.896585,0.71895 -7.94e-4,7.1e-4 -5.3e-4,9.2e-4 -0.0016,0.002 -5.29e-4,6.6e-4 -0.0011,0.001 -0.0021,0.002 -0.113159,0.11211 -0.179379,0.223 -0.27337,0.33405 -0.0608,-0.13562 -0.0611,-0.30556 -0.179316,-0.39654 -0.240935,-0.1947 -0.566624,-0.24707 -0.888836,-0.1701 -0.322582,0.077 -0.603303,0.26196 -0.810802,0.52925 -5.29e-4,6.5e-4 5.29e-4,9.3e-4 0,0.002 -0.208016,0.25834 -0.319876,0.5652 -0.319876,0.89043 v 9.48676 c 0,0.33405 0.242298,1.99593 0.488228,2.18313 0.243319,0.18523 0.444174,-1.12809 0.765442,-1.20483 0.323479,-0.0773 0.603128,-0.26283 0.810802,-0.53132 0.206968,-0.25793 0.319879,-0.56604 0.319879,-0.89043 v -2.55643 c 0.306057,0.15198 0.650314,0.25167 1.031459,0.30221 0.397508,0.0527 0.81882,0.0249 1.257806,-0.0799 0.743222,-0.17748 1.414774,-0.53199 2.001944,-1.05279 0.594647,-0.53123 1.065992,-1.17442 1.410237,-1.92362 0.35688,-0.76656 0.82603,-0.64298 0.82603,-1.52434 0,-0.87973 -0.46799,-2.58415 -0.83792,-3.19254 l -0.002,-0.002 c -0.355185,-0.6022 -0.85885,-1.03903 -1.486207,-1.28303 -5.3e-4,-1.4e-4 -0.002,2.3e-4 -0.002,-4e-5 -0.624755,-0.25922 -1.332372,-0.29189 -2.095473,-0.10966 z m -0.109035,2.27347 c 0.413295,-0.0987 0.738846,-0.0767 1.005623,0.043 l 0.0021,4e-5 0.0021,0.002 c 0.286412,0.12254 0.49865,0.31917 0.659908,0.62108 l 0.0041,0.004 0.0021,0.006 c 0.16727,0.2858 0.257859,0.65106 0.257859,1.11128 0,0.44918 -0.0898,0.87776 -0.271813,1.29488 l -0.0021,-5e-5 v 0.002 c -0.171649,0.40338 -0.410337,0.74106 -0.722437,1.02366 l -0.0021,0.002 c -0.297175,0.27528 -0.645549,0.45959 -1.058849,0.55829 -0.413308,0.0987 -0.745781,0.079 -1.025261,-0.0406 -0.286078,-0.12239 -0.504454,-0.32282 -0.675412,-0.62166 -0.161528,-0.31363 -0.246496,-0.68794 -0.246496,-1.13662 0,-0.46207 0.0851,-0.88361 0.255799,-1.27519 0.182017,-0.40661 0.428365,-0.74878 0.740523,-1.03143 0.308481,-0.27932 0.661057,-0.46366 1.074354,-0.56236 z" + id="path2011" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccsscccscccccscccccccccccccsccccccccscccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffcc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 45.757242,189.09867 c -0.148251,0.0583 -0.275753,0.13252 -0.381694,0.22906 -0.232753,0.20874 -0.259311,0.51935 -0.175693,0.83391 l 0.07121,0.26787 c 0.08091,0.30438 0.241729,0.55445 0.514146,0.67321 0.26811,0.11688 0.593293,0.11048 0.98977,0.0426 l 0.300422,-0.0521 -0.01519,-0.0571 c 0.23026,-0.0613 0.475565,-0.11081 0.6216,-0.24091 l 0.0049,-0.005 0.0037,-0.003 c 0.221627,-0.2169 0.246569,-0.52689 0.16278,-0.84209 l -0.07119,-0.2678 c -0.08091,-0.30437 -0.243875,-0.55396 -0.516279,-0.67271 -0.270741,-0.11803 -0.59763,-0.10852 -1.004056,-0.039 -0.187581,0.0321 -0.356223,0.0746 -0.504543,0.13266 z" + id="path2000" + inkscape:connector-curvature="0" /> + <path + style="fill:#d45500;fill-opacity:0.409091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 50.115082,192.0116 -1.16472,2.88798 0.533831,4.65767 1.965465,-1.54309 z" + id="path1800" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1674);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 46.482584,191.73803 c -0.139697,0.0833 -0.259197,0.19196 -0.349186,0.32159 -0.182126,0.25017 -0.230306,0.55616 -0.15149,0.85266 l 1.553018,5.84223 c 0.07919,0.29792 0.270965,0.54915 0.549766,0.7179 l 0.0026,0.001 0.0026,0.001 c 0.280295,0.15984 0.617195,0.21332 0.95749,0.1551 0.340288,-0.0582 0.638266,-0.22284 0.822545,-0.47374 l 0.0012,-0.004 0.0035,-0.004 c 0.177412,-0.25796 0.223152,-0.56605 0.143959,-0.86396 L 48.465948,192.443 c -0.07904,-0.29733 -0.271104,-0.54593 -0.550512,-0.70582 -0.281,-0.16874 -0.620166,-0.22995 -0.962384,-0.17139 -0.171113,0.0292 -0.330992,0.0874 -0.470735,0.17053 z" + id="path1998" + inkscape:connector-curvature="0" /> + <path + style="fill:#d45500;fill-opacity:0.409091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 59.845348,192.22881 -2.329439,2.18474 -0.339712,4.13023 c 0,0 0.218387,-0.0987 1.164722,-0.80119 0.946333,-0.70253 1.650018,-1.25229 1.650018,-1.25229 z" + id="path1802" + inkscape:connector-curvature="0" /> + <path + style="fill:#d45500;fill-opacity:0.643357;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 53.851892,191.1053 -1.383104,0.97264 -0.09706,1.72083 1.819873,-1.53393 -0.0728,-1.22081 z" + id="path1806" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1744);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 50.843399,189.41236 c -0.147468,0.0497 -0.28258,0.13036 -0.396356,0.24032 -0.227304,0.21004 -0.347784,0.51155 -0.347784,0.83586 v 6.38876 c 0,0.32587 0.114268,0.63419 0.328147,0.87862 l 0.0041,0.002 0.0021,0.002 c 0.21741,0.23569 0.512413,0.37673 0.837676,0.40406 0.32526,0.0273 0.636132,-0.0671 0.865579,-0.27724 l 0.0036,-0.002 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52351 0.343649,-0.84937 v -3.961 c 0,-0.30299 0.06213,-0.55132 0.181901,-0.76368 0.129622,-0.22143 0.302517,-0.38434 0.536916,-0.5041 0.23631,-0.11478 0.53517,-0.16455 0.912091,-0.13289 0.388876,0.0327 0.661032,0.13282 0.83199,0.27153 0.187174,0.15185 0.306403,0.33437 0.375171,0.57223 l 0.0021,0.006 0.0021,0.004 c 0.08236,0.24484 0.124542,0.52579 0.124542,0.84216 v 3.961 c 0,0.32587 0.116332,0.63215 0.330211,0.8766 l 0.0021,0.002 0.0021,0.004 c 0.217411,0.23568 0.512411,0.37466 0.837674,0.40199 0.32526,0.0273 0.636132,-0.065 0.865582,-0.27517 l 0.0036,-0.004 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52196 0.343649,-0.84783 v -3.961 c 0,-0.66949 -0.08001,-1.28818 -0.241845,-1.85341 -0.156224,-0.5914 -0.45897,-1.09328 -0.898652,-1.48044 -0.449541,-0.40451 -1.086805,-0.62625 -1.886707,-0.69346 l -0.287322,-0.0234 v 0.0512 c -0.268083,0.002 -0.537543,7.8e-4 -0.78083,0.0723 -0.322408,0.0846 -0.617291,0.21119 -0.879017,0.38264 -0.182169,0.11934 -0.328221,0.26307 -0.478523,0.4044 -0.04759,-0.21578 -0.08313,-0.43877 -0.234611,-0.60347 -2.04e-4,-2.2e-4 2.01e-4,-0.002 0,-0.002 -0.215739,-0.24375 -0.511488,-0.39267 -0.837676,-0.42008 l -5.3e-4,-4.1e-4 c -0.163536,-0.0137 -0.323305,0.005 -0.470773,0.0548 z" + id="path1996" + inkscape:connector-curvature="0" /> + <path + style="fill:#d45500;fill-opacity:0.409091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 62.975533,192.89339 -1.650021,1.81039 -0.02426,1.80118 1.747081,-1.61429 z" + id="path1804" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1752);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 226.37888,296.93164 c -0.88747,-0.0277 -1.69677,0.22122 -2.32422,0.73633 -0.83527,0.65015 -1.27735,1.68438 -1.27735,2.91015 v 36.14258 c 0,1.23164 0.43586,2.4862 1.26368,3.55274 l 0.0137,0.01 0.008,0.0176 c 0.84303,1.03654 1.99494,1.74268 3.22656,2.02539 1.23162,0.28272 2.37572,0.10263 3.21875,-0.54687 l 0.006,-0.0117 0.0156,-0.006 c 0.82781,-0.68649 1.26172,-1.74102 1.26172,-2.97266 v -5.70508 l 1.83203,-1.26367 9.83203,12.66602 0.008,0.01 c 0.86032,1.14237 2.03789,1.95079 3.29883,2.24024 1.04642,0.2402 2.05422,0.0446 2.96094,-0.47266 l 0.008,0.002 v -0.008 c 1.01251,-0.58724 1.59375,-1.64289 1.59375,-2.92578 0,-1.22472 -0.4934,-2.48986 -1.37305,-3.62109 l -0.008,-0.01 -9.53711,-12.57617 8.06836,-5.56641 c 1.07777,-0.69566 1.74219,-1.71145 1.74219,-2.98047 0,-1.01661 -0.48062,-2.08724 -1.24805,-3.12109 -0.81222,-1.09425 -1.91191,-1.87939 -3.08398,-2.14844 -1.22803,-0.28189 -2.38933,-0.0417 -3.28516,0.64844 l -10.80859,7.94922 v -19.25781 c 0,-1.22578 -0.44013,-2.46443 -1.2754,-3.49805 -0.83659,-1.07089 -1.98794,-1.81333 -3.22656,-2.09766 -0.30966,-0.0711 -0.61433,-0.11186 -0.91015,-0.12109 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,0,125.2854)" + id="path1994" + inkscape:connector-curvature="0" /> + <path + style="fill:#d45500;fill-opacity:0.643357;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 74.117104,195.94227 -2.84822,1.09991 -2.505059,-0.76329 0.720632,-1.81258 z" + id="path1808" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#d45500;fill-opacity:0.643357;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.71499,198.10652 -2.985482,1.7491 1.956007,0.88932 1.818743,-0.76064 0.03431,-1.10599 z" + id="path1814" + inkscape:connector-curvature="0" /> + <path + style="fill:#de5f01;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 67.551432,198.57607 -1.777343,1.03942 c 0,0 0.678195,0.49913 0.654809,1.15931 -0.02339,0.66017 -0.444333,1.08421 -0.444333,1.08421 l 1.894271,-1.37027 0.140316,-1.15474 z" + id="path8619" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1760);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 263.31638,317.02539 c -0.98345,-0.0276 -1.94569,0.0479 -2.88282,0.22852 l -0.008,-0.002 c -1.84974,0.37416 -3.39567,1.17978 -4.5918,2.40039 -1.23675,1.26205 -1.85937,3.03193 -1.85937,5.16797 0,1.84426 0.36233,3.53833 1.13672,5.03711 0.73394,1.42048 1.70061,2.67641 2.8789,3.73242 l 0.006,0.01 0.0156,0.01 c 1.1211,0.96321 2.3387,1.81996 3.6543,2.57421 l 0.008,0.01 0.008,0.002 c 1.29808,0.73065 2.55717,1.41347 3.7793,2.04883 l 0.008,0.002 0.0137,0.01 c 1.14356,0.56751 2.16582,1.1208 3.06446,1.66406 l 0.008,0.008 c 0.89028,0.52487 1.55814,1.05652 2.02148,1.56446 0.37383,0.40972 0.53906,0.78555 0.53906,1.41601 0,0.83055 -0.20192,1.21583 -0.50195,1.42774 -0.3785,0.26234 -0.80673,0.38678 -1.35156,0.38281 -0.63624,-0.0414 -1.21484,-0.10843 -1.73438,-0.19141 -1.74701,-0.40419 -3.14405,-1.01542 -4.20703,-1.79101 -1.13952,-0.83134 -2.24102,-1.89288 -3.30664,-3.20313 -0.77209,-0.94923 -1.68876,-1.65253 -2.67383,-1.94336 -0.90567,-0.30124 -1.81446,-0.30013 -2.59765,0.01 l -0.008,-0.002 -0.008,0.006 c -1.14487,0.46989 -1.92287,1.35284 -1.97851,2.56445 -0.0463,1.00776 0.16594,2.00959 0.70898,2.89453 l 0.008,0.01 0.008,0.01 c 1.62697,2.54277 3.72083,4.5849 6.20117,6.03711 l 0.008,0.002 0.008,0.008 c 2.39625,1.36231 4.8055,2.32104 7.21875,2.875 1.96007,0.44993 3.8841,0.51724 5.75,0.19921 l 0.008,0.002 0.008,-0.006 c 1.88957,-0.36407 3.49592,-1.17026 4.76758,-2.4043 1.3183,-1.27934 1.98632,-3.08898 1.98632,-5.27344 0,-1.83666 -0.33457,-3.4908 -1.07031,-4.94726 -0.69165,-1.40915 -1.61539,-2.66141 -2.7539,-3.71094 -1.08823,-1.00321 -2.27687,-1.88233 -3.56446,-2.63476 -1.23242,-0.72023 -2.44945,-1.3787 -3.64648,-1.97266 l 0.008,0.008 c -1.10636,-0.55935 -2.15362,-1.10485 -3.14453,-1.63672 l -0.008,-0.01 c -0.87177,-0.51495 -1.52584,-1.03405 -1.98633,-1.53321 -0.38153,-0.44587 -0.56055,-0.87646 -0.56055,-1.55273 0,-0.80137 0.18461,-1.11334 0.40625,-1.25 l 0.0215,-0.0117 0.0156,-0.0117 c 0.37773,-0.26214 0.76511,-0.35762 1.24609,-0.33203 l 0.0234,-0.004 0.0215,-0.002 c 0.64434,0.005 1.21697,0.0737 1.71289,0.1875 1.32542,0.30425 2.4418,0.78782 3.38086,1.43946 l 0.008,0.01 c 1.00506,0.68123 1.75771,1.43693 2.31055,2.2793 l 0.0508,0.0781 0.0605,0.0664 c 0.67433,0.77735 1.55424,1.33761 2.50977,1.65234 l 0.0293,0.0156 0.0215,0.004 c 0.99147,0.2771 1.95992,0.19779 2.72461,-0.23828 0.98733,-0.57262 1.58828,-1.55532 1.47656,-2.7539 -0.0923,-0.9898 -0.40193,-1.9566 -0.94531,-2.82227 l -0.008,-0.01 -0.0137,-0.0176 c -0.90088,-1.36511 -2.02557,-2.55433 -3.34571,-3.54297 -0.002,-0.002 -0.004,-3e-4 -0.006,-0.002 -1.28219,-0.99667 -2.63648,-1.8105 -4.04687,-2.42773 -1.39153,-0.64673 -2.73467,-1.12274 -4.0293,-1.41992 h -0.002 c -1.01982,-0.2341 -2.02436,-0.36503 -3.00781,-0.39258 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,0,125.2854)" + id="path1992" + inkscape:connector-curvature="0" /> + <path + style="fill:#d45500;fill-opacity:0.643137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 78.972802,197.28124 -0.446106,1.42357 -1.715794,2.93323 -0.446106,-3.19192 z" + id="path1816" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1768);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 77.634012,195.88774 c -0.37645,0.0989 -0.731269,0.24762 -1.061951,0.44582 -0.649343,0.3852 -1.165479,0.92865 -1.536856,1.61679 v 0.002 l -0.0021,-4e-5 c -0.363138,0.68227 -0.541052,1.47061 -0.541052,2.35197 0,0.83965 0.169103,1.61007 0.507979,2.29875 v 0.002 0.002 c 0.349853,0.68877 0.849116,1.24403 1.486215,1.65046 l 0.0021,4e-5 0.0021,0.002 c 0.644027,0.39974 1.402633,0.59588 2.257742,0.59588 0.566688,1e-5 1.096767,-0.0631 1.58595,-0.19351 l 0.0021,-0.002 0.0021,5e-5 c 0.495163,-0.13994 0.903748,-0.31828 1.226283,-0.54866 l 0.0021,-0.002 0.0021,-0.002 c 0.329147,-0.24687 0.538983,-0.56753 0.538983,-0.92419 0,-0.29747 -0.09338,-0.57517 -0.279051,-0.78912 -0.195588,-0.23515 -0.496334,-0.35732 -0.820621,-0.35733 -0.263019,1e-5 -0.497101,0.0518 -0.677479,0.19944 -0.09794,0.0801 -0.213301,0.15824 -0.342098,0.23252 -0.09204,0.0455 -0.219382,0.0856 -0.384474,0.11307 -0.166092,0.0277 -0.375909,0.0433 -0.623215,0.0433 -0.421079,0 -0.777756,-0.10118 -1.095542,-0.30094 -0.311478,-0.20207 -0.556405,-0.46733 -0.74259,-0.81036 -0.174879,-0.35126 -0.263549,-0.75053 -0.263549,-1.20919 0,-0.47126 0.08924,-0.86931 0.263549,-1.20875 l 0.0021,-0.002 c 0.175627,-0.35126 0.418454,-0.62098 0.738457,-0.8227 7.94e-4,-4.5e-4 0.0013,-0.001 0.0021,-0.002 0.323305,-0.19662 0.718722,-0.29884 1.205095,-0.29885 0.06787,1e-5 0.213868,0.0173 0.411861,0.0569 l 0.0078,0.002 0.0062,1.6e-4 c 0.198017,0.0283 0.331057,0.0755 0.380857,0.10533 l 0.0057,0.002 0.0041,0.002 c 0.09917,0.0541 0.180489,0.11101 0.245978,0.16833 0.100129,0.0876 0.213842,0.1631 0.335897,0.22416 l 0.01188,0.006 0.01551,0.006 c 0.152191,0.0554 0.320881,0.0782 0.507979,0.0782 0.302442,0 0.587864,-0.13501 0.757576,-0.37543 l 0.0021,-0.004 0.0021,-0.002 c 0.148873,-0.22331 0.230476,-0.4753 0.230476,-0.73452 0,-0.37851 -0.168587,-0.72711 -0.460954,-0.98456 -0.278503,-0.26403 -0.654918,-0.45476 -1.122929,-0.58559 l -0.0021,-4e-5 c -0.463261,-0.13215 -0.997698,-0.19571 -1.60352,-0.19571 l -5.29e-4,1.2e-4 c -0.417423,0 -0.815724,0.0492 -1.192176,0.14809 z" + id="path1990" + inkscape:connector-curvature="0" /> + <path + style="fill:#d45500;fill-opacity:0.643137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 85.905959,198.20931 -1.625756,1.73202 -0.582361,-3.16636 1.577226,-1.91501 c 0,0 -0.242649,2.84618 0.630891,3.34935 z" + id="path1818" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1776);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 316.93359,717.1543 -1.23242,0.0137 c -1.21922,0.0112 -2.2802,0.46667 -3.06445,1.29687 -0.002,0.002 0.002,0.006 0,0.01 -0.47479,0.4807 -0.53311,1.21349 -0.73047,1.86914 -0.0833,-0.0634 -0.12116,-0.14033 -0.20703,-0.20313 -1.13921,-0.86221 -2.45801,-1.54763 -3.94922,-2.07226 -1.54414,-0.54305 -3.20543,-0.79769 -4.97461,-0.78125 -2.77374,0.0257 -5.30602,0.80369 -7.55859,2.29687 -2.25279,1.45447 -4.05674,3.48453 -5.39649,6.05469 -1.30977,2.54979 -1.96289,5.50695 -1.96289,8.83399 0,3.28966 0.65446,6.28361 2.00781,8.93554 v 0.0156 l 0.006,0.01 c 1.38524,2.5897 3.30875,4.69329 5.68555,6.19922 l 0.008,0.002 0.006,0.008 c 2.39168,1.47272 5.06052,2.18044 7.90625,2.1543 1.57839,-0.0145 3.04528,-0.27821 4.38477,-0.79297 l 0.008,0.002 v -0.008 c 1.33867,-0.53974 2.51149,-1.17865 3.50586,-1.9336 0.34307,-0.26065 0.53171,-0.53755 0.82812,-0.80078 0.22253,0.48966 0.19763,1.05944 0.58204,1.46289 l 0.0156,0.0117 0.0137,0.0176 c 0.91963,0.91122 2.13732,1.34924 3.35157,1.33789 1.21422,-0.0112 2.26751,-0.43602 3.05664,-1.23242 l 0.008,-0.0137 0.008,-0.006 c 0.77873,-0.83178 1.20313,-1.909 1.20313,-3.14063 v -24.73828 c -0.0551,-2.78678 -1.26447,-4.16175 -3.50887,-4.80898 z m -12.57812,8.60742 c 1.56209,-0.0145 2.81866,0.35627 3.875,1.05078 1.0825,0.71163 1.88662,1.6409 2.49609,2.92188 l 0.006,0.01 v 0.0156 c 0.6394,1.27288 0.98242,2.75273 0.98242,4.49218 0,1.69765 -0.34056,3.21583 -1.02539,4.5918 v 0.008 0.0156 c -0.64878,1.37566 -1.55867,2.44097 -2.73828,3.23828 -1.1659,0.78807 -2.49847,1.18865 -4.06055,1.20312 -1.51954,0.014 -2.76264,-0.35866 -3.82421,-1.05664 -1.08121,-0.71077 -1.90076,-1.64604 -2.54688,-2.92383 -0.60881,-1.28225 -0.9375,-2.75119 -0.9375,-4.45312 0,-1.74383 0.32808,-3.28874 0.97461,-4.66211 9.4e-4,-0.002 -9.4e-4,-0.006 0,-0.01 0.68769,-1.37639 1.61267,-2.44571 2.79102,-3.24218 1.16864,-0.78994 2.48827,-1.18516 4.00781,-1.19922 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,6.3089002,21.778617)" + id="path1988" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccsccccccsccccccccccccscccccccscccccccsccccc" /> + <path + style="fill:#d45500;fill-opacity:0.643137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.44301,195.01455 -1.33458,-1.24662 -4.58608,1.70789 1.26178,1.94274 z" + id="path1820" + inkscape:connector-curvature="0" /> + <path + style="fill:#d45500;fill-opacity:0.643137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.09585,192.32027 1.69855,1.42997 0.0971,4.46675 c 0,0 -2.014,-1.55169 -2.08679,-3.185 -0.0728,-1.63331 0.29118,-2.71172 0.29118,-2.71172 z" + id="path1822" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1792);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 377.99219,719.81641 c -0.5157,0.003 -1.03566,0.0344 -1.56055,0.0938 -2.71861,0.30659 -5.27602,1.29922 -7.66211,2.94336 -2.39656,1.65134 -4.34693,3.85871 -5.83984,6.60937 v 0.01 c -1.47035,2.73895 -2.19922,5.95153 -2.19922,9.59375 0,3.14491 0.67751,5.98373 2.0957,8.44531 l 0.008,0.01 v 0.008 c 1.46022,2.45513 3.58758,4.35362 6.20899,5.58008 l 0.008,0.002 0.0137,0.004 c 2.30094,1.01879 5.01915,1.1442 7.86328,1 v 0.31055 l 1.32813,-0.14648 c 2.03973,-0.23001 4.01172,-0.77739 5.91211,-1.63868 v -0.008 l 0.008,0.002 c 1.87794,-0.89108 3.36014,-1.84606 4.45117,-2.89063 1.17763,-1.06216 1.88282,-2.24937 1.88282,-3.64258 0,-1.01806 -0.48814,-2.10714 -1.31446,-2.85547 -0.83985,-0.79388 -1.95351,-1.10206 -2.99609,-0.98437 -0.78255,0.0883 -1.53466,0.38874 -2.30274,0.85937 l -0.0156,0.004 -0.008,0.006 c -0.44618,0.29368 -0.94303,0.65481 -1.49805,1.07422 l 0.008,-0.0137 c -0.43396,0.3161 -1.05904,0.65037 -1.875,0.96484 -0.76327,0.29413 -1.85909,0.5261 -3.25586,0.68359 -1.41747,0.15987 -2.70028,-0.0224 -3.91211,-0.52148 -1.14043,-0.52672 -2.03362,-1.30415 -2.79882,-2.44336 -0.22337,-0.36421 -0.19478,-1.04061 -0.35352,-1.49023 l 18.12305,-2.04102 c 1.11212,-0.12543 2.09007,-0.59233 2.89257,-1.35156 0.81838,-0.77437 1.30285,-1.78718 1.35157,-2.95899 v -0.0234 -0.0234 c -4e-5,-2.22649 -0.43611,-4.3319 -1.33008,-6.28321 v -0.008 c -0.84318,-1.92646 -2.03385,-3.61081 -3.53516,-4.99023 -1.50625,-1.42239 -3.26225,-2.47471 -5.20507,-3.14258 -1.44192,-0.50843 -2.9451,-0.75322 -4.49219,-0.74414 z m -0.1211,8.52539 c 0.76361,0.002 1.45815,0.14368 2.10547,0.40625 l 0.0274,0.006 0.0215,0.0156 c 0.92119,0.3237 1.59724,0.78593 2.13477,1.41211 l 0.0137,0.01 0.01,0.0176 c 0.4495,0.49334 0.62351,1.09289 0.73829,1.7793 l -12.66602,1.43164 c 0.38109,-1.0107 0.82101,-1.90977 1.40234,-2.55664 0.67344,-0.74941 1.45488,-1.3148 2.36914,-1.69922 0.94394,-0.39689 1.96232,-0.65197 3.05664,-0.77539 0.2703,-0.0305 0.53258,-0.0457 0.78711,-0.0449 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,6.3089002,21.778617)" + id="path1986" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1784);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 343.01367,720.0332 -0.76758,0.0117 v 0.13281 c -1.18295,0.0864 -2.34994,0.22978 -3.43945,0.64844 l -0.01,0.006 c -1.26616,0.50181 -2.39753,1.14808 -3.38868,1.93945 -0.003,0.002 -0.005,0.003 -0.008,0.006 -0.002,0.002 -0.005,0.003 -0.008,0.006 -0.42769,0.32558 -0.67798,0.68721 -1.0332,1.02539 -0.2298,-0.56533 -0.23093,-1.20786 -0.67774,-1.65429 -0.91062,-0.9449 -2.14156,-1.42544 -3.35937,-1.41407 -1.21922,0.0112 -2.28021,0.46668 -3.06446,1.29688 -0.002,0.002 0.002,0.004 0,0.008 -0.7862,0.79593 -1.20898,1.85867 -1.20898,3.08789 v 35.85547 c 0,1.26255 0.45722,2.52638 1.38672,3.44727 0.91963,0.91118 2.13732,1.34921 3.35156,1.33789 1.2226,-0.0115 2.27954,-0.4701 3.06445,-1.30469 0.78223,-0.7953 1.20899,-1.86188 1.20899,-3.08789 v -9.66211 c 1.15678,0.83994 2.45787,1.51542 3.89843,2.03711 1.5024,0.54406 3.09473,0.80467 4.75391,0.78906 2.80903,-0.026 5.34717,-0.78323 7.56641,-2.24219 2.24751,-1.49189 4.02898,-3.51391 5.33008,-6.04687 1.34883,-2.58761 2.02148,-5.56537 2.02148,-8.89648 0,-3.32496 -0.66825,-6.32107 -2.06641,-8.94141 l -0.008,-0.01 c -1.34248,-2.5842 -3.24606,-4.67218 -5.61719,-6.13867 -0.002,-10e-4 -0.006,-4.8e-4 -0.008,-0.002 -2.36131,-1.52172 -5.03574,-2.25914 -7.91992,-2.23242 z m -0.41211,8.49805 c 1.56209,-0.0145 2.79249,0.3513 3.80078,1.03516 l 0.008,0.002 0.008,0.0117 c 1.0825,0.71163 1.88467,1.63895 2.49414,2.91992 l 0.0156,0.0176 0.008,0.0254 c 0.63222,1.22532 0.97461,2.68442 0.97461,4.42383 0,1.69769 -0.33934,3.23962 -1.02735,4.6582 l -0.008,-0.002 v 0.008 c -0.64878,1.37566 -1.55086,2.44487 -2.73047,3.24219 l -0.008,0.006 c -1.12319,0.78261 -2.43986,1.17693 -4.00195,1.1914 -1.56209,0.0145 -2.81867,-0.34846 -3.875,-1.04297 -1.08123,-0.71077 -1.90661,-1.65775 -2.55274,-2.93554 -0.6105,-1.32551 -0.93164,-2.81398 -0.93164,-4.50977 0,-1.74641 0.32171,-3.26575 0.9668,-4.59765 0.68795,-1.37891 1.619,-2.4584 2.79883,-3.25586 1.1659,-0.78807 2.49845,-1.17889 4.06054,-1.19336 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,6.3089002,21.778617)" + id="path1984" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:url(#linearGradient2470);stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 46.115336,189.10691 c 0,0 0.754949,-0.19045 1.149582,0.0278 0.394632,0.21825 0.49758,0.98389 0.49758,0.98389" + id="path2456" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 46.853128,191.57988 c 0,0 0.74637,-0.32574 1.304004,0.19825 0.291684,0.27621 0.583371,1.6162 0.583371,1.6162 0,0 -0.602679,-1.0894 -0.857898,-1.3387 -0.540475,-0.52794 -1.029477,-0.47575 -1.029477,-0.47575 z" + id="path2458" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsc" /> + <path + style="fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 50.936719,189.3814 c 0,0 0.58337,-0.22829 1.063792,0.15902 0.480423,0.3873 0.377475,0.84845 0.377475,0.84845 0,0 -0.35457,-0.34156 -0.652002,-0.62244 -0.297432,-0.28088 -0.789265,-0.38503 -0.789265,-0.38503 z" + id="path2460" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccczc" /> + <path + style="fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 54.119519,189.543 c 0,0 1.355477,-0.27683 2.367794,0.38301 1.192478,0.79864 1.286849,2.52709 1.286849,2.52709 0,0 -0.689885,-1.26965 -1.621428,-2.05565 -0.815329,-0.68794 -2.033215,-0.85445 -2.033215,-0.85445 z" + id="path2462" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsc" /> + <path + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 59.875235,190.09701 c 0,0 0.676445,-0.14462 1.156867,0.24269 0.480423,0.3873 0.302599,1.7312 0.302599,1.7312 0,0 -0.127784,-0.95171 -0.56474,-1.43108 -0.436956,-0.47937 -0.894726,-0.54281 -0.894726,-0.54281 z" + id="path2460-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccczc" /> + <path + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 69.915249,193.12308 c 0,0 1.457693,-0.28976 2.528546,0.28547 1.559857,0.71176 1.305085,1.75616 1.305085,1.75616 0,0 -0.609055,-0.81634 -1.469405,-1.31256 -0.931088,-0.53702 -2.364226,-0.72907 -2.364226,-0.72907 z" + id="path2462-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsc" /> + <path + style="display:inline;fill:#f07001;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 89.381922,191.84867 -0.545963,1.56909 -1.043397,-0.36712 0.691554,-1.50545 c 0,0 0.691552,0.14457 0.897806,0.30348 z" + id="path2660" + inkscape:connector-curvature="0" /> + <path + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 84.047061,194.60204 c 0,0 0.936428,-1.18225 2.457389,-1.47985 1.888827,-0.53361 2.348343,0.2686 2.348343,0.2686 0,0 -1.126945,-0.0998 -2.231797,0.12674 -1.195696,0.24516 -2.573935,1.08451 -2.573935,1.08451 z" + id="path2462-2-4-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsc" /> + <path + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 89.231737,192.64067 c 0,0 0.976709,-0.75402 1.602974,-0.21145 0.480423,0.3873 0.259704,1.80968 0.259704,1.80968 0,0 -0.06773,-1.00839 -0.504687,-1.48776 -0.436956,-0.47937 -1.357991,-0.11047 -1.357991,-0.11047 z" + id="path2460-6-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccczc" /> + <path + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 94.794897,192.92812 c 0,0 0.750908,-1.16681 2.457389,-1.5828 1.706481,-0.41599 2.554238,0.55592 2.554238,0.55592 0,0 -1.375735,-0.40301 -2.480587,-0.17647 -1.195696,0.24516 -2.53104,1.20335 -2.53104,1.20335 z" + id="path2462-2-4-8-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czcsc" /> + <path + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 102.84473,191.84708 c 0,0 0.86491,-1.6086 2.52404,-2.38939 1.65913,-0.78078 2.82902,-0.11565 2.82902,-0.11565 0,0 -1.27548,-0.0938 -3.02153,0.83043 -1.72491,0.91299 -3.12937,3.23893 -3.12937,3.23893 0.21486,-0.52431 0.42695,-1.04878 0.79784,-1.56432 z" + id="path2462-2-4-8-6-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czcscc" /> + <path + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 179.52344,308.39844 -7.41016,7.50781 0.82227,3.2832 c 0.2993,1.1947 1.02439,2.31173 2.07812,3.19141 l 0.01,0.006 0.01,0.006 c 1.05939,0.8473 2.33299,1.34082 3.61914,1.41601 1.28613,0.0753 2.41094,-0.28776 3.10743,-1.07617 l 0.006,-0.0137 0.0117,-0.0117 c 0.67054,-0.82105 0.84424,-1.94596 0.54493,-3.14062 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + id="path2677" + inkscape:connector-curvature="0" /> + <path + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 191.64844,309.43164 -8.94532,5.78125 c 0.15535,0.93915 0.55012,1.87032 1.16407,2.71289 l 0.0156,0.0117 0.008,0.008 c 0.82171,1.07942 1.93668,1.86842 3.16602,2.25391 1.22933,0.38537 2.40428,0.29829 3.27148,-0.29688 l 0.0137,-0.004 0.008,-0.006 c 0.84997,-0.63356 1.29883,-1.68051 1.29883,-2.91211 z m 20.23437,2.5 -9.02148,7.45508 v 1.2832 c 0,1.23164 0.43968,2.49015 1.24805,3.59961 l 0.008,0.01 0.008,0.0176 c 0.82171,1.07938 1.93668,1.8606 3.16602,2.24609 1.22932,0.38537 2.40427,0.30621 3.27148,-0.28906 l 0.0137,-0.0117 0.008,-0.006 c 0.84997,-0.63344 1.29883,-1.67462 1.29883,-2.90625 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + id="path2704" + inkscape:connector-curvature="0" /> + <path + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 225.78711,332.85742 -9.60742,5.22852 c 0.17911,0.86298 0.55434,1.70867 1.13672,2.45898 l 0.0137,0.01 0.008,0.0176 c 0.84303,1.03654 1.99494,1.74267 3.22656,2.02539 1.23163,0.28271 2.37572,0.10259 3.21875,-0.54688 l 0.006,-0.01 0.0156,-0.008 c 0.82781,-0.68649 1.26172,-1.74102 1.26172,-2.97265 v -5.70508 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + id="path2731" + inkscape:connector-curvature="0" /> + <path + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 269.63672,336.9043 -6.85547,3.9375 c 0.42343,0.31212 0.79503,0.62202 1.07031,0.92382 0.37384,0.40972 0.53906,0.78556 0.53906,1.41602 0,0.83055 -0.2019,1.21583 -0.50195,1.42774 -0.3785,0.26234 -0.80673,0.38678 -1.35156,0.38281 -0.63624,-0.0414 -1.21484,-0.10843 -1.73438,-0.19141 -1.1686,-0.27037 -2.16521,-0.64111 -3.02539,-1.08398 l -7.10351,4.08008 c 0.71775,0.58909 1.4743,1.12667 2.27539,1.5957 l 0.008,0.002 0.008,0.01 c 2.39625,1.36231 4.8055,2.32104 7.21875,2.875 1.96007,0.44993 3.8841,0.5174 5.75,0.19922 l 0.008,0.002 0.008,-0.006 c 1.88957,-0.36407 3.49592,-1.17026 4.76758,-2.4043 1.3183,-1.27934 1.98632,-3.08898 1.98632,-5.27343 0,-1.83667 -0.33456,-3.49081 -1.07031,-4.94727 -0.5309,-1.08164 -1.19954,-2.06927 -1.99609,-2.94531 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + id="path2733" + inkscape:connector-curvature="0" /> + <path + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 298.05078,360.48242 c -0.43066,0.0198 -0.82319,0.11956 -1.16406,0.32031 -0.37017,0.21777 -0.80618,0.41303 -1.29297,0.58204 -0.34787,0.0921 -0.82916,0.13315 -1.45313,0.0938 -0.62774,-0.0394 -1.42076,-0.1624 -2.35546,-0.37696 -0.36397,-0.0836 -0.71112,-0.18878 -1.05078,-0.30664 l -7.32422,5.14063 c 2.19959,1.62388 4.71111,2.75329 7.49609,3.39257 2.14181,0.49169 4.14526,0.71497 5.99414,0.64649 l 0.008,-0.006 0.008,0.002 c 1.87148,-0.0993 3.41573,-0.41886 4.63476,-1.00976 l 0.008,-0.006 0.008,-0.006 c 1.24402,-0.64749 2.03711,-1.67739 2.03711,-3.02539 0,-1.1243 -0.35294,-2.2549 -1.05469,-3.22461 -0.73923,-1.05845 -1.87591,-1.78112 -3.10156,-2.0625 -0.49705,-0.11408 -0.96583,-0.17413 -1.39649,-0.1543 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + id="path2735" + inkscape:connector-curvature="0" /> + <path + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 337.5625,354.42188 -17.62695,11.89843 c 0.22027,0.007 0.43962,0.0177 0.66211,0.0156 1.57838,-0.0145 3.04527,-0.27821 4.38476,-0.79297 l 0.008,0.002 v -0.008 c 1.33867,-0.53974 2.51149,-1.17864 3.50586,-1.93359 0.34307,-0.26066 0.53172,-0.53755 0.82813,-0.80079 0.22254,0.48966 0.19762,1.05948 0.58203,1.46289 l 0.0156,0.0117 0.0137,0.0176 c 0.91962,0.91122 2.13731,1.34921 3.35156,1.33789 1.21422,-0.0112 2.26751,-0.43599 3.05664,-1.23242 l 0.008,-0.0137 0.008,-0.006 c 0.77873,-0.83178 1.20312,-1.90899 1.20312,-3.14063 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + id="path2737" + inkscape:connector-curvature="0" /> + <path + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 352.17969,369.43945 -9.00977,6.09961 c 0.003,1.25795 0.45866,2.51606 1.38477,3.4336 0.91963,0.91118 2.13732,1.3492 3.35156,1.33789 1.2226,-0.0115 2.27954,-0.4701 3.06445,-1.30469 0.78223,-0.7953 1.20899,-1.86189 1.20899,-3.08789 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + id="path2739" + inkscape:connector-curvature="0" /> + <path + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 409.2207,345.81836 -6.25586,8.3418 2.4668,-0.27735 c 1.11209,-0.12543 2.09007,-0.59233 2.89258,-1.35156 0.81838,-0.77437 1.30284,-1.78714 1.35156,-2.95898 v -0.0215 -0.0234 c -2e-5,-1.28056 -0.16243,-2.51481 -0.45508,-3.70898 z m -5.11132,10.97461 c -0.26414,-0.0248 -0.52842,-0.0216 -0.78907,0.008 -0.78255,0.0883 -1.53466,0.38874 -2.30273,0.85938 l -0.0156,0.004 -0.008,0.006 c -0.42584,0.28029 -0.905,0.63018 -1.42969,1.02539 l -7.5039,10.00586 c 0.65359,0.004 1.31681,-0.0127 1.98828,-0.0469 v 0.31054 l 1.32812,-0.14648 c 2.03974,-0.23001 4.01173,-0.77739 5.91211,-1.63867 v -0.008 l 0.008,0.002 c 1.87793,-0.89108 3.36013,-1.84605 4.45117,-2.89063 1.17762,-1.06215 1.88281,-2.24937 1.88281,-3.64258 0,-1.01805 -0.48814,-2.10713 -1.31445,-2.85546 -0.62989,-0.59541 -1.41462,-0.91793 -2.20703,-0.99219 z" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + id="path2741" + inkscape:connector-curvature="0" /> + <path + style="fill:#be5609;fill-opacity:0.409091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 75.241155,197.52883 6.224995,-1.18801 1.075762,-1.41625 -1.917661,-0.96297 -2.806329,1.39254 c -0.968578,0.64041 -1.78197,1.40039 -2.576767,2.17469 z" + id="path8563" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + </g> + <path + style="fill:none;stroke:url(#linearGradient5453);stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 108.35789,258.40318 2.52223,0.77211 2.5308,-0.92653" + id="path5445" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="fill:url(#linearGradient5501);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 132.6441,262.88733 c -3.33532,1.19991 -6.55435,2.57426 -10.50788,2.84686 0,0 -0.0589,-0.0232 -0.0796,-0.031 l -1.66554,2.0159 c 0.0236,0.008 0.0472,0.0174 0.0708,0.0248 4.93991,1.54895 12.1822,-4.85655 12.1822,-4.85655 z" + id="path5467" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#d13c33;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 121.76683,265.20631 -1.35548,2.47074 2.52222,-2.31632 z" + id="path5485" + inkscape:connector-curvature="0" /> + <path + style="fill:#b41f1f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.7853,260.59082 10.08888,2.57369 c 0,0 3.4659,2.8139 6.48571,4.42675 0,0 -9.48835,-2.3678 -16.57459,-7.00044 z" + id="path5511" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:url(#linearGradient5521);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 134.70393,249.95289 c 0.41296,-0.22243 1.8174,-1.24633 2.21336,-3.34579" + id="path5513" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#de7474;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 116.79102,269.084 c 0,0 1.21823,0.75495 1.97317,1.54422 0,0 3.05412,-1.49274 5.81655,-1.13242 0,0 -3.24286,-1.23539 -5.02728,-0.96086 -1.78443,0.27453 -2.76244,0.54906 -2.76244,0.54906 z" + id="path5564" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsc" /> + <path + style="fill:none;stroke:url(#linearGradient5574);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" + d="m 119.58777,278.24635 c 0,0 1.25289,-1.98879 0.78927,-4.85571 -0.46361,-2.86691 -3.62585,-4.20056 -3.62585,-4.20056" + id="path5566" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czc" /> + <path + style="display:inline;fill:none;stroke:url(#linearGradient5574-1);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" + d="m 119.89983,278.20903 c 0,0 1.25289,-1.98879 0.78927,-4.85571 -0.46361,-2.86691 -3.62585,-4.20056 -3.62585,-4.20056" + id="path5566-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czc" /> + <path + style="fill:#de381f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.58162,275.6555 18.89002,-15.11765 -0.73448,-0.0431 c 0,0 -24.40163,10.77394 -27.07767,13.30767 -2.67604,2.53373 -3.92658,3.38894 -1.99865,6.53322 3.38449,5.51981 8.4015,3.67222 9.27362,-0.15047 0.82358,-1.78442 -0.48043,-3.36295 1.64716,-4.52969 z" + id="path1758" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccczscc" /> + <path + style="fill:#000000;fill-opacity:0.207071;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 151.2785,259.71576 2.77959,3.51738 4.39243,-3.62032 z" + id="path2111" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#radialGradient5871);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 156.64091,261.10234 -23.0064,12.34189 c 0,0 -7.74973,4.47612 -4.72993,9.00581 1.69056,2.53583 8.7081,4.70534 18.06407,-1.10731 l -7.2087,-2.39384 c -1.56893,-0.65648 -2.55853,-1.88917 -1.12913,-3.33468 z" + id="path5830" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="opacity:1;fill:none;stroke:#8e3232;stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 121.47697,283.47392 c 0,0 -1.58841,0.95074 -4.12117,0.80421" + id="path2350" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="display:inline;opacity:1;fill:none;stroke:#fe7d7d;stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 121.4747,283.69537 c 0,0 -1.45496,0.85974 -3.9877,0.77993" + id="path2350-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="display:inline;opacity:1;fill:url(#linearGradient1910);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.20443,263.76118 c -0.11527,-0.005 -0.21753,10e-4 -0.31006,0.0155 0.94356,0.26762 2.64054,0.73864 3.88927,2.47941 1.24872,1.74078 2.28336,4.1536 1.31042,7.08538 -0.33259,1.00221 -1.54677,0.16255 -2.22015,0.33971 0,0 -0.502,0.17024 -0.52627,0.607 0.0359,0.32337 0.0249,0.70642 0.0221,0.9091 l 0.5327,-0.2156 c 0,0 -0.48128,-1.63276 0.77464,-1.19321 1.2559,0.43958 1.84194,0.188 2.19779,-2.99361 0.35583,-3.18165 -2.49073,-6.30008 -4.89789,-6.90708 -0.30089,-0.0759 -0.55723,-0.1179 -0.77256,-0.1266 z" + id="path1198-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cczsccccccccc" /> + <path + style="fill:url(#linearGradient1953);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 115.21984,275.40182 c -0.0435,-0.003 -0.0892,0.002 -0.13591,0.0108 0.13594,0.15903 1.20405,1.62539 0.34556,4.31422 -0.90937,2.84822 -1.98426,4.61055 -4.0089,5.41697 -0.77613,0.30914 -1.47038,0.41811 -2.03295,0.43615 0.26591,0.1225 0.55825,0.19443 0.88057,0.20206 5.37947,-0.90006 6.67697,-7.89104 5.81876,-9.46092 -0.32182,-0.58872 -0.56112,-0.89762 -0.86713,-0.91933 z" + id="path1920" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccccc" /> + <path + style="fill:url(#linearGradient2014);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.21683,263.95105 c 0,0 1.44363,0.30926 2.68129,1.33457 1.23766,1.02532 2.32944,3.13019 2.54783,4.98647 0,0 -1.06766,-3.05739 -2.43864,-4.3313 -1.37097,-1.27391 -2.79048,-1.98974 -2.79048,-1.98974 z" + id="path2006" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czcsc" /> + <path + style="fill:url(#linearGradient2024);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 115.22966,275.67266 c 0,0 1.38978,1.97316 -0.18875,5.31896 0,0 0.98659,-4.04927 -0.20589,-4.76991 -0.66058,-0.22305 -1.16674,0.5319 -1.16674,0.5319 0,0 1.14959,-1.49274 1.56138,-1.08095 z" + id="path2016" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient2034);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 104.1113,279.46456 c 0,0 -0.34316,1.16674 -0.24021,2.14474 0.10294,0.97801 0.34316,2.98549 0.34316,2.98549 0,0 -0.58337,-1.59569 -0.60053,-2.47075 -0.0171,-0.87505 -0.0858,-1.63 0.49758,-2.65948 z" + id="path2026" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;fill-opacity:0.207071;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.20443,263.76118 c -1.5073,-0.061 -1.01727,1.50282 0.0816,4.39663 0.59731,1.57291 0.72879,2.67706 0.70435,3.40755 0.17233,-0.61032 0.5462,-1.5186 1.36167,-2.27583 1.21326,-0.97057 2.281,-1.16479 2.281,-1.16479 -1.1267,-2.78114 -1.63645,-2.77025 -3.70106,-4.24625 -0.28019,-0.0684 -0.52384,-0.10906 -0.72761,-0.11731 z" + id="path2082" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#a82a19;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 164.08408,261.54211 c 0,0 3.7754,-1.07402 6.06842,-2.66419 0.67786,-0.47007 1.32016,-1.38651 1.3843,-2.57107 0.0641,-1.18456 0.007,-2.93489 0.007,-2.93489 l -4.49496,2.02035 z" + id="path2441" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cszccc" /> + <path + style="opacity:1;fill:url(#radialGradient2146);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 151.30748,259.75524 c 0,0 -0.28266,-0.55678 0.15896,-1.13416 0.69574,-0.9096 1.91157,-2.21098 3.5594,-2.88098 2.69379,-1.09527 4.08509,-1.12489 4.08509,-1.12489 l 7.1637,3.01941 -3.16742,3.9667 z" + id="path2443" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccccc" /> + <path + style="opacity:1;fill:#c83737;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 151.29032,259.75524 8.91589,1.99409 c 0,0 2.8714,0.62163 3.87787,-0.26642 1.5393,-1.3913 3.76019,-6.44642 3.76019,-6.44642 l -0.93501,-0.3588 c 0,0 -2.44035,5.73958 -3.86125,6.21321 -1.42092,0.47364 -11.71132,-2.02971 -11.71132,-2.02971 -0.29921,0.35107 -0.20459,0.58875 -0.0464,0.89405 z" + id="path2437" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + style="opacity:1;fill:#de8787;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 166.90926,254.67769 2.95692,-1.33339 c 0.72189,-0.31616 1.16929,-0.0833 1.67762,0.0277 l -3.69953,1.66453 z" + id="path2439" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:none;stroke:url(#linearGradient2164);stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 152.26668,259.04952 c 0.11497,-0.0766 7.75358,1.54345 9.31948,1.73702" + id="path2113" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:url(#linearGradient2172);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 170.57503,253.9551 -2.70943,1.21747 -0.68592,-0.24471" + id="path2115" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:url(#linearGradient2180);stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 167.9143,255.16799 -1.40528,3.01388" + id="path2117" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#ff8080;fill-opacity:0.308081;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 153.50903,257.05628 c 0,0 7.21984,-0.13726 9.07289,0.0343 1.85306,0.17158 2.86904,0.20589 2.86904,0.20589 l -6.34844,-2.71095 c 0,0 -1.68795,0.24782 -3.10394,0.78855 -1.70718,0.58925 -3.07191,1.68219 -3.07191,1.68219 z" + id="path2148" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:none;stroke:#df7271;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 135.79074,261.88853 21.86277,-9.19644" + id="path2190" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#7d140b;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 157.45939,251.89135 c 0,0 0.4125,0.24265 0.10919,0.84927" + id="path2193" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#b03232;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 153.50903,240.99645 7.78971,-2.64233" + id="path2250" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#df4747;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 149.35218,244.26781 c 0,0 0.48042,-1.13242 0.51473,-2.19622" + id="path2254" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#b03232;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 149.9745,242.12887 -4.56402,1.57853" + id="path2252" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#df4747;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 160.58996,240.82575 c 0,0 0.70226,-0.88978 0.77089,-2.60557" + id="path2256" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#8f3028;fill-opacity:0.39899;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 132.42192,250.75932 0.0343,7.18917 c 0,0 0.27453,0.96085 1.42411,1.54422 l -0.97802,-0.30887 c 0,0 -0.90937,-0.66915 -0.90937,-1.20105 0,-1.09811 0.10292,-7.15487 0.10292,-7.15487 z" + id="path2269" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccscc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.59, 1.59;stroke-dashoffset:0;stroke-opacity:0.525253" + d="m 103.858,242.74344 52.02416,-14.36488" + id="path2370" + inkscape:connector-curvature="0" /> + <g + id="g3006" + transform="rotate(2.5572893,64.327736,589.08542)"> + <path + inkscape:connector-curvature="0" + id="path2977" + d="m 126.93966,159.58336 -4.39658,6.26747 0.91056,1.22489 8.11176,-3.39717 -2.3339,-4.37583 z" + style="fill:#fecbaa;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#e3dbdb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 126.98187,159.61868 -4.02241,5.75298 0.79513,0.60804 6.01022,-5.84652 -0.93544,-0.79513 z" + id="path3012" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path2967" + d="m 157.10771,147.51614 -9.16735,1.26284 c -6.17697,2.13737 -14.02825,7.20476 -21.09424,10.89792 0,0 1.70317,-0.0879 2.07735,0.52017 0.37418,0.60804 0.53156,1.29426 0.53156,1.29426 l 20.49659,-11.40272 z" + style="fill:#4795ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccsccc" /> + <path + inkscape:connector-curvature="0" + id="path2979" + d="m 131.55818,163.34446 0.43287,1.05643 -0.98221,2.0112 -7.76774,0.72278 z" + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path2969" + d="m 129.4583,161.51541 c 0,0 0.70864,0.3364 1.08282,0.94443 0.37417,0.60804 0.39756,1.28389 0.39756,1.28389 l 20.93055,-12.11164 -1.65073,-1.73625 z" + style="fill:#207eff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + id="path2971" + d="m 151.82245,151.7724 5.28526,-4.16272 -6.87551,2.38538 z" + style="fill:#1158ca;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2981" + d="m 123.19789,164.96215 -1.844,2.11864 c -0.0117,0.16537 -0.28599,0.40897 0.17656,0.43301 l 3.44478,-0.54044 c 0,0 0.0468,-1.02899 -0.32741,-1.49671 -0.37417,-0.46772 -1.44993,-0.5145 -1.44993,-0.5145 z" + style="fill:#4e4e4e;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <g + id="g8698" + transform="matrix(0.75355967,0,0,0.75355967,33.808326,40.21793)"> + <path + sodipodi:nodetypes="ccccc" + style="fill:#9e9e9e;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 133.28385,165.10519 c 0,0 0.42995,0.62839 0.89297,0.79375 0.46302,0.16537 2.61276,0.52917 2.61276,0.52917 l -0.76067,-3.43959 z" + id="path2989" + inkscape:connector-curvature="0" /> + <path + style="fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 135.86354,163.28618 0.8599,3.175 c 0,0 2.41432,-1.15755 3.63802,-2.74505 1.22369,-1.5875 2.11666,-3.27422 2.11666,-3.27422 l -0.59531,-0.99219 z" + id="path2991" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path3014" + d="m 133.28385,165.13826 2.97656,-0.19843 5.95313,-4.82865 -0.19844,-1.78594 -8.79739,5.29167 z" + style="display:inline;opacity:1;fill:#000000;fill-opacity:0.262626;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + inkscape:connector-curvature="0" + id="path2973" + d="m 130.89191,163.69931 c 0,0 0.65481,0.6548 0.65481,1.30961 0,0.65481 -0.58465,1.40317 -0.58465,1.40317 0,0 18.19437,-10.00924 21.42165,-13.6107 l -0.60804,-1.26285 z" + style="fill:#1158ca;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cscccc" /> + <path + inkscape:connector-curvature="0" + id="path2975" + d="m 152.36977,152.8647 4.78471,-5.20825 -5.47259,3.91776 z" + style="fill:#0f4eb2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + inkscape:connector-curvature="0" + id="path2987" + d="m 151.35992,153.68722 4.34462,0.89151 1.91766,-1.12253 -1.88224,-3.94394 z" + style="fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 151.3582,153.71157 1.62058,0.3142 3.42304,-3.30729 -0.59531,-1.55443 z" + id="path3031" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path2983" + d="m 149.53062,149.05962 2.1749,-4.49013 2.38538,-1.19269 1.28624,4.37319 z" + style="fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path2985" + d="m 151.96277,151.39823 3.88209,-2.80633 3.99902,1.47332 -2.12813,1.8475 z" + style="fill:#e4e4e4;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ffffff;fill-opacity:0.282828;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 145.29875,150.29671 -6.28245,2.94926 -11.7518,6.28359 -2.98534,4.44066 c 0,0 5.29159,-4.16912 9.33249,-5.94144 4.0409,-1.77231 16.87446,-8.99376 16.87446,-8.99376 -1.61675,0.29768 -2.91626,0.24847 -5.18736,1.26169 z" + id="path3033" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:none;stroke:#f0f0f0;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 149.55886,148.998 2.18557,-4.43449 2.34818,-1.16426" + id="path8693" + inkscape:connector-curvature="0" /> + </g> + <g + aria-label="1.0" + transform="matrix(0.48517169,-0.42792925,0.6422277,0.33430735,208.49245,6.2811784)" + style="font-style:normal;font-weight:normal;font-size:10.4308px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:0.479798;stroke:none;stroke-width:0.26077" + id="text3070"> + <path + d="m -398.77068,172.58806 q -0.1931,0.01 -0.32485,-0.0959 -0.13221,-0.1125 -0.14385,-0.28435 l -0.22576,-3.33064 0.1064,0.14036 -0.50351,0.33117 q -0.0994,0.0648 -0.21667,0.071 -0.1793,0.009 -0.30505,-0.11018 -0.12621,-0.12609 -0.13606,-0.27147 -0.0152,-0.22469 0.1905,-0.35473 l 1.00105,-0.64876 q 0.11321,-0.0655 0.29252,-0.0749 0.17931,-0.009 0.29772,0.10386 0.12486,0.10628 0.1365,0.27809 l 0.2589,3.81967 q 0.0116,0.17182 -0.11134,0.29757 -0.11653,0.11879 -0.31652,0.12915 z" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#ffffff;fill-opacity:0.479798;stroke-width:0.169069" + id="path3090" + inkscape:connector-curvature="0" /> + <path + d="m -396.97723,173.18355 q -0.20206,0.0166 -0.32436,-0.0717 -0.11605,-0.0955 -0.13695,-0.28408 l -0.0122,-0.11056 q -0.0209,-0.18862 0.0728,-0.29482 0.1,-0.11328 0.30202,-0.12997 l 0.0905,-0.007 q 0.20207,-0.0166 0.31811,0.0787 0.1223,0.0884 0.1432,0.27698 l 0.0122,0.11057 q 0.0209,0.18864 -0.079,0.30191 -0.0937,0.10619 -0.29577,0.12288 z" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#ffffff;fill-opacity:0.479798;stroke-width:0.169069" + id="path3092" + inkscape:connector-curvature="0" /> + <path + d="m -393.33979,174.93617 q -0.53846,0.18923 -1.01505,0.028 -0.47258,-0.16994 -0.84835,-0.62957 -0.378,-0.46615 -0.61575,-1.1569 -0.23999,-0.69727 -0.22758,-1.2933 0.0124,-0.59604 0.28089,-1.01909 0.2725,-0.43178 0.81095,-0.621 0.53845,-0.18923 1.01104,-0.0192 0.47659,0.16123 0.85235,0.62087 0.37577,0.45962 0.61576,1.15689 0.23775,0.69075 0.22758,1.29331 -0.0125,0.59605 -0.28491,1.02781 -0.26849,0.42305 -0.80693,0.61227 z m -0.26914,-0.78198 q 0.26298,-0.0924 0.39248,-0.32785 0.13354,-0.24415 0.1211,-0.62692 -0.0147,-0.3893 -0.19413,-0.91062 -0.18173,-0.52784 -0.40697,-0.83581 -0.22532,-0.30797 -0.47773,-0.40919 -0.24839,-0.10995 -0.51135,-0.0175 -0.25671,0.0901 -0.39025,0.33437 -0.13577,0.23762 -0.12334,0.6204 0.0125,0.38277 0.19412,0.91062 0.1794,0.52131 0.40699,0.8358 0.22531,0.30797 0.47995,0.41571 0.25242,0.10123 0.50913,0.011 z" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#ffffff;fill-opacity:0.479798;stroke-width:0.169069" + id="path3094" + inkscape:connector-curvature="0" /> + </g> + <g + id="g3111" + transform="translate(16.080892,-1.4325107)"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3108" + d="m 118.4739,177.73096 -12.95589,2.75955 0.23386,8.55931 12.86235,-2.89988 z" + style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 118.40104,177.83826 -1.71979,-0.56224 -12.63386,2.64584 1.45521,0.66146 z" + id="path3113" + inkscape:connector-curvature="0" /> + <path + style="fill:#393939;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 104.21276,179.92186 0.26458,8.36745 1.28985,0.79375 -0.23151,-8.56589 z" + id="path3115" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#radialGradient3133);fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 106.89167,181.74087 10.55026,-2.28203 0.0661,5.72161 -10.48411,2.31511 z" + id="path3117" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.227273;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 117.07067,186.11687 0.0661,1.32291 1.38907,0.46303 c 0,0 -6.94532,2.51354 -10.64948,3.24114 l -2.44736,-0.19844 -1.65364,-2.51354 -0.33073,-6.41614 1.85208,-0.72761 z" + id="path6776" + inkscape:connector-curvature="0" /> + <path + style="fill:#393939;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 117.54114,185.11431 -1.02526,-0.4961 -0.0661,-4.96094 0.95911,-0.19843 z" + id="path3119" + inkscape:connector-curvature="0" /> + <path + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 116.58203,184.51899 -9.55807,2.0836 0.0661,0.92604 10.48412,-2.38125 z" + id="path3121" + inkscape:connector-curvature="0" /> + <g + aria-label="SVG" + transform="skewY(-10.98802)" + style="font-style:normal;font-weight:normal;font-size:3.99791px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#c1ed25;fill-opacity:1;stroke:none;stroke-width:0.0999477" + id="text3125"> + <path + d="m 109.38901,206.44397 q -0.27985,0 -0.50374,-0.068 -0.22388,-0.072 -0.42777,-0.24787 -0.052,-0.044 -0.08,-0.1 -0.028,-0.056 -0.028,-0.11194 0,-0.092 0.064,-0.15992 0.068,-0.072 0.16791,-0.072 0.076,0 0.13593,0.048 0.15192,0.12394 0.29984,0.1879 0.15192,0.064 0.37181,0.064 0.14792,0 0.27186,-0.044 0.12393,-0.048 0.19989,-0.12393 0.076,-0.08 0.076,-0.17991 0,-0.11993 -0.072,-0.20389 -0.072,-0.084 -0.21988,-0.13993 -0.14793,-0.06 -0.37581,-0.092 -0.21589,-0.032 -0.3798,-0.0959 -0.16391,-0.068 -0.27586,-0.16791 -0.10794,-0.10395 -0.16391,-0.23988 -0.056,-0.13992 -0.056,-0.31183 0,-0.25987 0.13193,-0.44377 0.13593,-0.1839 0.36381,-0.27985 0.22788,-0.0959 0.50374,-0.0959 0.25986,0 0.47975,0.0799 0.22388,0.076 0.36381,0.1959 0.11594,0.0919 0.11594,0.21189 0,0.0879 -0.068,0.15992 -0.068,0.072 -0.15992,0.072 -0.06,0 -0.10794,-0.036 -0.064,-0.056 -0.17191,-0.10395 -0.10794,-0.052 -0.22788,-0.084 -0.11994,-0.036 -0.22388,-0.036 -0.17191,0 -0.29185,0.044 -0.11594,0.044 -0.17591,0.11994 -0.06,0.076 -0.06,0.17591 0,0.11993 0.068,0.19989 0.072,0.076 0.20389,0.12394 0.13193,0.044 0.31584,0.08 0.23987,0.044 0.41978,0.10394 0.1839,0.06 0.30384,0.15592 0.11993,0.0919 0.1799,0.23588 0.06,0.13992 0.06,0.34382 0,0.25986 -0.14392,0.44776 -0.14393,0.18791 -0.3798,0.28785 -0.23188,0.1 -0.50374,0.1 z" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#c1ed25;fill-opacity:1;stroke-width:0.0999477" + id="path9127" + inkscape:connector-curvature="0" /> + <path + d="m 112.92179,203.59746 q 0.0999,0 0.17191,0.068 0.076,0.064 0.076,0.16392 0,0.052 -0.024,0.10794 l -0.98748,2.31079 q -0.036,0.08 -0.10395,0.11994 -0.064,0.036 -0.13193,0.036 -0.064,-0.004 -0.12394,-0.04 -0.06,-0.04 -0.092,-0.11194 l -0.98748,-2.31879 q -0.012,-0.024 -0.016,-0.048 -0.004,-0.028 -0.004,-0.052 0,-0.11594 0.084,-0.17591 0.084,-0.064 0.15991,-0.064 0.15192,0 0.21989,0.15592 l 0.87554,2.05892 -0.13993,0.004 0.80358,-2.06292 q 0.068,-0.15192 0.21989,-0.15192 z" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#c1ed25;fill-opacity:1;stroke-width:0.0999477" + id="path9129" + inkscape:connector-curvature="0" /> + <path + d="m 114.86084,206.44397 q -0.30384,0 -0.56771,-0.11194 -0.26386,-0.11194 -0.46375,-0.30784 -0.1999,-0.1999 -0.31584,-0.45976 -0.11194,-0.25986 -0.11194,-0.55971 0,-0.29984 0.11194,-0.5597 0.11594,-0.25987 0.31584,-0.45577 0.19989,-0.19989 0.46375,-0.31183 0.26387,-0.11194 0.56771,-0.11194 0.1879,0 0.36381,0.04 0.1759,0.04 0.32383,0.11994 0.06,0.032 0.088,0.088 0.032,0.052 0.032,0.10794 0,0.0959 -0.064,0.17191 -0.064,0.076 -0.16392,0.076 -0.032,0 -0.068,-0.008 -0.032,-0.008 -0.064,-0.024 -0.0999,-0.044 -0.21189,-0.068 -0.11194,-0.024 -0.23587,-0.024 -0.25987,0 -0.47575,0.13194 -0.21189,0.12793 -0.33983,0.34781 -0.12393,0.21589 -0.12393,0.47975 0,0.25987 0.12393,0.47975 0.12794,0.21989 0.33983,0.35182 0.21588,0.12793 0.47575,0.12793 0.11993,0 0.26386,-0.024 0.14392,-0.024 0.23588,-0.064 l -0.036,0.11993 v -0.68364 l 0.068,0.06 h -0.44377 q -0.10395,0 -0.17591,-0.068 -0.068,-0.068 -0.068,-0.17191 0,-0.10395 0.068,-0.17191 0.072,-0.068 0.17591,-0.068 h 0.65566 q 0.10394,0 0.17191,0.072 0.068,0.068 0.068,0.17191 v 0.84756 q 0,0.08 -0.04,0.13193 -0.036,0.052 -0.084,0.084 -0.18391,0.11194 -0.40379,0.1799 -0.21589,0.064 -0.45576,0.064 z" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#c1ed25;fill-opacity:1;stroke-width:0.0999477" + id="path9131" + inkscape:connector-curvature="0" /> + </g> + </g> + <path + style="fill:none;stroke:#666666;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 63.821752,198.50949 c 0,0 0.970523,0.64312 2.22168,0.39756 1.251153,-0.24555 1.789035,-0.8302 1.789035,-0.8302" + id="path3296" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#b8b8b8;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 63.81006,198.74335 c 0,0 0.970523,0.64312 2.22168,0.39756 1.251153,-0.24555 1.789035,-0.8302 1.789035,-0.8302" + id="path3296-2" + inkscape:connector-curvature="0" /> + <path + style="fill:#eee9ee;fill-opacity:0.328283;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 63.903603,194.45201 -0.11693,3.92886 c 0.450368,0.22505 0.897071,0.43177 1.286235,0.35079 l 0.04677,-3.99902 c -0.62591,0.0388 -0.886256,-0.14176 -1.216075,-0.28063 z" + id="path3404" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#eee9ee;fill-opacity:0.328283;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 63.786673,198.91874 c 0.307736,0.13252 0.601081,0.26505 1.028989,0.39757 l -0.374177,1.42655 -1.099148,-0.23386 z" + id="path3406" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#eee9ee;fill-opacity:0.328283;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 63.248794,200.92995 0.982215,0.3274 -0.795125,1.5201 -1.496711,-0.70158 z" + id="path3408" + inkscape:connector-curvature="0" /> + <g + id="g3446" + transform="matrix(0.65128317,0.07829255,-0.10341453,0.4930702,116.21719,122.44412)"> + <path + inkscape:connector-curvature="0" + id="rect1273-7" + d="m 75.003068,273.56672 c 0.94478,-0.12406 1.82301,0.67191 1.96912,1.78469 l 0.346713,2.28636 c 0.168269,1.10963 -0.49685,2.1085 -1.44163,2.23255 -0.94479,0.12405 -1.800861,-0.67507 -1.96913,-1.7847 l -0.346713,-2.28636 c -0.14611,-1.11278 0.49686,-2.10849 1.44164,-2.23254 z" + style="display:inline;fill:#b41f1f;fill-opacity:1;stroke:none;stroke-width:0.226157" + sodipodi:nodetypes="ccscscc" /> + <path + inkscape:connector-curvature="0" + d="m 75.483308,273.61548 c -0.15775,-0.0314 -0.31493,-0.0707 -0.48032,-0.049 -0.2362,0.031 -0.45339,0.11679 -0.64425,0.24497 -0.19085,0.12818 -0.35506,0.29916 -0.48535,0.50092 -0.13029,0.20177 -0.22665,0.43414 -0.28114,0.68591 -0.0545,0.25177 -0.0672,0.52265 -0.0307,0.80084 l 0.346533,2.35675 c 0.0365,0.27819 0.11908,0.53641 0.23672,0.76558 0.10148,0.19766 0.23905,0.36149 0.38646,0.50962 0.15798,0.0316 0.31511,0.0708 0.48078,0.049 0.94477,-0.12405 1.58798,-1.1194 1.44187,-2.23218 l -0.346993,-2.35674 c -0.0681,-0.51841 -0.30507,-0.95577 -0.62363,-1.27567 z" + style="display:inline;fill:#071a18;fill-opacity:1;stroke:none;stroke-width:0.226157" + id="rect1273-0-2" + sodipodi:nodetypes="cccccccccccccc" /> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path2398-0" + d="m 75.179088,273.55389 c -0.0584,7.9e-4 -0.11716,0.005 -0.17621,0.0129 -0.16201,0.0213 -0.300643,0.0973 -0.442443,0.16601 l 0.950823,2.49299 1.65892,0.78943 -0.19791,-1.66404 c -0.13698,-1.04323 -0.91768,-1.808 -1.79318,-1.79731 z" + style="display:inline;fill:#000000;fill-opacity:0.181818;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="m 75.440019,273.569 c -0.15775,-0.0314 -0.271641,-0.0242 -0.437031,-0.003 -0.2362,0.031 -0.490464,0.0812 -0.681314,0.20936 -0.19086,0.12818 -0.322384,0.33547 -0.452664,0.53723 -0.13029,0.20177 -0.222272,0.43344 -0.276772,0.68521 -0.0545,0.25177 -0.0673,0.52265 -0.0307,0.80084 l 0.346543,2.2866 c 0.0365,0.27819 0.11908,0.53641 0.23672,0.76558 0.10148,0.19767 0.23905,0.36149 0.38646,0.50962 0.15798,0.0316 0.31511,0.0708 0.48077,0.049 0.94478,-0.12405 1.58799,-1.1194 1.44188,-2.23218 l -0.346983,-2.28659 c -0.068,-0.51841 -0.263628,-0.92085 -0.582188,-1.24075 z" + style="display:inline;fill:#de381f;fill-opacity:1;stroke:none;stroke-width:0.226157" + id="rect1273-0-4-5" + sodipodi:nodetypes="ccccsccccccccc" /> + <path + sodipodi:nodetypes="ccccsccccccccc" + inkscape:connector-curvature="0" + id="path2436-8" + d="m 73.734738,274.57139 c -128.639381,65.58535 -64.3196906,32.79267 0,0 z m -0.15762,0.51677 c -0.098,0.38671 -0.25201,1.3449 -0.20515,1.59965 0.18872,1.30401 0.02365,0.56279 0.130383,1.35066 0.11037,0.81484 0.62436,2.12612 1.98108,1.8634 0.38144,-0.0228 0.45934,-0.41287 0.39739,-0.92036 -0.23746,0.22959 -0.53358,0.3844 -0.86868,0.4284 -0.16567,0.0218 -0.32261,-0.0175 -0.48059,-0.0491 -0.14742,-0.14814 -0.28507,-0.31187 -0.38654,-0.50953 -0.11765,-0.22917 -0.20018,-0.48714 -0.23668,-0.76533 l -0.346713,-2.28674 c -0.0323,-0.24567 -0.0239,-0.48492 0.0155,-0.71106 z" + style="display:inline;fill:#e48a89;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <use + x="0" + y="0" + xlink:href="#g3446" + id="use3448" + transform="translate(4.5309895,-1.9124563)" + width="100%" + height="100%" /> + <g + style="display:inline" + id="g1559-4" + transform="matrix(0.88605929,0,0,0.88605929,88.497514,123.96055)"> + <path + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + id="path1460-6-5-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + id="path1462-3-3-7" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + id="path1464-9-4-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + id="path1458-2-1-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + style="display:inline" + id="g1567-4" + transform="matrix(1.1868684,0,0,1.217799,46.230074,108.19235)"> + <path + inkscape:connector-curvature="0" + id="path1561-9-4-0" + d="m 69.019794,78.565374 -1.166741,-0.240212 0.720635,-5.010118 z" + style="display:inline;fill:#829645;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1563-1-1-8" + d="m 69.019794,78.565372 1.37328,-0.737405 -1.819386,-4.512923 z" + style="display:inline;fill:#677536;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#5c6b21;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.274108,79.406974 -0.960845,0.514739 0.686319,-8.064235 1.336749,6.559629 z" + id="path1569-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#b2c859;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 70.999582,71.857478 -1.612847,4.735594 1.210741,-0.01085 z" + id="path1571-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#7f9435;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.386735,76.593072 -0.549057,2.951166 1.475585,0.377471 0.28421,-3.339492 z" + id="path1573-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1561-2" + d="m 72.440849,79.647186 -1.166741,-0.240212 0.720635,-5.010118 z" + style="fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1563-5" + d="m 72.440849,79.647184 1.37328,-0.737405 -1.819386,-4.512923 z" + style="fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 68.107463,80.446148 -1.166741,-0.240212 0.720635,-5.010118 z" + id="path1561-9-6" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 68.107463,80.446146 1.37328,-0.737405 -1.819386,-4.512923 z" + id="path1563-1-2" + inkscape:connector-curvature="0" /> + </g> + <path + id="rect402" + style="fill:#e7dae8;fill-opacity:1;stroke:none;stroke-width:0.234436" + d="m 131.0654,206.03692 h 1.41901 v 5.43955 c -0.48873,0.39347 -0.95886,0.32172 -1.41901,0 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <g + id="g400" + transform="matrix(0.88605929,0,0,0.88605929,23.585479,123.19248)"> + <path + id="rect375-5" + style="display:inline;fill:#625563;fill-opacity:1;stroke:none;stroke-width:0.186965" + d="m 120.54513,89.420008 c 1.59616,-0.636813 1.67081,-0.628004 3.23552,0.03116 0.20331,0.135032 0.23453,0.34925 0.22708,0.498481 l 0.003,3.728167 c 0.008,0.210805 0.0131,0.420579 -0.17482,0.539541 -0.9635,0.737962 -2.36526,0.592787 -3.31676,0.03522 -0.20025,-0.16602 -0.21125,-0.392027 -0.19185,-0.627657 v -3.765648 c 0.004,-0.139827 0.055,-0.328515 0.21823,-0.439287 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <ellipse + style="display:inline;fill:#a194a2;fill-opacity:1;stroke:none;stroke-width:0.146358" + id="path378-1" + cx="122.14373" + cy="89.588615" + rx="1.7445437" + ry="0.6163938" /> + </g> + <path + style="fill:none;stroke:#f0f7f6;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 175.26814,192.46419 c 0,0 -0.80121,1.36247 -2.88658,2.785 l 0.96285,9.01902 c 0,0 1.25757,-0.4738 2.73824,-2.30595" + id="path3654" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#e2e9e7;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 165.16535,185.729 3.46114,3.64822" + id="path3698" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#e7f3f1;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 172.88276,191.38843 -4.2095,-2.10475" + id="path3700" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#d8ebe9;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 174.81091,205.1857 -0.19758,-1.77683" + id="path3702" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#d8ebe9;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 173.44402,194.42862 -0.51449,-3.13374" + id="path3704" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#9fb0ac;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 165.13308,185.70962 -4.66328,-1.88516" + id="path3706" + inkscape:connector-curvature="0" /> + <ellipse + style="fill:none;fill-opacity:1;stroke:#cfd8d7;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="path3708" + cx="228.13513" + cy="186.08946" + rx="0.61586231" + ry="1.2005144" + transform="rotate(14.255647)" /> + <ellipse + style="display:inline;fill:#bbcecc;fill-opacity:1;stroke:#f0f7f6;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="path3708-4" + cx="172.91211" + cy="200.31274" + rx="0.61586231" + ry="1.2005144" /> + <path + inkscape:connector-curvature="0" + id="path3698-6" + d="m 165.32349,185.56001 3.46114,3.64822" + style="display:inline;fill:none;stroke:#7a928c;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3706-3" + d="m 165.29122,185.54063 -4.66328,-1.88516" + style="display:inline;fill:none;stroke:#6c7f7d;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3700-8" + d="m 173.03706,191.22503 -4.2095,-2.10475" + style="display:inline;fill:none;stroke:#7e9590;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path3654-2" + d="m 175.26876,192.23365 c 0,0 -0.57034,1.15726 -2.65571,2.57979 l 0.96285,9.01902 c 0,0 1.05236,-0.29424 2.53303,-2.12639" + style="display:inline;fill:none;stroke:#79918b;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3702-5" + d="m 175.07868,205.0311 -0.23386,-2.05798" + style="display:inline;fill:none;stroke:#9fb0ac;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3704-8" + d="m 173.67551,193.99287 -0.60427,-2.83875" + style="display:inline;fill:none;stroke:#819892;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + <ellipse + ry="1.2005144" + rx="0.61586231" + cy="200.16722" + cx="173.0892" + id="path3708-4-2" + style="display:inline;fill:#bbcecc;fill-opacity:1;stroke:#79918b;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <g + style="display:inline" + id="g1450-54" + transform="matrix(1.0399189,0,0,1.1555747,48.178642,147.54882)"> + <path + inkscape:connector-curvature="0" + id="path1498-1" + d="m 30.48967,82.684143 -2.522217,0.960845 -0.188738,0.480422 2.65948,0.223054 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1500-1" + d="m 27.795873,84.056777 1.321163,2.333482 1.338318,0.223052 -0.03431,-2.350638 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1502-9" + d="m 28.053241,83.576355 1.92169,-1.647161 h 1.818743 l -1.355479,0.892212 z" + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1466-7" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.08579,-1.132425 z" + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-8" + d="m 31.010669,86.165017 -1.722815,-0.279048 0.922072,-1.868406 1.370973,0.06066 z" + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-0" + d="m 31.59303,84.041828 -0.897805,2.074659 1.9412,-1.492298 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1464-60" + d="m 29.275722,85.825305 0.9706,1.237515 1.298178,-0.0364 -0.812876,-0.982733 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-6" + d="m 32.600027,84.63632 -0.206251,1.989731 -0.909939,0.412504 -0.764347,-0.970598 z" + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1468-34" + d="m 33.2521,85.463731 1.870217,-1.612846 -1.321164,-2.590851 -0.960845,1.887373 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1470-96" + d="m 30.180827,83.593514 0.102947,-1.286847 2.796746,0.326001 -0.274526,0.549055 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1472-5" + d="m 30.318091,82.28951 1.630005,-1.304003 1.938848,0.308843 -0.789265,1.355476 z" + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.822901,84.321288 -1.337203,-0.279048 0.715687,-1.868406 0.892534,-0.162393 z" + id="path1460-6-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.034703,81.992204 -0.456642,2.280554 1.506708,-1.492298 z" + id="path1462-3-9" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.476281,83.981576 0.753354,1.237515 1.007611,-0.0364 -0.630933,-0.982733 z" + id="path1464-9-8" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#445500;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 36.056518,82.792591 -0.160087,1.989731 -0.70627,0.412504 -0.593266,-0.970598 z" + id="path1458-2-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + style="display:inline" + id="g1559-2" + transform="matrix(0.88605929,0,0,0.88605929,53.424081,168.95074)"> + <path + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + id="path1460-6-5-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + id="path1462-3-3-2" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + id="path1464-9-4-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + id="path1458-2-1-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + style="display:inline" + id="g1559-5" + transform="matrix(0.88605929,0,0,0.88605929,55.681432,168.10423)"> + <path + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + id="path1460-6-5-08" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + id="path1462-3-3-6" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + id="path1464-9-4-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + id="path1458-2-1-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="g15335" + transform="matrix(1.1826133,0,0,1.1826133,-1.9547711,-44.855618)"> + <g + style="fill:#000000" + id="g2092" + transform="matrix(0.30648786,0,0,0.30648786,0.84333196,166.3971)"> + <path + d="m 108.82387,203.71197 -33.413116,34.19162 c -11.289426,13.98058 7.682979,12.35395 15.816141,16.38073 2.917493,2.98216 -11.182476,5.18334 -8.264984,8.16798 2.917492,2.98216 17.641749,5.74545 20.564209,8.72761 2.9175,2.98216 -5.971774,6.14588 -3.05428,9.12804 2.91749,2.98216 9.66528,0.15669 10.92878,7.04128 0.90037,4.91969 12.15995,2.11412 17.66662,-1.91515 2.91749,-2.98465 -5.58129,-2.70359 -2.6638,-5.68575 7.25518,-7.41933 14.01043,-2.69613 16.49266,-10.13039 1.22619,-3.6736 -10.68006,-5.66336 -7.75759,-8.64552 8.39432,-4.90228 37.40757,-8.09337 23.64089,-21.86005 l -34.63434,-35.4004 c -4.23571,-4.06658 -11.30435,-4.11135 -15.32119,0 z m 38.38007,65.90597 c 0,1.69628 12.49821,2.80806 12.49821,-0.40044 -1.78084,-5.15349 -11.02081,-4.80528 -12.49821,0.40044 z m -56.300381,9.01363 c 2.959774,2.55934 7.531257,-0.63672 8.901709,-4.20835 -2.867748,-3.81039 -13.602528,0.1368 -8.901709,4.20835 z M 145.637,273.10252 c -3.81537,3.42239 0.4278,6.89453 4.18846,4.68341 0.83819,-0.85063 -0.0224,-3.83279 -4.18846,-4.68341 z" + id="path2313" + inkscape:connector-curvature="0" + style="fill:url(#linearGradient8007);fill-opacity:1;stroke-width:0.248721" /> + <path + d="m 100.82751,256.1348 c 0.8929,0.55465 14.39843,3.29804 17.69895,3.84522 1.14412,0.24126 0.33329,1.4202 -1.2436,2.2161 -3.5567,0.94514 -20.807961,-6.06132 -16.45535,-6.06132 z" + id="path2315" + style="fill:#ffffff;fill-opacity:1;stroke-width:0.248721" + inkscape:connector-curvature="0" /> + <path + d="m 122.12545,206.10964 13.2195,13.42593 c 1.25355,1.28092 1.23614,3.76315 0.53474,4.47697 l -6.56373,-5.25049 -1.29086,7.77501 -5.48429,-2.89511 -8.78232,5.54896 -2.90755,-11.69733 -4.71823,8.16301 h -7.212889 c -2.939876,0 -3.285597,-3.73081 -0.614338,-6.40207 4.665997,-5.03659 10.020947,-10.17018 12.930977,-13.14488 2.92496,-2.98962 8.02124,-2.90506 10.88899,0 z" + id="path2317" + style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.248721" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccsccsc" + inkscape:connector-curvature="0" + id="path8009" + d="m 111.36483,205.90357 -35.099585,36.32045 c 0,0 -3.052139,3.66257 0,5.49385 3.052138,1.83128 23.806675,5.49385 23.806675,5.49385 l 21.36497,-47.30815 c 0,0 -2.74693,-2.74692 -5.49385,-2.13649 -2.74692,0.61043 -4.57821,2.13649 -4.57821,2.13649 z" + style="fill:url(#linearGradient8017);fill-opacity:1;stroke:none;stroke-width:0.863275px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + style="fill:#000000" + id="g2190" + transform="matrix(0.32175499,0,0,0.32175499,3.4326083,193.93264)"> + <g + style="fill:#000000" + transform="matrix(0.26458333,0,0,0.26458333,-1.3719515,36.637716)" + id="g7498"> + <path + d="m 139.06411,694.98079 c -0.24215,-9.92803 -0.36322,-15.49741 -0.36322,-25.54651 0,-10.0491 0,-15.9817 0.36322,-26.15187 0.24215,-10.0491 1.93718,-10.41232 10.41232,-11.01769 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -4.47972,0.24215 -11.98628,0.60537 -15.61848,0.60537 -3.6322,0 -11.8652,-0.36322 -15.73955,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47514,0.72644 10.41232,0.96859 10.65446,11.01769 0.24215,10.0491 0.36322,15.9817 0.36322,26.0308 0,10.0491 -0.12107,15.61848 -0.36322,25.66758 -0.24214,10.04909 -2.17932,10.65446 -10.65446,11.01768 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 4.72186,-0.24214 12.10735,-0.60536 15.73955,-0.60536 3.6322,0 10.65447,0.24214 15.61848,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -8.47514,-0.36322 -10.17017,-0.96859 -10.41232,-11.01768 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7131" + inkscape:connector-curvature="0" /> + <path + d="m 222.38348,644.61422 0.12107,42.01249 c 0,2.3004 -0.60537,3.63221 -1.45288,3.63221 -0.96859,0 -2.3004,-2.17932 -5.81153,-6.65904 l -41.5282,-53.51448 -15.61848,-0.24215 c -0.72645,0.72644 -0.72645,2.05825 0,2.78469 5.81152,0.36322 8.83836,4.23757 10.17017,8.95944 l -0.12108,52.0616 c 0,10.77554 -2.05824,11.50198 -10.53339,12.34949 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 5.9326,-0.12107 7.99085,-0.60536 13.07594,-0.60536 5.08508,0 6.90119,0.48429 12.95486,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -8.47514,-0.84751 -10.53339,-1.33181 -10.53339,-12.34949 l -0.12108,-38.62245 c 0,-4.11649 0.60537,-5.9326 1.57396,-5.9326 0.72644,0 2.05825,1.33181 4.1165,3.99543 l 42.25465,53.39341 c 1.3318,1.8161 2.90576,2.90576 4.84293,2.90576 1.69503,0 1.45289,-1.45288 1.45289,-3.75328 l 0.12107,-61.02103 c 0,-10.77555 2.05825,-11.50199 10.53339,-12.3495 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -5.9326,0.12107 -7.99085,0.60537 -13.07593,0.60537 -5.08509,0 -6.90119,-0.4843 -12.95487,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47515,0.84751 10.5334,1.33181 10.5334,12.3495 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7133" + inkscape:connector-curvature="0" /> + <path + d="m 265.81292,694.98079 c -0.24215,-9.68588 -0.36322,-15.25526 -0.36322,-24.82007 4.23757,0.12107 8.47514,2.05825 11.01769,5.20616 l 19.00853,23.97255 c 2.42147,3.14791 4.1165,6.78012 4.35865,8.71729 0,0.36322 0.12107,0.72644 0.60537,0.72644 2.42147,-0.12107 2.17932,-0.60536 5.81152,-0.60536 4.72187,0 7.74871,0.48429 13.43916,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -2.17932,-0.36322 -7.7487,-1.57395 -11.8652,-6.65904 l -26.51509,-31.47911 c -0.96859,-1.08966 -1.57396,-2.05824 -1.57396,-3.02683 0,-0.84752 0.12107,-1.69503 4.23757,-5.9326 l 17.79781,-18.2821 c 5.56938,-5.9326 11.62305,-7.7487 16.46599,-8.35407 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -5.69045,0.12107 -7.86978,0.60537 -12.71272,0.60537 -4.84294,0 -8.59621,-0.4843 -14.28667,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 4.35865,0.36322 9.56481,2.42147 4.60079,7.86978 l -19.37175,21.30893 c -2.54255,2.78469 -6.53797,4.96401 -11.01769,5.32723 0,-8.47514 0.12107,-14.28667 0.36322,-23.48825 0.24215,-10.0491 2.05825,-10.65447 10.53339,-11.01769 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -5.9326,0.12107 -9.68588,0.60537 -15.86062,0.60537 -6.05368,0 -9.44374,-0.4843 -15.49741,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47514,0.36322 10.17017,0.96859 10.41232,11.01769 0.24215,10.0491 0.48429,15.9817 0.48429,26.0308 0,10.0491 -0.24214,15.61848 -0.48429,25.66758 -0.24215,10.04909 -1.93718,10.65446 -10.41232,11.01768 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 5.9326,-0.12107 9.56481,-0.60536 15.73955,-0.60536 6.05368,0 9.56481,0.48429 15.61848,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -8.47514,-0.36322 -10.29124,-0.96859 -10.53339,-11.01768 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7135" + inkscape:connector-curvature="0" /> + <path + d="m 368.54187,631.78043 c -7.02226,-0.96859 -6.65904,-3.26899 -18.52424,-3.26899 -12.22842,0 -23.00396,8.11192 -23.00396,20.94571 0,11.38091 7.99085,16.82922 17.43458,20.82464 7.62763,3.39006 20.21927,6.05368 20.21927,19.85606 0,9.80695 -5.81152,16.10277 -15.37633,16.10277 -11.38091,0 -19.85605,-6.29582 -22.51967,-18.40317 -1.45288,-0.48429 -1.57395,-0.24215 -2.66362,0.36322 0.4843,9.32266 0.96859,12.47057 2.42147,18.40317 7.62763,0 10.89662,2.78469 21.67216,2.78469 5.56938,0 10.77554,-1.33181 15.01311,-3.87435 6.90119,-4.35865 11.38091,-11.8652 11.38091,-19.61391 0,-11.50198 -7.86978,-16.95028 -16.70814,-20.70356 -5.81153,-2.42147 -22.51967,-7.14334 -22.51967,-19.00854 0,-6.78011 6.41689,-14.77096 13.43916,-14.77096 11.8652,0 16.82921,8.71729 19.25068,16.70814 1.33181,0 1.57396,0.12107 2.66362,-0.72644 -0.36322,-5.81153 -0.84752,-9.20159 -2.17933,-15.61848 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7137" + inkscape:connector-curvature="0" /> + <path + d="m 421.98069,709.38853 c 11.74413,0 23.7304,-5.56938 31.9634,-16.34492 -0.60537,-1.08966 -1.45288,-1.8161 -2.78469,-1.8161 -8.59622,9.44373 -16.82922,13.19701 -28.08905,13.19701 -18.76639,0 -28.21012,-19.00854 -28.21012,-36.68527 0,-19.73498 12.59164,-35.95882 27.8469,-35.95882 16.70814,0 23.85148,11.13876 26.99939,21.55108 1.08966,0.12107 1.8161,0 2.78469,-0.60537 -0.60537,-6.29582 -1.45289,-12.10735 -2.66362,-18.76639 -6.17475,-0.60537 -11.62305,-5.44831 -26.51509,-5.44831 -23.97255,0 -39.34889,18.76639 -39.34889,41.52821 0,21.43 11.98628,39.34888 38.01708,39.34888 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7139" + inkscape:connector-curvature="0" /> + <path + d="m 489.70806,674.51937 c -2.66362,0 -3.51113,-0.96859 -3.02684,-2.17933 l 12.71272,-31.35803 h 0.36322 l 11.62305,33.53736 z m -13.68131,25.30435 7.26441,-18.76639 c 0.60537,-1.57395 1.33181,-2.66361 4.23757,-2.66361 h 25.30436 l 7.62763,22.27752 c 1.69503,4.96401 -3.14791,4.96401 -8.95944,5.32723 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 4.47972,-0.12107 11.13877,-0.60536 15.86063,-0.60536 4.96401,0 10.17017,0.48429 14.64989,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -4.72186,-0.36322 -8.71729,-0.84751 -10.89661,-7.02226 l -25.30436,-70.46477 c -1.8161,1.08966 -4.72187,2.42147 -6.29582,2.42147 l -28.08905,66.10612 c -3.14791,7.38549 -6.78011,8.59622 -12.10735,8.95944 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 4.47972,-0.12107 7.26441,-0.60536 11.98628,-0.60536 4.96401,0 8.59621,0.48429 13.07593,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -4.60079,-0.24214 -10.29124,-1.08966 -8.35407,-6.17475 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7141" + inkscape:connector-curvature="0" /> + <path + d="m 565.52655,672.34004 c 2.66362,0.84752 6.17475,1.08966 10.29125,1.08966 22.03537,0 28.33119,-13.80237 28.33119,-24.09362 0,-7.14333 -4.47971,-20.46142 -26.87831,-20.46142 -3.14791,0 -11.62305,1.21074 -16.46599,1.21074 -6.05368,0 -9.44374,-0.4843 -15.49741,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47514,0.36322 10.29125,0.96859 10.41232,11.01769 0.12107,10.0491 0.24215,15.9817 0.24215,26.0308 0,10.0491 0,15.61848 -0.24215,25.66758 -0.24215,10.17017 -1.93718,10.65446 -10.41232,11.01768 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 5.9326,-0.12107 9.56481,-0.60536 15.73955,-0.60536 6.78012,0 11.13876,0.48429 17.19244,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -8.35407,-0.48429 -12.3495,-1.08966 -12.47057,-8.11192 -0.12107,-9.08051 -0.24215,-16.82922 -0.24215,-25.54651 z m 0.24215,-34.74809 c 0.12107,-3.51113 2.05825,-5.81152 10.77554,-5.81152 8.35407,0 16.95029,4.35864 16.95029,19.73497 0,13.07594 -6.65904,19.00854 -18.40317,19.00854 -2.90577,0 -7.99085,-0.24215 -9.56481,-0.60537 v -0.60536 c 0,-10.0491 0.12108,-21.67216 0.24215,-31.72126 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7143" + inkscape:connector-curvature="0" /> + <path + d="m 647.32304,664.95456 -14.1656,0.12107 c 0,0 -0.12107,-16.46599 0.24215,-26.39402 0.12107,-2.90576 1.57395,-5.32723 4.47972,-5.32723 h 18.88746 c 9.08051,0 10.89662,6.4169 13.56023,14.77097 1.45288,0.24214 1.69503,0 2.90577,-0.60537 -0.60537,-4.96401 -2.42147,-16.95029 -2.66362,-17.91888 0,-0.24214 -0.12107,-0.36322 -0.48429,-0.36322 -2.05825,0.36322 -3.14791,0.84752 -6.05368,0.84752 h -35.35346 c -3.6322,0 -9.68588,-0.4843 -15.73955,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47514,0.36322 10.0491,0.96859 10.41232,11.01769 0.24215,9.92802 0.24215,15.9817 0.24215,26.0308 0,10.0491 0,15.73955 -0.24215,25.66758 -0.36322,10.04909 -1.93718,10.65446 -10.41232,11.01768 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 5.9326,-0.12107 12.3495,-0.60536 15.9817,-0.60536 h 26.87831 c 5.81153,0 15.49741,0.60536 15.49741,0.60536 1.69503,-6.05367 3.39006,-14.40774 4.35865,-20.58249 -1.21074,-0.72644 -1.33181,-0.96859 -2.90577,-0.60537 -2.42147,8.71729 -6.78011,17.43458 -15.9817,17.43458 h -18.88746 c -2.66362,0 -4.35865,-1.93717 -4.47972,-5.20616 -0.36322,-10.17017 -0.24215,-31.35803 -0.24215,-31.35803 l 14.1656,0.12108 c 10.29125,0.12107 10.77554,2.66361 11.13876,8.11192 0.72644,0.72644 1.93718,0.72644 2.66362,0 -0.12108,-4.23757 -0.4843,-5.69045 -0.4843,-9.44373 0,-3.99543 0.36322,-6.78012 0.4843,-10.41232 -0.72644,-0.72644 -1.93718,-0.72644 -2.66362,0 -0.36322,6.65904 -0.84751,8.11192 -11.13876,8.11192 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7145" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="text9463" + style="font-style:normal;font-weight:normal;font-size:6.00086px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.150022" + aria-label="www.inkscape.org" + transform="translate(0,-3.1659699)"> + <path + inkscape:connector-curvature="0" + id="path4604" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 22.248875,288.60978 q 0.04657,0 0.08467,0.0339 0.04233,0.0339 0.04233,0.0931 0,0.0127 -0.0042,0.0296 -0.0042,0.0169 -0.0085,0.0254 l -0.651933,1.94734 q -0.01693,0.0381 -0.05503,0.0635 -0.03387,0.0212 -0.07197,0.0169 -0.0762,-0.004 -0.1143,-0.0804 l -0.5969,-1.40547 0.0762,0.0169 -0.529167,1.38854 q -0.03387,0.0762 -0.1143,0.0804 -0.0381,0.004 -0.0762,-0.0169 -0.0381,-0.0254 -0.0508,-0.0635 l -0.668866,-1.94734 q -0.0127,-0.0296 -0.0127,-0.055 0,-0.055 0.03387,-0.0889 0.0381,-0.0381 0.09737,-0.0381 0.0381,0 0.06773,0.0212 0.03387,0.0212 0.04657,0.0635 l 0.601133,1.8034 -0.08043,-0.004 0.5461,-1.37583 q 0.03387,-0.0804 0.118533,-0.0804 0.04233,0 0.07197,0.0212 0.02963,0.0212 0.04657,0.0593 l 0.579967,1.38007 -0.09313,0.004 0.5969,-1.80763 q 0.0254,-0.0847 0.118533,-0.0847 z" /> + <path + inkscape:connector-curvature="0" + id="path4606" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 25.432143,288.60978 q 0.04657,0 0.08467,0.0339 0.04233,0.0339 0.04233,0.0931 0,0.0127 -0.0042,0.0296 -0.0042,0.0169 -0.0085,0.0254 l -0.651933,1.94734 q -0.01693,0.0381 -0.05503,0.0635 -0.03387,0.0212 -0.07197,0.0169 -0.0762,-0.004 -0.1143,-0.0804 l -0.5969,-1.40547 0.0762,0.0169 -0.529167,1.38854 q -0.03387,0.0762 -0.1143,0.0804 -0.0381,0.004 -0.0762,-0.0169 -0.0381,-0.0254 -0.0508,-0.0635 l -0.668866,-1.94734 q -0.0127,-0.0296 -0.0127,-0.055 0,-0.055 0.03387,-0.0889 0.0381,-0.0381 0.09737,-0.0381 0.0381,0 0.06773,0.0212 0.03387,0.0212 0.04657,0.0635 l 0.601133,1.8034 -0.08043,-0.004 0.5461,-1.37583 q 0.03387,-0.0804 0.118533,-0.0804 0.04233,0 0.07197,0.0212 0.02963,0.0212 0.04657,0.0593 l 0.579966,1.38007 -0.09313,0.004 0.5969,-1.80763 q 0.0254,-0.0847 0.118533,-0.0847 z" /> + <path + inkscape:connector-curvature="0" + id="path4608" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 28.615411,288.60978 q 0.04657,0 0.08467,0.0339 0.04233,0.0339 0.04233,0.0931 0,0.0127 -0.0042,0.0296 -0.0042,0.0169 -0.0085,0.0254 l -0.651933,1.94734 q -0.01693,0.0381 -0.05503,0.0635 -0.03387,0.0212 -0.07197,0.0169 -0.0762,-0.004 -0.1143,-0.0804 l -0.5969,-1.40547 0.0762,0.0169 -0.529167,1.38854 q -0.03387,0.0762 -0.1143,0.0804 -0.0381,0.004 -0.0762,-0.0169 -0.0381,-0.0254 -0.0508,-0.0635 l -0.668866,-1.94734 q -0.0127,-0.0296 -0.0127,-0.055 0,-0.055 0.03387,-0.0889 0.0381,-0.0381 0.09737,-0.0381 0.0381,0 0.06773,0.0212 0.03387,0.0212 0.04657,0.0635 l 0.601133,1.8034 -0.08043,-0.004 0.5461,-1.37583 q 0.03387,-0.0804 0.118533,-0.0804 0.04233,0 0.07197,0.0212 0.02963,0.0212 0.04657,0.0593 l 0.579966,1.38007 -0.09313,0.004 0.5969,-1.80763 q 0.0254,-0.0847 0.118533,-0.0847 z" /> + <path + inkscape:connector-curvature="0" + id="path4610" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 29.262913,290.81958 q -0.07197,0 -0.110066,-0.0466 -0.0381,-0.0466 -0.0381,-0.11853 v -0.0889 q 0,-0.0762 0.0381,-0.11853 0.0381,-0.0423 0.110066,-0.0423 h 0.02963 q 0.07197,0 0.110066,0.0423 0.0381,0.0423 0.0381,0.11853 v 0.0889 q 0,0.072 -0.0381,0.11853 -0.0381,0.0466 -0.110066,0.0466 z" /> + <path + inkscape:connector-curvature="0" + id="path4612" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 30.243525,290.69258 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 -0.05503,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -1.94733 q 0,-0.0508 0.03387,-0.0889 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0889 z m -0.127,-2.35797 q -0.0889,0 -0.135467,-0.0381 -0.04233,-0.0423 -0.04233,-0.11853 v -0.0423 q 0,-0.0762 0.04657,-0.1143 0.0508,-0.0423 0.135467,-0.0423 0.08043,0 0.122767,0.0423 0.04657,0.0381 0.04657,0.1143 v 0.0423 q 0,0.0762 -0.04657,0.11853 -0.04233,0.0381 -0.127,0.0381 z" /> + <path + inkscape:connector-curvature="0" + id="path4614" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 31.927729,288.60555 q 0.2794,0 0.4445,0.1143 0.169334,0.11006 0.2413,0.3048 0.0762,0.1905 0.0762,0.42333 v 1.2446 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 -0.05927,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -1.2319 q 0,-0.16933 -0.05503,-0.30903 -0.05503,-0.1397 -0.182033,-0.22437 -0.122767,-0.0847 -0.325967,-0.0847 -0.182033,0 -0.347133,0.0847 -0.160867,0.0847 -0.262467,0.22437 -0.1016,0.1397 -0.1016,0.30903 v 1.2319 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 -0.05927,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -1.89653 q 0,-0.0508 0.03387,-0.0889 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0889 v 0.3556 l -0.09737,0.1524 q 0.0085,-0.13547 0.08467,-0.25824 0.08043,-0.127 0.2032,-0.22436 0.122767,-0.1016 0.270934,-0.15664 0.1524,-0.0593 0.304799,-0.0593 z" /> + <path + inkscape:connector-curvature="0" + id="path4616" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 33.507292,290.81958 q -0.05503,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -2.87867 q 0,-0.0508 0.03387,-0.0889 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0889 v 2.87867 q 0,0.0508 -0.0381,0.0889 -0.03387,0.0381 -0.0889,0.0381 z m 1.439334,-2.1717 q 0.04657,0 0.08467,0.0423 0.0381,0.0381 0.0381,0.0847 0,0.055 -0.04657,0.0974 l -1.4224,1.21073 -0.0127,-0.30057 1.27,-1.0922 q 0.0381,-0.0423 0.0889,-0.0423 z m 0.03387,2.1717 q -0.05503,0 -0.09313,-0.0466 l -0.9652,-1.02446 0.1905,-0.17357 0.956733,1.02023 q 0.0381,0.0423 0.0381,0.0974 0,0.0593 -0.04657,0.0931 -0.04657,0.0339 -0.08043,0.0339 z" /> + <path + inkscape:connector-curvature="0" + id="path4618" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 35.472816,290.47668 q -0.03387,-0.0508 -0.03387,-0.0974 0.0042,-0.0508 0.05503,-0.0804 0.03387,-0.0296 0.0762,-0.0254 0.04657,0.004 0.08467,0.0423 0.1143,0.14817 0.275167,0.2413 0.1651,0.0889 0.389467,0.0889 0.118533,0 0.232833,-0.0381 0.118533,-0.0423 0.194733,-0.12276 0.0762,-0.0847 0.0762,-0.21167 0,-0.13123 -0.0762,-0.21167 -0.0762,-0.0804 -0.198966,-0.127 -0.118534,-0.0466 -0.254,-0.0804 -0.143934,-0.0381 -0.2794,-0.0847 -0.135467,-0.0508 -0.2413,-0.12276 -0.1016,-0.0762 -0.1651,-0.18204 -0.0635,-0.10583 -0.0635,-0.25823 0,-0.1778 0.09737,-0.31327 0.09737,-0.13546 0.262467,-0.21166 0.169333,-0.0762 0.381,-0.0762 0.105833,0 0.2286,0.0296 0.122767,0.0254 0.2413,0.0889 0.118533,0.0635 0.211667,0.17357 0.0381,0.0381 0.0381,0.0889 0,0.0466 -0.04233,0.0847 -0.03387,0.0254 -0.08043,0.0254 -0.04233,0 -0.07197,-0.0339 -0.1016,-0.1143 -0.2413,-0.17357 -0.1397,-0.0593 -0.300566,-0.0593 -0.122767,0 -0.232834,0.0423 -0.105833,0.0381 -0.1778,0.11853 -0.07197,0.0804 -0.07197,0.21167 0.0085,0.12276 0.08467,0.19896 0.08043,0.0762 0.207434,0.127 0.131233,0.0508 0.2921,0.0931 0.135466,0.0339 0.258233,0.0804 0.127,0.0466 0.220133,0.11853 0.09737,0.0677 0.1524,0.17357 0.05927,0.10583 0.05927,0.2667 0,0.18627 -0.105833,0.32173 -0.1016,0.13547 -0.275167,0.20744 -0.173567,0.072 -0.385233,0.072 -0.2286,0 -0.4445,-0.0889 -0.211667,-0.0889 -0.376767,-0.29633 z" /> + <path + inkscape:connector-curvature="0" + id="path4620" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 38.515523,288.60555 q 0.2032,0 0.372534,0.0466 0.169333,0.0423 0.270933,0.11854 0.105833,0.0762 0.105833,0.1651 0,0.0423 -0.03387,0.0847 -0.02963,0.0381 -0.0762,0.0381 -0.05503,0 -0.0889,-0.0254 -0.02963,-0.0254 -0.05927,-0.0593 -0.02963,-0.0339 -0.0889,-0.0635 -0.05503,-0.0254 -0.160867,-0.0466 -0.1016,-0.0212 -0.2286,-0.0212 -0.237066,0 -0.427566,0.11854 -0.1905,0.11853 -0.300567,0.32173 -0.110067,0.19897 -0.110067,0.44873 0,0.254 0.1016,0.4572 0.105834,0.2032 0.2921,0.32174 0.1905,0.1143 0.436034,0.1143 0.169333,0 0.262466,-0.0296 0.09737,-0.0296 0.160867,-0.0677 0.08467,-0.0466 0.118533,-0.0889 0.0381,-0.0466 0.09737,-0.0466 0.0508,0 0.08043,0.0339 0.02963,0.0296 0.02963,0.0804 0,0.0677 -0.1016,0.1524 -0.09737,0.0804 -0.270934,0.14394 -0.173566,0.0593 -0.402166,0.0593 -0.313267,0 -0.554567,-0.14816 -0.237067,-0.14817 -0.372533,-0.40217 -0.131234,-0.25823 -0.131234,-0.57997 0,-0.30903 0.135467,-0.56303 0.135467,-0.254 0.376767,-0.4064 0.2413,-0.15663 0.567266,-0.15663 z" /> + <path + inkscape:connector-curvature="0" + id="path4622" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 41.511335,288.65635 q 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0931 v 1.905 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 -0.05927,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -0.50377 l 0.07197,-0.0339 q 0,0.11853 -0.06773,0.2413 -0.0635,0.12276 -0.1778,0.2286 -0.1143,0.10583 -0.270934,0.17356 -0.1524,0.0635 -0.334433,0.0635 -0.283633,0 -0.512233,-0.14816 -0.224367,-0.14817 -0.3556,-0.4064 -0.127,-0.25824 -0.127,-0.57997 0,-0.3302 0.131233,-0.57997 0.131233,-0.254 0.3556,-0.39793 0.224367,-0.14393 0.503767,-0.14393 0.182033,0 0.338666,0.0635 0.160867,0.0635 0.2794,0.17356 0.118534,0.11007 0.186267,0.254 0.06773,0.1397 0.06773,0.2921 l -0.0889,-0.0635 v -0.53763 q 0,-0.055 0.03387,-0.0931 0.03387,-0.0381 0.09313,-0.0381 z m -0.880533,1.9685 q 0.224367,0 0.397933,-0.1143 0.173567,-0.11854 0.270934,-0.32174 0.1016,-0.20743 0.1016,-0.46143 0,-0.24977 -0.1016,-0.44873 -0.09737,-0.19897 -0.270934,-0.3175 -0.173566,-0.11854 -0.397933,-0.11854 -0.220133,0 -0.397933,0.1143 -0.173567,0.1143 -0.275167,0.31327 -0.09737,0.19897 -0.09737,0.4572 0,0.254 0.09737,0.46143 0.09737,0.2032 0.270933,0.32174 0.1778,0.1143 0.402167,0.1143 z" /> + <path + inkscape:connector-curvature="0" + id="path4624" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 43.329816,288.63941 q 0.287866,0 0.508,0.14394 0.224366,0.1397 0.3556,0.38946 0.131233,0.24554 0.131233,0.56727 0,0.32173 -0.131233,0.5715 -0.131234,0.24977 -0.3556,0.3937 -0.224367,0.14393 -0.503767,0.14393 -0.148167,0 -0.283633,-0.0423 -0.131234,-0.0466 -0.2413,-0.12277 -0.110067,-0.0762 -0.194734,-0.1778 -0.08467,-0.10583 -0.135466,-0.2286 l 0.0762,-0.055 v 1.31657 q 0,0.0508 -0.0381,0.0889 -0.03387,0.0381 -0.0889,0.0381 -0.05503,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -2.76014 q 0,-0.055 0.03387,-0.0931 0.03387,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0931 v 0.4572 l -0.05927,-0.0339 q 0.04233,-0.13124 0.122767,-0.23284 0.08467,-0.10583 0.194733,-0.1778 0.110067,-0.0762 0.2413,-0.1143 0.131233,-0.0381 0.275167,-0.0381 z m -0.02117,0.23707 q -0.2286,0 -0.402167,0.1143 -0.173566,0.11007 -0.275166,0.3048 -0.09737,0.1905 -0.09737,0.4445 0,0.24977 0.09737,0.44873 0.1016,0.19897 0.275166,0.31327 0.173567,0.11007 0.402167,0.11007 0.224367,0 0.3937,-0.11007 0.173567,-0.1143 0.275167,-0.31327 0.1016,-0.19896 0.1016,-0.44873 0,-0.24977 -0.1016,-0.4445 -0.1016,-0.19473 -0.275167,-0.3048 -0.169333,-0.1143 -0.3937,-0.1143 z" /> + <path + inkscape:connector-curvature="0" + id="path4626" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 45.808696,290.86191 q -0.325967,0 -0.575733,-0.1397 -0.249767,-0.1397 -0.389467,-0.38946 -0.1397,-0.24977 -0.1397,-0.5842 0,-0.35984 0.1397,-0.61384 0.143933,-0.254 0.3683,-0.38946 0.2286,-0.1397 0.4826,-0.1397 0.186267,0 0.359833,0.0677 0.1778,0.0635 0.313267,0.19473 0.135467,0.127 0.220133,0.31327 0.08467,0.18627 0.0889,0.4318 0,0.0508 -0.0381,0.0889 -0.0381,0.0339 -0.0889,0.0339 h -1.697566 l -0.0508,-0.2286 h 1.667933 l -0.05503,0.0508 v -0.0847 q -0.02117,-0.19897 -0.131234,-0.33867 -0.110066,-0.1397 -0.2667,-0.21166 -0.1524,-0.072 -0.321733,-0.072 -0.127,0 -0.262467,0.0508 -0.131233,0.0508 -0.2413,0.16087 -0.105833,0.10583 -0.173566,0.27516 -0.06773,0.1651 -0.06773,0.3937 0,0.24977 0.1016,0.45297 0.1016,0.2032 0.2921,0.32173 0.1905,0.11854 0.461434,0.11854 0.143933,0 0.262466,-0.0423 0.118534,-0.0423 0.207434,-0.11006 0.09313,-0.072 0.1524,-0.14817 0.04657,-0.0381 0.0889,-0.0381 0.04657,0 0.0762,0.0339 0.03387,0.0339 0.03387,0.0762 0,0.0508 -0.04233,0.0889 -0.127,0.1524 -0.3302,0.2667 -0.2032,0.11006 -0.4445,0.11006 z" /> + <path + inkscape:connector-curvature="0" + id="path4628" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 47.238041,290.81958 q -0.07197,0 -0.110066,-0.0466 -0.0381,-0.0466 -0.0381,-0.11853 v -0.0889 q 0,-0.0762 0.0381,-0.11853 0.0381,-0.0423 0.110066,-0.0423 h 0.02963 q 0.07197,0 0.110066,0.0423 0.0381,0.0423 0.0381,0.11853 v 0.0889 q 0,0.072 -0.0381,0.11853 -0.0381,0.0466 -0.110066,0.0466 z" /> + <path + inkscape:connector-curvature="0" + id="path4630" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 49.971254,289.73585 q 0,0.32173 -0.143934,0.57996 -0.1397,0.254 -0.381,0.40217 -0.2413,0.14393 -0.5461,0.14393 -0.300566,0 -0.5461,-0.14393 -0.2413,-0.14817 -0.385233,-0.40217 -0.1397,-0.25823 -0.1397,-0.57996 0,-0.32597 0.1397,-0.57997 0.143933,-0.254 0.385233,-0.40217 0.245534,-0.14816 0.5461,-0.14816 0.3048,0 0.5461,0.14816 0.2413,0.14817 0.381,0.40217 0.143934,0.254 0.143934,0.57997 z m -0.254,0 q 0,-0.25824 -0.105834,-0.4572 -0.105833,-0.2032 -0.2921,-0.3175 -0.182033,-0.11854 -0.4191,-0.11854 -0.232833,0 -0.4191,0.11854 -0.182033,0.1143 -0.2921,0.3175 -0.105833,0.19896 -0.105833,0.4572 0,0.25823 0.105833,0.4572 0.110067,0.19896 0.2921,0.3175 0.186267,0.1143 0.4191,0.1143 0.237067,0 0.4191,-0.1143 0.186267,-0.11854 0.2921,-0.3175 0.105834,-0.19897 0.105834,-0.4572 z" /> + <path + inkscape:connector-curvature="0" + id="path4632" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 50.621931,290.81958 q -0.05927,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -1.89653 q 0,-0.0508 0.03387,-0.0889 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0889 v 0.635 l -0.0635,0.0127 q 0.0127,-0.14817 0.07197,-0.2921 0.0635,-0.14817 0.169333,-0.27094 0.105833,-0.12276 0.249767,-0.19896 0.148166,-0.0762 0.3302,-0.0762 0.0762,0 0.148166,0.0339 0.07197,0.0296 0.07197,0.1016 0,0.0635 -0.03387,0.0974 -0.03387,0.0339 -0.08043,0.0339 -0.0381,0 -0.08467,-0.0212 -0.04233,-0.0212 -0.1143,-0.0212 -0.118533,0 -0.237066,0.072 -0.118534,0.0677 -0.2159,0.18627 -0.09737,0.11853 -0.156634,0.2667 -0.05503,0.14393 -0.05503,0.2921 v 1.04563 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 z" /> + <path + inkscape:connector-curvature="0" + id="path4634" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + d="m 52.942392,288.60555 q 0.186267,0 0.347133,0.0677 0.160867,0.0635 0.2794,0.16933 0.122767,0.1016 0.1905,0.22014 0.06773,0.1143 0.06773,0.22013 l -0.06773,-0.1016 v -0.3937 q 0,-0.055 0.03387,-0.0931 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0931 v 1.83303 q 0,0.33867 -0.1397,0.5715 -0.1397,0.23284 -0.381,0.35137 -0.237066,0.12277 -0.541866,0.12277 -0.148167,0 -0.313267,-0.0381 -0.160866,-0.0381 -0.2794,-0.0974 -0.1143,-0.0593 -0.131233,-0.12277 -0.02963,-0.0381 -0.02963,-0.0762 0.0042,-0.0339 0.0381,-0.0593 0.0381,-0.0296 0.08467,-0.008 0.0508,0.0254 0.143934,0.0635 0.0381,0.0127 0.110066,0.0381 0.0762,0.0254 0.173567,0.0423 0.1016,0.0212 0.207433,0.0212 0.381,0 0.592667,-0.22013 0.211666,-0.2159 0.211666,-0.5715 v -0.4064 l 0.04657,0.0127 q -0.0381,0.1524 -0.127,0.2667 -0.0889,0.1143 -0.207433,0.19473 -0.118534,0.0762 -0.254,0.1143 -0.135467,0.0423 -0.270934,0.0423 -0.2921,0 -0.529166,-0.14816 -0.232833,-0.14817 -0.3683,-0.40217 -0.135467,-0.254 -0.135467,-0.57997 0,-0.32173 0.135467,-0.57573 0.135467,-0.25823 0.3683,-0.40217 0.232833,-0.14816 0.524933,-0.14816 z m 0.0254,0.23706 q -0.2286,0 -0.414866,0.11854 -0.182034,0.1143 -0.287867,0.3175 -0.1016,0.19896 -0.1016,0.45296 0,0.254 0.1016,0.4572 0.105833,0.2032 0.287867,0.32174 0.186266,0.1143 0.414866,0.1143 0.232833,0 0.414867,-0.1143 0.182033,-0.1143 0.287866,-0.31327 0.105834,-0.2032 0.105834,-0.46567 0,-0.26246 -0.105834,-0.46143 -0.105833,-0.2032 -0.287866,-0.31327 -0.182034,-0.1143 -0.414867,-0.1143 z" /> + </g> + <g + style="display:inline;fill:#000000" + transform="matrix(0.07510125,0,0,0.07510125,6.9513552,214.00146)" + id="g7508"> + <path + d="m 200.67967,777.90068 q -2.83434,0 -2.83434,-3.98341 0,-3.98341 4.13661,-8.88606 6.89436,-8.27323 19.151,-9.5755 l 4.21322,-0.22981 q 13.94193,0 20.22346,11.10758 3.7536,6.81775 3.7536,15.70382 0,3.67699 -0.61284,7.737 -2.22151,13.63551 -10.57135,23.13441 -9.19248,10.49475 -21.44912,10.49475 -12.18004,0 -15.47401,-6.81776 -0.99585,-2.14491 -0.99585,-4.51963 0,-2.45133 1.30227,-5.13247 2.52793,-4.90266 6.89436,-4.90266 0.38302,0 0.45962,0.45963 0.15321,0.38302 -0.0766,0.84264 -0.15321,0.45962 -0.53623,0.45962 -2.60454,0 -4.51964,3.37058 -1.22566,2.37472 -1.22566,4.36643 0,1.9917 0.76604,3.67699 2.45133,5.20907 11.72041,5.20907 10.49475,0 18.9978,-10.72456 7.6604,-9.6521 9.88191,-22.67478 0.76604,-4.21322 0.76604,-7.96682 0,-8.34984 -3.75359,-14.09514 -4.97926,-7.737 -15.62722,-7.737 -13.3291,0 -19.99365,8.96267 -3.37057,4.59624 -3.37057,8.57965 0,1.60868 0.68943,1.60868 -0.45962,1.53208 -1.9151,1.53208 z m 11.03098,29.03292 q 0,-11.64381 2.06831,-22.59818 2.06831,-11.03098 5.05586,-17.38911 3.06416,-6.43474 5.89851,-6.43474 1.22566,0 1.22566,1.22567 -3.44718,7.12417 -6.05171,18.99779 -4.82605,21.67893 -4.82605,31.33104 0,0.99585 -1.07246,0.99585 -2.29812,0 -2.29812,-6.12832 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7108" + inkscape:connector-curvature="0" /> + <path + d="m 279.08477,792.53205 q -2.91095,0 -2.91095,-6.35814 0,-3.60038 1.37887,-6.74115 -5.20907,4.51964 -11.64381,16.85288 -6.43473,12.25664 -6.43473,16.01024 0,0.91925 -1.22567,0.91925 -2.22151,0 -2.22151,-6.05172 0,-11.414 2.29812,-20.68308 2.29812,-9.26908 5.59209,-9.26908 1.45547,0 1.45547,1.68528 -3.52378,11.18419 -5.05586,22.9046 h 0.53623 q 6.20492,-14.32495 13.71211,-22.36837 4.28983,-4.59624 7.81361,-4.59624 0.76604,0 1.22567,0.45963 0.53622,0.45962 0.53622,1.14906 -0.53622,0.53622 -1.30226,1.60868 -0.76604,1.07246 -2.06831,5.13247 -1.30227,3.98341 -1.30227,8.73285 0,0.61284 -0.38302,0.61284 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7110" + inkscape:connector-curvature="0" /> + <path + d="m 290.52181,814.5174 q -6.28153,0 -6.28153,-9.88192 0,-5.89851 2.91095,-12.94608 4.06002,-9.88191 10.64796,-13.4823 2.83435,-1.53208 5.28568,-1.53208 2.45133,0 3.8302,1.07245 1.45547,1.07246 1.83849,2.14492 l 0.45963,0.99585 q -0.22981,1.30227 -1.30227,1.30227 -1.22566,0 -1.45548,-0.53623 -0.1532,-0.61283 -0.38302,-0.99585 -0.22981,-0.45963 -1.07245,-1.14906 -0.84265,-0.76604 -1.9151,-0.76604 -4.97926,0 -9.03928,8.96266 -4.59624,10.34154 -4.59624,19.45742 0,4.59624 1.8385,4.59624 1.45548,0 4.06001,-3.21737 2.68114,-3.29397 5.5921,-8.19663 5.05586,-8.42644 8.19662,-14.63136 2.60454,-5.51549 5.36228,-5.51549 1.45548,0 1.45548,1.76189 -0.68944,1.45548 -1.76189,4.13662 -1.07246,2.68114 -2.83435,10.64796 -1.76189,7.96681 -1.76189,15.85702 0,7.89022 2.37472,7.89022 0.91925,0 1.68529,-0.84265 0.76604,-0.76604 1.37887,-2.37472 0.22981,-0.84264 1.07246,-0.84264 0.30641,0 0.45962,0.22981 0.15321,0.22981 0,0.76604 -0.15321,0.53623 -0.53623,1.45547 -0.38302,0.99586 -1.68528,2.60454 -1.22567,1.60868 -2.60454,1.60868 -3.21737,0 -4.97926,-4.21322 -1.68529,-4.21322 -1.68529,-9.95852 0,-5.7453 0.84265,-11.03097 h -0.76604 q -9.72871,16.62307 -14.63137,16.62307 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7112" + inkscape:connector-curvature="0" /> + <path + d="m 362.26266,779.81578 q 2.22151,1.68529 4.21322,1.68529 2.0683,0 2.91095,-0.53623 0,0.99585 -0.91925,1.9151 -0.84264,0.84265 -2.52793,0.84265 -1.60869,0 -3.52379,-0.76604 -0.1532,7.20077 -2.37472,14.78457 -2.22152,7.50719 -5.7453,12.63966 -3.52378,5.05586 -6.97096,5.05586 -3.44718,0 -5.28568,-2.68114 -1.9151,-2.98755 -1.9151,-8.50304 0,-3.14077 0.38302,-6.74115 -9.4989,17.00609 -14.63137,17.00609 -5.05586,0 -5.05586,-8.57965 0,-8.88607 4.36643,-18.9978 3.67699,-8.04342 6.74115,-8.42644 1.45548,0 1.45548,1.60869 -0.91925,2.22151 -2.29812,5.7453 -1.37888,3.44718 -3.677,11.10758 -2.22151,7.6604 -2.22151,11.33739 0,3.60039 1.60868,3.60039 1.99171,0 6.20493,-6.43474 4.28982,-6.43473 7.50719,-12.86947 l 3.29397,-6.35813 q 2.14491,-4.28983 3.8302,-4.28983 1.68529,0 1.68529,1.60869 -4.67284,16.01023 -4.67284,25.04951 0,4.21322 2.45132,4.21322 2.75775,0 5.7453,-4.51964 3.06416,-4.59624 5.05587,-11.87362 2.06831,-7.35398 2.06831,-14.47816 v -0.45962 q -2.22152,-1.60868 -3.60039,-3.8302 -1.37887,-2.22152 -1.37887,-3.29397 0,-1.14906 0.99585,-2.06831 0.99585,-0.91925 2.14491,-0.91925 1.45548,0 2.60454,2.60454 1.14906,2.52793 1.53208,5.8219 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7114" + inkscape:connector-curvature="0" /> + <path + d="m 402.86248,775.29615 q 0,5.66869 3.21737,6.05171 -0.22982,1.07246 -1.7619,1.07246 -3.14076,0 -4.44303,-3.8302 -0.61283,-1.76189 -0.61283,-4.28983 0,-2.60453 1.9917,-6.20492 4.51964,-8.34984 16.39326,-10.72456 4.06001,-0.76604 8.65625,-0.76604 4.67285,0 7.96682,-0.91925 3.29397,-0.91925 4.51964,-2.06831 3.21736,-2.98755 4.74944,-2.98755 1.53208,0 1.53208,0.91924 0,0.22982 0,0.45963 -0.53622,2.14491 -4.59624,4.06001 -2.45132,1.07246 -5.51548,1.68529 -2.52794,1.07245 -4.21323,5.89851 -1.68528,4.74944 -3.52378,13.78872 3.98341,-0.38302 6.58794,-0.38302 0.68944,0 0.61284,0.84264 -0.30642,0.91925 -1.60869,0.99585 -1.30227,0 -6.05171,0.76604 -3.60039,17.77213 -6.28153,25.12612 -6.74115,18.61477 -19.22761,18.61477 -8.96267,0 -11.18418,-8.19663 -0.84265,-2.83435 -0.84265,-5.6687 0,-5.36228 2.83435,-10.72456 4.28983,-8.19662 11.26079,-8.19662 0.99585,0 1.60869,0.45962 0.68943,0.45962 0.91924,1.37887 -6.58794,0 -10.87776,6.81776 -3.37058,5.28567 -3.37058,10.95437 0,8.27323 5.8219,10.11173 1.37888,0.38302 3.60039,0.38302 2.22152,0 4.67285,-1.30227 2.52793,-1.22566 4.51963,-4.59624 2.06831,-3.29397 3.37058,-5.51549 1.30227,-2.29812 2.98755,-8.12002 1.99171,-7.12417 3.37058,-13.17589 1.37887,-6.12832 1.68529,-7.35398 -4.28983,0.68943 -6.51134,0.68943 -2.14491,0 -2.45133,-1.9151 -0.0766,-1.53208 0.84264,-1.76189 0.38302,0.45962 2.37473,0.45962 2.06831,0 6.43473,-0.38302 1.9151,-7.50719 3.677,-12.18003 1.76189,-4.74945 4.13661,-7.20078 -1.22566,0.0766 -3.8302,0.0766 -14.70797,0 -20.60647,8.65626 -2.83435,4.06001 -2.83435,8.19663 z m 33.70576,15.70382 q 0,0.38302 -0.68944,0.38302 -0.68943,0 -1.37887,-0.30642 -0.61283,-0.30642 -0.61283,-0.84264 0,-7.81361 1.76189,-12.56306 1.76189,-4.82605 4.67285,-4.82605 0.76604,0 1.30226,0.53622 0.53623,0.53623 0.53623,1.45548 -3.44718,3.44718 -4.97926,10.26494 -0.61283,2.83435 -0.61283,5.89851 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7116" + inkscape:connector-curvature="0" /> + <path + d="m 465.91925,792.53205 q -2.91096,0 -2.91096,-6.35814 0,-3.60038 1.37888,-6.74115 -5.20908,4.51964 -11.64381,16.85288 -6.43474,12.25664 -6.43474,16.01024 0,0.91925 -1.22566,0.91925 -2.22152,0 -2.22152,-6.05172 0,-11.414 2.29812,-20.68308 2.29812,-9.26908 5.59209,-9.26908 1.45548,0 1.45548,1.68528 -3.52378,11.18419 -5.05586,22.9046 h 0.53622 q 6.20493,-14.32495 13.71212,-22.36837 4.28982,-4.59624 7.81361,-4.59624 0.76604,0 1.22566,0.45963 0.53623,0.45962 0.53623,1.14906 -0.53623,0.53622 -1.30227,1.60868 -0.76604,1.07246 -2.06831,5.13247 -1.30226,3.98341 -1.30226,8.73285 0,0.61284 -0.38302,0.61284 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7118" + inkscape:connector-curvature="0" /> + <path + d="m 490.9918,777.36445 q 5.82191,0 5.82191,6.81776 0,3.9068 -2.60454,8.19663 -4.44303,7.12417 -11.79701,7.12417 -1.14906,0 -1.9151,-0.38302 -0.76604,-0.38302 -1.14907,-1.14906 5.43889,0 9.95853,-6.28153 3.67699,-5.05586 3.67699,-9.26908 0,-3.14077 -2.52793,-3.14077 -5.05587,0 -9.4223,7.89022 -4.67284,8.57964 -4.67284,17.61892 0,7.6604 4.36643,9.19248 0.84264,0.30641 2.14491,0.30641 1.30227,0 2.75774,-0.61283 1.45548,-0.68944 2.45133,-1.60868 1.99171,-1.8385 3.29397,-4.06002 0.30642,-0.61283 1.14906,-0.61283 1.37888,0 1.30227,0.45963 -0.22981,0.84264 -1.76189,2.83434 -1.45548,1.99171 -2.75774,3.21737 -1.22567,1.14906 -3.29398,2.06831 -1.9917,0.99585 -4.06001,0.99585 -8.12002,0 -10.34154,-7.6604 -0.68944,-2.60453 -0.68944,-5.36228 0,-5.13247 2.37473,-11.18418 3.75359,-9.19248 10.34154,-13.25249 3.60039,-2.14492 7.35398,-2.14492 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7120" + inkscape:connector-curvature="0" /> + <path + d="m 520.72822,777.36445 q 5.82191,0 5.82191,6.81776 0,3.9068 -2.60454,8.19663 -4.44303,7.12417 -11.79702,7.12417 -1.14906,0 -1.9151,-0.38302 -0.76604,-0.38302 -1.14906,-1.14906 5.43889,0 9.95853,-6.28153 3.67699,-5.05586 3.67699,-9.26908 0,-3.14077 -2.52793,-3.14077 -5.05587,0 -9.4223,7.89022 -4.67284,8.57964 -4.67284,17.61892 0,7.6604 4.36643,9.19248 0.84264,0.30641 2.14491,0.30641 1.30227,0 2.75774,-0.61283 1.45548,-0.68944 2.45133,-1.60868 1.99171,-1.8385 3.29397,-4.06002 0.30642,-0.61283 1.14906,-0.61283 1.37888,0 1.30227,0.45963 -0.22981,0.84264 -1.76189,2.83434 -1.45548,1.99171 -2.75774,3.21737 -1.22567,1.14906 -3.29398,2.06831 -1.9917,0.99585 -4.06001,0.99585 -8.12002,0 -10.34154,-7.6604 -0.68944,-2.60453 -0.68944,-5.36228 0,-5.13247 2.37473,-11.18418 3.75359,-9.19248 10.34154,-13.25249 3.60039,-2.14492 7.35398,-2.14492 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7122" + inkscape:connector-curvature="0" /> + <path + d="m 541.65518,825.70158 q -4.44303,0 -6.58794,-4.67284 -2.06831,-4.67285 -2.06831,-14.01854 0,-9.34569 2.75774,-22.13855 2.75775,-12.79287 6.43474,-21.21931 3.7536,-8.42644 6.51134,-8.42644 1.30227,0 1.30227,1.53208 -1.60869,3.67699 -4.06001,11.10758 -2.45133,7.35398 -4.13662,13.63551 -1.60868,6.28153 -2.98756,14.70797 -1.30226,8.42644 -1.30226,14.47815 0,5.97512 1.14906,9.19249 1.22566,3.29397 3.29397,3.29397 1.76189,0 3.37057,-1.68529 1.60869,-1.60868 2.29812,-3.21737 0.38302,-0.84264 1.37888,-0.45962 0.38302,0.15321 0.1532,0.61283 -0.1532,0.53623 -0.61283,1.30227 -0.38302,0.76604 -1.45547,2.37472 -2.29812,3.60039 -5.43889,3.60039 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7124" + inkscape:connector-curvature="0" /> + <path + d="m 552.73761,838.49445 q 6.89436,0 10.80116,-6.51134 3.37058,-5.7453 5.20908,-14.32495 -13.86533,0.30642 -21.29592,10.57135 -0.45962,0.68944 -1.45547,0.22981 -0.53623,-0.30641 -0.30642,-0.76604 3.29397,-4.97926 9.19248,-8.50304 5.89851,-3.44718 14.32495,-3.7536 0.84264,-3.8302 1.60868,-8.96267 0.76604,-5.13246 1.7619,-9.95852 h -0.68944 q -9.95852,17.69553 -15.16759,17.69553 -5.82191,0 -5.82191,-8.96267 0,-8.96267 3.8302,-18.00194 3.8302,-9.11588 6.97097,-9.80531 l 0.45962,-0.0766 q 1.30227,0 1.30227,1.68529 -0.84264,2.06831 -2.14491,5.43889 -1.30227,3.29397 -3.44718,10.95437 -2.14491,7.58379 -2.14491,11.87362 0,4.21322 1.83849,4.21322 2.14491,0 6.89436,-7.43059 6.97097,-10.87777 12.10343,-22.06195 2.22152,-4.67285 4.74945,-4.67285 1.60869,0 1.60869,1.7619 -1.45548,2.68114 -3.52379,10.03512 -2.06831,7.35398 -3.37057,14.86118 -1.30227,7.43058 -2.22152,11.64381 5.8219,0.99585 6.74115,5.05586 0.15321,0.68944 0.15321,1.8385 0,1.22566 -0.91925,2.0683 -0.91925,0.91925 -1.60868,0.91925 0.15321,-0.53623 0.0766,-1.9151 -0.0766,-1.30227 -0.53623,-2.22151 -0.38302,-0.91925 -1.53208,-1.9151 -1.14906,-0.99586 -2.98755,-1.45548 -5.89851,22.21516 -20.45327,22.21516 -6.28153,0 -8.34984,-4.44303 -0.0766,-0.22981 -0.0766,-0.38302 0,-0.45963 0.84264,-0.61283 0.76604,-0.0766 1.14906,0.53622 1.37887,3.14077 6.43474,3.14077 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7126" + inkscape:connector-curvature="0" /> + <path + d="m 592.1019,815.05362 q -1.60869,0 -1.60869,-2.98755 0,-1.8385 0.99586,-3.90681 0.99585,-2.06831 2.83434,-2.06831 1.53208,0 1.53208,1.7619 0,1.76189 -2.83434,5.8985 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path7128" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0.98012979,0,0,0.98012979,22.311122,-43.843305)" + id="g5690"> + <rect + style="fill:url(#linearGradient8025);fill-opacity:1;stroke:none;stroke-width:0.146029;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="rect5386" + width="11.693553" + height="7.0069218" + x="42.538853" + y="309.14462" + ry="1.5951878" /> + <g + id="text6248-3" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.70963px;line-height:1.25;font-family:'Linux Libertine O';-inkscape-font-specification:'Linux Libertine O Bold';letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.117741" + transform="scale(1.0930261,0.91489123)" + aria-label="1.0"> + <path + inkscape:connector-curvature="0" + id="path4597" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';letter-spacing:0px;fill:#ffffff;stroke-width:0.117741" + d="m 42.328073,343.49942 q -0.13187,0 -0.216644,-0.0801 -0.08477,-0.0848 -0.08477,-0.20723 v -2.37365 l 0.06593,0.10361 -0.357932,0.21664 q -0.07064,0.0424 -0.150708,0.0424 -0.122451,0 -0.202515,-0.0895 -0.08006,-0.0942 -0.08006,-0.19781 0,-0.16013 0.145998,-0.2449 l 0.711155,-0.42387 q 0.08006,-0.0424 0.202514,-0.0424 0.12245,0 0.197805,0.0848 0.08006,0.0801 0.08006,0.20251 v 2.72217 q 0,0.12245 -0.08948,0.20723 -0.08477,0.0801 -0.221353,0.0801 z" /> + <path + inkscape:connector-curvature="0" + id="path4599" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';letter-spacing:0px;fill:#ffffff;stroke-width:0.117741" + d="m 43.544482,343.49471 q -0.136579,0 -0.211933,-0.0706 -0.07064,-0.0754 -0.07064,-0.21194 v -0.0801 q 0,-0.13658 0.07064,-0.20723 0.07535,-0.0754 0.211933,-0.0754 h 0.06123 q 0.136579,0 0.207223,0.0754 0.07536,0.0707 0.07536,0.20723 v 0.0801 q 0,0.13658 -0.07536,0.21194 -0.07064,0.0706 -0.207223,0.0706 z" /> + <path + inkscape:connector-curvature="0" + id="path4601" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';letter-spacing:0px;fill:#ffffff;stroke-width:0.117741" + d="m 45.602813,343.54652 q -0.405029,0 -0.687607,-0.21194 -0.277868,-0.21664 -0.423867,-0.59812 -0.145998,-0.38619 -0.145998,-0.88541 0,-0.50393 0.145998,-0.88541 0.145999,-0.38148 0.423867,-0.59342 0.282578,-0.21664 0.687607,-0.21664 0.405028,0 0.682896,0.21664 0.282578,0.21194 0.428577,0.59342 0.145999,0.38148 0.145999,0.88541 0,0.49922 -0.145999,0.88541 -0.145999,0.38148 -0.428577,0.59812 -0.277868,0.21194 -0.682896,0.21194 z m 0,-0.56516 q 0.197804,0 0.339093,-0.12245 0.145999,-0.12716 0.226062,-0.37677 0.08006,-0.25432 0.08006,-0.63109 0,-0.38148 -0.08006,-0.63109 -0.08006,-0.24961 -0.226062,-0.37206 -0.141289,-0.12716 -0.339093,-0.12716 -0.193095,0 -0.339094,0.12716 -0.145999,0.12245 -0.226062,0.37206 -0.08006,0.24961 -0.08006,0.63109 0,0.37677 0.08006,0.63109 0.08006,0.24961 0.226062,0.37677 0.145999,0.12245 0.339094,0.12245 z" /> + </g> + </g> + </g> + <path + style="fill:url(#linearGradient5738);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 75.347965,123.46785 c -8.67295,8.03108 -17.135537,20.71891 -21.311935,33.72013 -0.0377,-0.0891 8.516211,-20.4125 25.362311,-33.58354 2.68317,-0.47985 -2.756916,-2.12865 -4.050376,-0.13664 z" + id="path5730" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:none;stroke:url(#linearGradient5895);stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.172,208.20356 c 0,0 -0.0935,-2.66601 -1.02899,-4.91107 -0.93545,-2.24507 -2.55309,-3.68365 -2.55309,-3.68365 l 6.061,1.11118 c 0,0 1.02899,0.3274 1.73057,1.35639 0.70158,1.02899 3.32083,5.23848 4.11596,7.95127" + id="path5857" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccsc" /> + <path + style="display:inline;fill:none;stroke:url(#linearGradient5905);stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.19519,203.65168 4.72943,-0.82682" + id="path5897" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:url(#linearGradient5905-1);stroke-width:0.287176px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.54008,206.34796 5.52792,-1.3246" + id="path5897-0" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient6460);stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 99.374047,174.59945 c 2.107033,2.45103 11.051123,3.31104 18.963213,1.591 7.91207,-1.72001 17.4258,-4.57357 21.37123,-12.34111 2.75202,-5.41806 -6.06307,-4.38606 -6.06307,-4.38606" + id="path3749-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cssc" /> + <path + style="fill:none;stroke:#3c8dac;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.03908,183.08637 1.89428,0.39756 0.3274,-5.94006" + id="path6788" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#55999a;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.11946,183.48393 1.89428,0.21048 -0.0234,-5.72959" + id="path6790" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.67598,244.60583 6.83771,0.01 3.54718,0.40366 -0.10868,-1.24938 -4.09158,-3.0005 z" + id="path6901" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <g + id="g408" + transform="matrix(0.88539698,0.03425272,-0.03425272,0.88539698,25.266257,127.73808)" + style="stroke:none"> + <path + inkscape:connector-curvature="0" + id="path405" + d="m 101.11257,121.93025 -9.05653,5.8136 11.47673,-4.37721 z" + style="fill:url(#linearGradient6925);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient15283);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.53277,123.34237 0.41007,2.32243 -11.8868,2.07905 z" + id="path410" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#000000;fill-opacity:0.141414;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 92.247616,127.69764 11.425394,-3.50502 0.27584,1.81966 z" + id="path6937" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient6917);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 92.05604,127.74385 12.79395,-3.28255 3.11542,2.20455 z" + id="path412" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + </g> + <path + style="display:inline;fill:#000000;fill-opacity:0.171717;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 144.99025,236.75574 11.14557,-0.19843 -4.96094,-3.63803 z" + id="path6901-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <g + id="g8796" + transform="translate(-0.396875,-0.13229167)"> + <path + inkscape:connector-curvature="0" + id="path8777" + d="m 156.26581,230.53673 6.92228,2.33861" + style="fill:none;stroke:#ffffff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.313131" /> + <path + inkscape:connector-curvature="0" + id="path8777-1" + d="m 153.23834,231.70229 6.92228,2.33861" + style="display:inline;fill:none;stroke:#ffffff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.313131" /> + <path + inkscape:connector-curvature="0" + id="path8777-5" + d="m 150.18801,232.93853 6.92228,2.33861" + style="display:inline;fill:none;stroke:#ffffff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.313131" /> + <path + inkscape:connector-curvature="0" + id="path8777-1-8" + d="m 147.16054,234.10409 6.92228,2.33861" + style="display:inline;fill:none;stroke:#ffffff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.313131" /> + </g> + <g + id="g408-6" + transform="matrix(0.88539698,0.03425272,-0.03425272,0.88539698,66.58053,119.88799)" + style="display:inline;stroke:none"> + <path + inkscape:connector-curvature="0" + id="path405-3" + d="m 101.11257,121.93025 -9.05653,5.8136 11.47673,-4.37721 z" + style="fill:url(#linearGradient6996);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient6909);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.53277,123.34237 0.41007,2.32243 -11.8868,2.07905 z" + id="path410-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#000000;fill-opacity:0.141414;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 92.247616,127.69764 11.425394,-3.50502 0.27584,1.81966 z" + id="path6937-1" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient7000);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 92.05604,127.74385 12.79395,-3.28255 3.11542,2.20455 z" + id="path412-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + </g> + <path + style="fill:none;stroke:#625563;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 126.76849,230.25884 7.11067,2.05052 1.45521,-0.49609" + id="path7096" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#625563;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.31094,230.29191 0.85989,0.46302 0.8599,-0.3638" + id="path7104" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#dce4e3;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 167.09357,182.43156 c 0,0 -1.40317,2.54908 -1.77735,2.97003" + id="path7132" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:url(#linearGradient7142);stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 165.0122,185.84593 c 0,0 -2.33861,3.57807 -8.02142,6.05699" + id="path7134" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#ffffff;fill-opacity:0.414141;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 152.29585,189.25864 -4.44903,1.89593 c 0,0 1.12253,0.74835 1.07576,1.63702 -0.0468,0.88867 -0.35618,1.6157 -0.35618,1.6157 1.98441,0.27651 4.28074,-0.0537 5.22186,-1.3092 0,0 0.23816,-1.73471 -1.49241,-3.83945 z" + id="path7144" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <g + id="g7207" + transform="translate(-8.0681989,4.0691786)"> + <path + sodipodi:nodetypes="cccccc" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 168.43258,217.73182 0.49399,-0.0286 1.48768,-0.59217 -0.11841,5.12117 -1.15448,0.53283 z" + id="path1194" + inkscape:connector-curvature="0" /> + <path + style="display:inline;opacity:1;fill:#e6e6e6;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 163.19135,215.30533 v 4.85474 l 5.95001,2.60497 v -5.09155 z" + id="path1192" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path2368" + d="m 163.19387,215.34352 1.37263,-0.51474 5.86802,2.28201 -1.304,0.60053 z" + style="display:inline;fill:#a5a5a5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + style="fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 129.51213,216.86268 v -3.66184" + id="path8092" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 130.33209,217.13253 v -3.66184" + id="path8092-7" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 131.28295,217.33924 V 213.6774" + id="path8092-7-5" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 132.42396,217.41365 v -3.66184" + id="path8092-7-5-6" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 133.41614,217.26482 v -3.66184" + id="path8092-7-5-6-8" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 134.28432,216.9589 v -3.66184" + id="path8092-7-5-6-8-5" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1362-8-8" + d="m 111.38113,233.443 3.54088,0.74261 -1.37602,0.98901 -3.37709,0.33061 z" + style="display:inline;fill:#a7a7a7;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1364-8-3" + d="m 110.11928,235.51349 0.17805,2.30989 3.17259,-0.87741 0.14057,-1.79285 z" + style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1366-6-7" + d="m 114.8145,234.20711 0.392,2.13193 -1.68201,0.50608 0.0645,-1.735 z" + style="display:inline;fill:#4f5257;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <g + style="display:inline" + id="g8393" + transform="matrix(0.71122168,0.22997984,-0.28452887,0.57486837,65.96299,153.46712)"> + <path + inkscape:connector-curvature="0" + id="path1332-3-4" + d="m 138.15267,73.952957 -0.34316,-5.284648 1.09811,0.06863 1.44127,5.627806 z" + style="display:inline;fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1334-0-9" + d="m 137.80951,68.56536 1.26969,-1.132425 0.92653,0.274529 -1.02948,1.132425 z" + style="display:inline;fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1336-5-6" + d="m 139.86846,67.638832 3.50022,3.774749 -3.01979,2.985482 -1.37264,-5.662123 z" + style="display:inline;fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="g1559-4-9" + transform="matrix(0.88605929,0,0,0.88605929,76.698266,154.58746)"> + <path + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + id="path1460-6-5-1-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + id="path1462-3-3-7-8" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + id="path1464-9-4-9-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + id="path1458-2-1-3-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + transform="matrix(1.4156561,0.49085544,-0.42514702,1.2261491,79.800315,98.733972)" + id="g1450-5-6" + style="display:inline"> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.855154,82.697299 -2.887701,0.947689 -0.188738,0.480422 2.65948,0.223054 z" + id="path1498-5-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.778715,84.12541 1.338321,2.264849 1.338318,0.223052 -0.03431,-2.350638 z" + id="path1500-9-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.967453,83.644988 2.007478,-1.715794 h 1.818743 l -0.829182,0.892212 z" + id="path1502-6-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.926099,83.130249 0.343159,2.316324 -0.658756,0.858422 -2.498308,-1.664846 0.06863,-1.046635 z" + id="path1466-2-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.010669,86.165017 -1.108802,-0.279048 -0.890729,-1.710532 2.569761,-0.09721 z" + id="path1460-7-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.59303,84.041828 -0.853846,2.011136 1.897241,-1.428775 z" + id="path1462-1-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.901867,85.885969 0.344455,0.887415 1.062083,0.04152 -0.576781,-0.771208 z" + id="path1464-6-61" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.600027,84.63632 0.01304,1.700295 -1.304662,0.478285 -0.588915,-0.746943 z" + id="path1458-0-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.269258,85.446573 1.531433,-1.424658 -1.233448,-2.327727 -0.726935,1.453219 z" + id="path1468-3-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.180827,83.593514 0.907012,-1.234222 2.001943,0.28939 -0.246632,0.493044 z" + id="path1470-9-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.063679,82.355291 0.855178,-0.948785 1.648386,0.287682 -0.469564,0.955638 z" + id="path1472-6-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.088901,82.605457 -0.701729,1.394555 0.760206,0.17103 z" + id="path1525-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.387172,83.9737 0.146193,1.197212 0.540917,0.06578 0.131574,-1.118276 z" + id="path1527-7" + inkscape:connector-curvature="0" /> + <path + style="fill:#445016;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.088901,82.605457 0.74772,1.432778 -0.38224,1.172258 -0.380099,0.0262 z" + id="path1529-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#c1cd7d;fill-opacity:1;stroke:none;stroke-width:0.18974px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 16.025199,77.580328 0.74445,0.3886 -2.034157,2.79789 1.268514,-2.376949 -0.539182,-0.58521 z" + id="path8561" + inkscape:connector-curvature="0" /> + </g> + <path + style="fill:#88aa00;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 49.708593,208.95988 1.256771,-0.46302 1.256771,2.41432 -1.5875,-0.23151 z" + id="path8503" + inkscape:connector-curvature="0" /> + <path + style="fill:#668000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 52.519791,211.96951 0.429948,-1.32291 -1.488281,-1.02526 z" + id="path8505" + inkscape:connector-curvature="0" /> + <path + style="fill:#445500;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 52.982812,210.71274 1.256771,0.0661 -0.363802,1.52135 -1.289844,-0.33073 z" + id="path8507" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#88aa00;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 54.261478,210.83101 -0.210476,3.48452 -0.888672,-0.35079 z" + id="path8509" + inkscape:connector-curvature="0" /> + <path + style="fill:#668000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 54.115398,213.34796 -0.11693,0.93544 1.333005,0.8419 -0.07016,-1.19269 z" + id="path8526" + inkscape:connector-curvature="0" /> + <g + style="display:inline" + id="g1559-4-0" + transform="matrix(0.88605929,0,0,0.88605929,62.105326,118.60273)"> + <path + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + id="path1460-6-5-1-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + id="path1462-3-3-7-1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + id="path1464-9-4-9-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + id="path1458-2-1-3-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <path + style="fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 108.04371,168.70393 c 0,0 -8.380247,2.48695 -8.801196,5.19974" + id="path8676" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:#dfa292;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 137.53356,162.2026 c 0,0 0.0468,-1.3564 -0.6782,-2.05798 -0.72497,-0.70158 -1.12253,-0.81851 -1.12253,-0.81851 l -2.12814,0.14032 2.29184,1.19269 c 0.39133,0.23698 1.43194,1.05818 1.63703,1.54348 z" + id="path8700" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <g + id="g3581" + transform="translate(0.52916666,-0.52916662)"> + <path + inkscape:connector-curvature="0" + id="path504" + d="m 178.83347,251.63935 -4.02677,1.1887 -1.79394,3.77034 4.89535,-0.42569 3.28384,0.79056 3.52709,1.27705 2.61489,-2.73653 0.88178,-2.67573 -7.45604,-1.88847 z" + style="fill:#b2b068;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path506" + d="m 173.04316,256.50718 0.82095,3.40545 2.85816,3.10141 0.0304,-6.78053 z" + style="fill:#8a6f64;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path508" + d="m 176.60065,262.8012 2.12843,0.79054 -0.57925,-7.45467 -1.42756,0.0964 z" + style="fill:#a8877d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path510" + d="m 178.06013,256.1727 0.60812,7.60149 1.21625,1.09459 1.52028,-7.84471 z" + style="fill:#8a6f64;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path512" + d="m 184.3483,258.05786 -2.22484,6.8435 3.2949,-2.89071 v -4.62172 z" + style="fill:#412c27;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path516" + d="m 188.09408,252.82805 0.18245,4.19602 -0.42569,3.28384 -2.49328,-0.42568 -0.24326,-3.28384 z" + style="fill:#8a6f64;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path518" + d="m 179.94529,264.74717 2.18924,0.12161 2.43248,-6.87172 -3.22304,-1.09461 z" + style="fill:#a8877d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path520" + d="m 180.75244,264.77141 1.4835,-4.51505 -0.0429,4.57955 z" + style="fill:#8a6f64;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path522" + d="m 186.407,255.13931 v 4.90204 l -1.03203,-0.129 -0.344,-3.44003 z" + style="fill:#6c5649;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1291" + d="m 184.0501,252.17433 -2.49329,-0.63852 -2.64532,0.82096 -1.91558,0.48649 0.0912,1.61151 2.37166,0.12163 3.34465,1.30744 0.45608,-1.88515 2.00681,-1.21624 z" + style="fill:#c1cd7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1287" + d="m 173.04317,256.64399 1.79395,-3.70951 -0.18243,2.88856 z" + style="fill:#c1cd7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1289" + d="m 185.02311,256.55279 -0.30407,-1.5507 3.40546,-2.15882 z" + style="fill:#96a35b;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path8816" + d="m 173.01546,256.84659 3.55468,1.1693 1.49671,-0.88867 2.89987,1.40317 3.67162,-0.56127 -3.08697,-1.0056 -3.50791,-0.77174 -4.88769,0.25725 z" + style="display:inline;fill:#000000;fill-opacity:0.257576;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.85107766,0.59757688,-0.6640371,0.94573126,209.12036,148.42254)" + id="g1450-9" + style="display:inline"> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.48967,82.684143 -2.522217,0.960845 -0.188738,0.480422 2.65948,0.223054 z" + id="path1498-7" + inkscape:connector-curvature="0" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.795873,84.056777 1.321163,2.333482 1.338318,0.223052 -0.03431,-2.350638 z" + id="path1500-2" + inkscape:connector-curvature="0" /> + <path + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 28.053241,83.576355 1.92169,-1.647161 h 1.818743 l -1.355479,0.892212 z" + id="path1502-62" + inkscape:connector-curvature="0" /> + <path + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.08579,-1.132425 z" + id="path1466-21" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1447-7" + d="m 34.899264,88.775213 -1.132425,-2.264849 -1.647164,-0.102946 0.06863,-0.549056 1.578533,0.274527 0.446106,-1.029476 0.03432,-0.995161 0.480423,0.205896 -0.102949,1.029475 -0.24021,0.892215 1.891895,1.974382 -0.690841,0.66794 z" + style="fill:#c87137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="fill:#deaa87;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.548226,88.870564 -1.650021,-2.511428 -1.734947,-0.169854 -0.254784,0.157721 1.856275,0.157723 1.006996,2.377969 z" + id="path1452-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#deaa87;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.752615,86.104353 0.303313,-0.0364 0.412504,-0.958466 0.01214,-1.188984 h -0.254783 v 1.213249 z" + id="path1454-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#784421;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.790876,88.712841 -0.885673,-1.929067 1.334575,1.431634 z" + id="path1456-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.010669,86.165017 -1.722815,-0.279048 0.922072,-1.868406 1.370973,0.06066 z" + id="path1460-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.59303,84.041828 -0.897805,2.074659 1.9412,-1.492298 z" + id="path1462-34" + inkscape:connector-curvature="0" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.275722,85.825305 0.9706,1.237515 1.298178,-0.0364 -0.812876,-0.982733 z" + id="path1464-3" + inkscape:connector-curvature="0" /> + <path + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.600027,84.63632 -0.206251,1.989731 -0.909939,0.412504 -0.764347,-0.970598 z" + id="path1458-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.2521,85.463731 1.870217,-1.612846 -1.321164,-2.590851 -0.960845,1.887373 z" + id="path1468-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.180827,83.593514 0.102947,-1.286847 2.796746,0.326001 -0.274526,0.549055 z" + id="path1470-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.318091,82.28951 1.630005,-1.304003 1.938848,0.308843 -0.789265,1.355476 z" + id="path1472-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-6-7" + d="m 34.822901,84.321288 -1.337203,-0.279048 0.715687,-1.868406 0.892534,-0.162393 z" + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-3-0" + d="m 35.034703,81.992204 -0.456642,2.280554 1.506708,-1.492298 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + inkscape:connector-curvature="0" + id="path1464-9-49" + d="m 33.476281,83.981576 0.753354,1.237515 1.007611,-0.0364 -0.630933,-0.982733 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-2-2" + d="m 36.056518,82.792591 -0.160087,1.989731 -0.70627,0.412504 -0.593266,-0.970598 z" + style="display:inline;fill:#445500;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <ellipse + style="display:inline;fill:none;fill-opacity:1;stroke:#cfd8d7;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="path3708-47" + cx="225.9301" + cy="187.88388" + rx="0.61586231" + ry="1.2005144" + transform="rotate(14.255647)" /> + <ellipse + style="display:inline;fill:none;fill-opacity:1;stroke:#cfd8d7;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="path3708-47-9" + cx="223.55463" + cy="189.68173" + rx="0.61586231" + ry="1.2005144" + transform="rotate(14.255647)" /> + <g + style="display:inline" + id="g400-1" + transform="matrix(0.87339455,0,0,0.74020468,5.9228705,123.87506)"> + <path + id="rect375-5-5" + style="display:inline;fill:#625563;fill-opacity:1;stroke:none;stroke-width:0.186965" + d="m 120.54513,89.420008 c 1.59616,-0.636813 1.67081,-0.628004 3.23552,0.03116 0.20331,0.135032 0.23453,0.34925 0.22708,0.498481 l 0.003,3.728167 c 0.008,0.210805 0.0131,0.420579 -0.17482,0.539541 -0.9635,0.737962 -2.36526,0.592787 -3.31676,0.03522 -0.20025,-0.16602 -0.21125,-0.392027 -0.19185,-0.627657 v -3.765648 c 0.004,-0.139827 0.055,-0.328515 0.21823,-0.439287 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <ellipse + style="display:inline;fill:#a194a2;fill-opacity:1;stroke:none;stroke-width:0.146358" + id="path378-1-1" + cx="122.14373" + cy="89.588615" + rx="1.7445437" + ry="0.6163938" /> + </g> + <path + style="display:inline;fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 95.050667,242.52527 10.781783,3.00964 5.22552,-1.2237 -4.8948,1.62057 -0.33072,0.59531 -0.29766,-0.69453 z" + id="path2680" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,122.82441,160.37438)" + style="display:inline" + id="g918-3"> + <g + id="g898-6"> + <path + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + id="path862-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient3765);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + id="path854-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + id="path856-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + id="path858-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 40.656062,122.54036 0.614212,11.33929 2.291482,-1.48828 -0.472472,-11.22117 z" + id="path860-8" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + id="path864-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.498511,120.90796 3.807237,1.04513 1.97827,11.79497 -3.95654,-1.08245 -0.597214,-1.60501 -1.306405,-0.89582 -0.44791,1.49303 -2.61281,-0.74652 z" + id="path2838" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + </g> + <g + id="g2836" + transform="translate(-1.8289666,-0.37325849)"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2830" + d="m 30.25896,133.00154 1.940944,-1.3064 1.53036,-4.3298 -1.493034,-2.46351 z" + style="fill:#3ecaf3;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccc" + inkscape:connector-curvature="0" + id="path2806" + transform="matrix(0.2986068,0,0,0.2986068,0.06234731,22.44237)" + d="m 102.88477,335.9707 -10.253911,31.28907 8.662111,3.18164 3.7207,-12.34375 7.94727,2.09179 4.06445,14.84766 10.60742,3.00586 -11.13672,-38.18359 z m 5.68554,10.15821 3.33008,8.40234 -5.57617,-1.71484 z" + style="fill:#2aa0ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2811" + d="m 30.749783,122.7881 1.642337,-1.08245 3.69526,1.0078 -1.418383,1.41838 z" + style="display:inline;fill:#9ce9ff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2828" + d="m 34.626084,124.08066 3.50863,11.19776 1.642338,-1.19443 -3.695259,-11.34706 z" + style="fill:#3ecaf3;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,111.29168,35.817234)" + style="display:inline" + id="g918-3-0"> + <g + id="g898-6-5"> + <path + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + id="path862-1-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient3757);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + id="path854-8-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + id="path856-9-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + id="path858-2-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 40.656062,122.54036 0.614212,11.33929 2.291482,-1.48828 -0.472472,-11.22117 z" + id="path860-8-2" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + id="path864-5-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.38475,119.25308 c 0,0 -1.583602,1.47803 -1.741962,2.3754 l 0.7827,1.2519 9.616284,5.45201 -0.211147,5.80654 -2.692123,-0.84458 -6.7567,-8.86817 c 0,0 -0.05279,1.21409 -0.475081,1.31966 -0.422294,0.10558 -0.686227,0.10558 -0.686227,0.10558 0,0 0.332641,3.4296 0.959967,3.44473 1.448645,0.0349 2.714764,2.08122 2.893463,2.62575 0.739014,0.95016 -3.959004,-1.2141 -3.959004,-1.2141 l -1.372455,-3.64229 0.05279,-2.69212 -1.002948,-0.26393 0.05279,-2.0059 1.319668,-0.0528 1.741962,-3.32556 z" + id="path2998" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccsccccccccc" /> + <g + id="g2989" + transform="translate(2.3888544,1.7916408)"> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path2927" + d="m 37.265824,127.09902 -9.464206,-5.27776 4.686497,11.3992 z" + style="fill:#cad9dd;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path2929" + d="m 32.488115,133.1458 2.314203,0.59722 2.388854,-6.71865 z" + style="fill:#719aa4;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + id="g2996" + transform="translate(1.4780283,-0.15836017)"> + <rect + transform="matrix(0.97579213,0.21870007,0,1,0,0)" + ry="0.6607936" + y="116.27463" + x="25.965887" + height="2.4876966" + width="2.5494125" + id="rect2935" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.685504;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <ellipse + transform="matrix(0.96519793,0.26152048,0,1,0,0)" + ry="1.3460615" + rx="1.3945963" + cy="106.77193" + cx="36.635544" + id="path2953" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.689256;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2955" + d="m 26.792304,122.36749 c 0,0 1.16131,-6.07047 7.495715,-5.64818" + style="fill:none;stroke:#ffffff;stroke-width:0.976233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.96519793,0.26152048,0,1,0,0)" + ry="1.3460615" + rx="1.3945963" + cy="124.17725" + cx="30.219408" + id="path2953-4" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.689256;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2955-0" + d="m 28.377724,131.54436 c 0,0 -2.269822,-2.16425 -1.847535,-6.86228" + style="display:inline;fill:none;stroke:#ffffff;stroke-width:0.976233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> + </g> + <g + id="g3546" + transform="translate(-5.4604575,-20.527905)"> + <g + id="g918-3-8" + style="display:inline" + transform="matrix(0.88605929,0,0,0.88605929,-1.6666099,98.591575)"> + <g + id="g898-6-2"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path862-1-3" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path854-8-9" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + style="fill:url(#linearGradient3733);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path856-9-4" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path858-2-6" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path860-8-3" + d="m 40.656062,122.54036 0.614212,11.33929 2.291482,-1.48828 -0.472472,-11.22117 z" + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path864-5-4" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <path + inkscape:connector-curvature="0" + id="path3530" + d="m 26.879965,121.70155 7.635962,0.89142 0.03623,5.01163 2.111804,2.861 0.0562,2.55794 -7.865221,-2.32263 1e-6,-1.58359 z" + style="fill:#907d70;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccccc" /> + </g> + <g + id="g3828" + transform="translate(-0.6869097,-2.4000533)"> + <path + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 23.011905,215.85027 1.543482,-0.0468 5.191712,-6.36101 -1.356395,-0.0468 z" + id="path3522" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient3830);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 20.703647,206.31405 2.182812,9.72343 2.116667,-2.3151 4.167187,5.15937 1.521354,-2.24895 -3.836458,-4.7625 2.050521,-2.4474 z" + id="path3520" + inkscape:connector-curvature="0" /> + <path + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.232603,218.79692 0.982215,-0.28063 1.543482,-2.15152 -1.216076,0.23386 z" + id="path3524" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 26.80045,211.7811 1.122532,-0.0468 3.695001,4.72399 -1.028986,0.0935 z" + id="path3526" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 20.673297,206.26198 8.091584,3.27405 0.982218,-0.0468 -7.623865,-3.13374 z" + id="path3528" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + style="display:inline" + id="g5976-39" + transform="matrix(0.4455495,0.48781957,-0.48781957,0.4455495,127.25656,69.400327)"> + <circle + r="0.71714538" + cy="166.47276" + cx="75.587036" + id="path5973-44" + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="171.25676" + cx="69.816925" + id="path5973-1-2" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="175.49008" + cx="71.635941" + id="path5973-7-54" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="178.96274" + cx="67.898705" + id="path5973-7-0-68" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="170.463" + cx="67.83255" + id="path5973-7-0-7-2" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="-144.69336" + cx="140.80478" + id="path5973-3-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-149.23973" + cx="137.84521" + id="path5973-1-8-8" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-144.05313" + cx="136.23911" + id="path5973-7-5-7" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-134.71466" + cx="130.62692" + id="path5973-7-0-1-47" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-139.46674" + cx="135.18159" + id="path5973-7-0-7-3-3" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55344278" + cy="134.6259" + cx="157.18925" + id="path5973-3-2-9" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="116.0218" + cx="139.32707" + id="path5973-7-0-1-4-0" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="123.96669" + cx="147.44138" + id="path5973-7-0-1-4-6-5" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55344278" + cy="128.08867" + cx="146.26036" + id="path5973-3-2-4-6" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + </g> + <path + style="display:inline;fill:#fe9191;fill-opacity:0.388889;stroke-width:0.0235715" + d="m 120.47113,248.49603 c -0.26524,0.0869 -0.52791,0.26998 -0.71827,0.52771 l -3.16657,4.2855 c -1.0699,1.67805 0.72821,0.93041 1.49899,1.05765 0.27649,0.19137 -1.05979,0.84109 -0.7833,1.0327 0.2765,0.19136 1.67186,-0.007 1.94882,0.1839 0.27649,0.19137 -0.56587,0.76924 -0.28937,0.96063 0.27649,0.19136 0.91601,-0.28756 1.03577,0.32543 0.0853,0.43809 1.15241,-0.18001 1.67428,-0.73409 0.27649,-0.3741 -0.52896,-0.0816 -0.25246,-0.4555 0.68757,-0.93006 1.32768,-0.6938 1.56291,-1.476 0.11625,-0.38651 -1.01215,-0.20259 -0.73519,-0.5766 0.79553,-0.72715 3.54526,-1.93708 2.24059,-2.81117 l -3.28244,-2.27168 c -0.2007,-0.12644 -0.46852,-0.13549 -0.73376,-0.0485 z m 0.0285,0.299 c 0.18937,-0.0615 0.378,-0.053 0.5139,0.0399 l 1.25292,0.85891 c 0.11874,0.0822 0.11717,0.31793 0.0506,0.40755 l -0.62208,-0.29229 -0.12217,0.77728 -0.51979,-0.10293 -0.83236,0.80073 -0.2755,-1.01771 -0.44724,0.92116 -0.68359,0.22561 c -0.27862,0.0919 -0.31132,-0.25083 -0.0581,-0.58755 0.44221,-0.62328 0.94966,-1.27724 1.22545,-1.65018 0.1386,-0.18742 0.32869,-0.31897 0.51805,-0.38047 z m -1.50443,5.44702 c 0.0846,0.0246 1.36454,-0.13788 1.67732,-0.18926 0.10847,-0.0131 0.0315,0.12432 -0.11795,0.24905 -0.33708,0.20092 -1.97191,0.0764 -1.55942,-0.0598 z m 4.97653,-0.75176 c -0.25751,0.0946 -0.51146,0.30914 -0.58148,0.57892 0,0.16076 1.18455,-0.12473 1.18455,-0.42882 -0.0843,-0.21637 -0.34554,-0.24398 -0.60307,-0.15012 z m -5.41851,2.48468 c -0.0201,0.006 -0.0403,0.013 -0.0608,0.021 -0.35894,0.13761 -0.74411,0.52439 -0.43782,0.68859 0.2805,0.14997 0.71381,-0.29593 0.8437,-0.6773 -0.0744,-0.0743 -0.20449,-0.075 -0.34515,-0.0321 z m 4.6886,-1.52644 c -0.36159,0.44368 0.0404,0.6401 0.39691,0.31292 0.0795,-0.1069 -0.002,-0.36259 -0.39691,-0.31292 z" + id="path2313-0" + inkscape:connector-curvature="0" /> + <g + style="display:inline" + id="g5976-4" + transform="matrix(0.08213177,0.65554303,-0.65554303,0.08213177,266.50017,115.6548)"> + <circle + r="0.71714538" + cy="176.85785" + cx="66.915405" + id="path5973-28" + style="fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="171.25676" + cx="69.816925" + id="path5973-1-1" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="175.49008" + cx="71.635941" + id="path5973-7-8" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="178.96274" + cx="67.898705" + id="path5973-7-0-683" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027039" + cy="170.463" + cx="67.83255" + id="path5973-7-0-7-92" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.71714538" + cy="-133.07188" + cx="134.26445" + id="path5973-3-6" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="-138.67297" + cx="137.16597" + id="path5973-1-8-6" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + cy="-141.00937" + cx="119.7724" + id="path5973-7-5-5" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" + r="0.32027039" /> + <circle + r="0.32027039" + cy="-130.967" + cx="135.24774" + id="path5973-7-0-1-02" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-139.46674" + cx="135.18159" + id="path5973-7-0-7-3-6" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.55344278" + cy="119.31641" + cx="131.70023" + id="path5973-3-2-45" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="121.4063" + cx="133.22725" + id="path5973-7-0-1-4-89" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044033)" /> + <circle + r="0.32027039" + cy="127.30769" + cx="133.33705" + id="path5973-7-0-1-4-6-8" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.55344278" + cy="128.08867" + cx="146.26036" + id="path5973-3-2-4-78" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044034)" /> + <circle + r="0.32027039" + cy="-97.020065" + cx="163.15636" + id="path5973-7-0-1-7-9" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-141.08458" + cx="115.16314" + id="path5973-7-0-1-40-5" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-120.80077" + cx="157.23447" + id="path5973-7-0-1-79-0" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-120.62488" + cx="124.55238" + id="path5973-7-0-1-1-1" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-130.351" + cx="181.03282" + id="path5973-7-0-1-6-1" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-112.20711" + cx="157.9874" + id="path5973-7-0-1-67-7" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.32027039" + cy="-115.30206" + cx="142.18866" + id="path5973-7-0-1-85-4" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + <circle + r="0.71714538" + cy="154.07304" + cx="87.360001" + id="path5973-1-1-1" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027036" + cy="153.8784" + cx="79.766258" + id="path5973-7-0-683-3" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027036" + cy="147.63408" + cx="87.107254" + id="path5973-7-0-683-4" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027036" + cy="157.60388" + cx="79.703117" + id="path5973-7-0-683-37" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.32027036" + cy="144.46082" + cx="63.792774" + id="path5973-7-0-683-8" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <circle + r="0.55344278" + cy="109.15289" + cx="133.33742" + id="path5973-3-2-45-2" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(27.044031)" /> + <circle + r="0.32027039" + cy="-125.83712" + cx="114.55821" + id="path5973-7-0-1-1-1-4" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + transform="rotate(115.61256)" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.02637px;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:Quicksand;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.100659" + x="216.50778" + y="113.62748" + id="text5365-9"><tspan + sodipodi:role="line" + id="tspan5363-5" + x="216.50778" + y="113.62748" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke-width:0.100659" + dy="0.36000004">artwork by </tspan><tspan + sodipodi:role="line" + x="216.50778" + y="118.66044" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke-width:0.100659" + id="tspan1830-4">Bayu Rizaldhan Rayes</tspan></text> + </g> + <g + id="layer5" + inkscape:label="effects" + style="display:inline"> + <path + style="fill:url(#linearGradient7129);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 161.55649,48.905845 5.82553,1.828009 3.96875,4.233333 3.96875,1.918229 1.45521,15.345833 c -1.91863,2.58742 -3.10363,6.17518 -3.27657,9.38606 -5.11302,0.531291 -0.0312,9.983111 -16.69947,0.403523 l -9.45885,-24.010937 6.2177,-9.613844 c 0,0 3.23645,-0.614685 7.99895,0.509794 z" + id="path7121" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + </g> + <g + id="layer6" + inkscape:label="clip" + style="display:inline"> + <rect + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.465;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="rect5967" + width="63.764584" + height="194.46875" + x="198.98512" + y="-14.562982" + ry="0" /> + <rect + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.504264;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="rect5967-7" + width="287.14844" + height="50.784657" + x="-47.22356" + y="165.7905" + ry="0" /> + <rect + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.456679;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="rect5967-7-1" + width="235.51196" + height="50.78466" + x="-7.1865702" + y="-51.232361" + ry="0" /> + <rect + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.453315;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="rect5967-7-1-1" + width="58.900265" + height="200.08142" + x="-59.384323" + y="-22.046534" + ry="0" /> + </g> + <rect + style="fill:url(#linearGradient15345);fill-opacity:1;stroke:none;stroke-width:9.97154;stroke-linejoin:round" + id="rect15337" + width="86.536514" + height="165.68576" + x="9.9520636" + y="-0.31301066" /> + </g> + </g> + <style + id="style1182" /> +</svg> diff --git a/packaging/release-sign-tarballs b/packaging/release-sign-tarballs new file mode 100755 index 0000000..1731e15 --- /dev/null +++ b/packaging/release-sign-tarballs @@ -0,0 +1,259 @@ +#!/bin/bash + +SIGNER="bryce@bryceharrington.org" +VERSION="0.92" +PKG_NAME="inkscape" +LIST_TO="inkscape-announce@lists.sf.net" +LIST_CC="inkscape-devel@lists.sf.net" +VCS_SYSTEM="git" + +# Locate Dependencies +#------------------------------------------------------------------------------ + +MD5SUM=`which md5sum || which gmd5sum` +SHA1SUM=`which sha1sum || which gsha1sum` +SHA256SUM=`which sha256sum || which gsha256sum` + +# Choose which make program to use (could be gmake) +MAKE=${MAKE:="make"} + +# Set the default make tarball creation command +MAKE_DIST_CMD=distcheck + +# Choose which grep program to use (on Solaris, must be gnu grep) +if [ "x$GREP" = "x" ] ; then + if [ -x /usr/gnu/bin/grep ] ; then + GREP=/usr/gnu/bin/grep + else + GREP=grep + fi +fi + +# Find path for GnuPG v2 +if [ "x$GPG" = "x" ] ; then + if [ -x /usr/bin/gpg2 ] ; then + GPG=/usr/bin/gpg2 + else + GPG=gpg + fi +fi + +#------------------------------------------------------------------------------ + +usage() { + basename="`expr "//$0" : '.*/\([^/]*\)'`" + cat <<HELP + +Usage: $basename [options] path... + +Where "path" is a relative path to a ${VCS_SYSTEM} module, including '.'. + +Options: + (none) + +Environment variables: + MAKE: The name of the make command [make] + MAKEFLAGS: Options to pass to all \$(MAKE) invocations [] + +HELP +} + +#------------------------------------------------------------------------------ + +check_local_changes() { + lines=$(git diff | wc -l) + if [ $lines -gt 0 ]; then + echo "" + echo "Uncommitted changes found. Did you forget to commit? Aborting." + echo "" + echo "You can clone the module in another directory" + echo "and run ./configure. No need to build if testing was finished." + echo "" + return 1 + fi + + return 0 +} + +#------------------------------------------------------------------------------ +# Function: make_dist +# +# Create the package distribution +# Return 0 on success, 1 on fail +make_dist() { + if [ $VCS_SYSTEM = "git" ] && [ ! -d .git ]; then + echo "Error: There is no git repository here: $(pwd)" + return 1 + else + echo "Error: Unrecognized version control '$VCS_SYSTEM'." + return 1 + fi + + # Change to an out-of-source build directory + config_indicator=CMakeCache.txt + status_file=$(find . -name ${config_indicator} -type f) + if [ $? -ne 0 ]; then + echo "Error: Failed to locate ${config_indicator}." + echo "Has the module been configured?" + return 1 + fi + configNum=$(echo "$status_file" | wc -l | sed 's:^ *::') + if [ x"$configNum" = x0 ]; then + echo "Error: Failed to locate ${config_indicator}, has the module been configured?" + return 1 + elif [ x"$configNum" != x1 ]; then + echo "Error: More than one ${config_indicator} file was found." + echo "Please cleanup previously failed attempts at distcheck." + fi + + build_dir=$(dirname ${status_file}) + cd ${build_dir} + if [ $? -ne 0 ]; then + echo "Error: Failed to cd to build directory ${build_dir}." + return 1 + fi + + check_local_changes + if [ $? -ne 0 ]; then + cd ${top_src} + return 1 + fi + + echo "Info: running 'make $MAKE_DIST_CMD' to create tarballs:" + ${MAKE} ${MAKEFLAGS} ${MAKE_DIST_CMD} > /dev/null + if [ $? -ne 0 ]; then + echo "Error: '${MAKE} ${MAKEFLAGS} ${MAKE_DIST_CMD}' failed." + cd $top_src + return 1 + fi + + return 0 +} + +# Function: sign_or_fail +#------------------------------------------------------------------------------ +# +# Sign the given file, if any +# Output the name of the signature generated to stdout (all other output to +# stderr) +# Return 0 on success, 1 on fail +# +sign_or_fail() { + if [ -n "$1" ]; then + sig=$1.sig + rm -f $sig + + [ -n ${SIGNER} ] && signer="-u $SIGNER" + + echo "$GPG $signer --detach-sign $1" 1>&2 + $GPG $signer --detach-sign $1 1>&2 + if [ $? -ne 0 ]; then + echo "Error: failed to sign $1." >&2 + return 1 + fi + echo $sig + fi + return 0 +} + + +sign_packages() { + tar_name="$1" + targz="${tar_name}.tar.gz" + tarbz2="${tar_name}.tar.bz2" + tarxz="${tar_name}.tar.xz" + zip="${tar_name}.zip" + + for tarball in $targz $tarxz $tarbz2 $zip; do + if [ -e "${tarball}" ]; then + sig="$(sign_or_fail ${tarball})" + gpgsignerr=$((${gpgsignerr} + $?)) + sig_url="http://inkscape.org/.../$sig" + cat <<EOF +https://inkscape.org/en/download/source/ +MD5: `$MD5SUM $tarball` +SHA1: `$SHA1SUM $tarball` +SHA256: `$SHA256SUM $tarball` +$sig_url + +EOF + fi + done + + if [ ${gpgsignerr} -ne 0 ]; then + echo "Error: unable to sign at least one of the tarballs." + return 1 + elif [ -z "$siggz" ]; then + # The tar.gz is always required + echo "Error: Unable to sign the tar.gz file." + return 2 + fi + + return 0; +} + +generate_announce() { + cat <<RELEASE +Subject: [ANNOUNCE] $PKG_NAME $VERSION +To: $LIST_TO +Cc: $LIST_CC + +The Inkscape community proudly announces the release of Inkscape $VERSION. + + https://inkscape.org/en/download/ + +Inkscape is a drawing and painting tool similar to Illustrator, +CorelDraw, and Xara X, but with features, new tools, and interface style +of its own. It emphasizes the W3C standard Scalable Vector Graphics +(SVG) file format, but reads and writes a wealth of other formats +including PDF, so it is an easy complement to your other graphics and +desktop tools. Best of all, Inkscape is created *by* the community *for* +the community: Inkscape is 100% Open Source and freely available to +everyone in the world. + +<INSERT DETAILS ABOUT THE RELEASE HERE> + +The above barely scratches the surface of what's included in this +release. For the full scoop, please see our detailed Release Notes: + + http://wiki.inkscape.org/wiki/index.php/Release_notes/$VERSION + +RELEASE +} + +process() { + top_src=$(pwd) + + tar_name=$(make_dist) + generate_announce > "${tar_name}.announce" + + # TODO: Once converted to git, enable display of shortlog + #tag_previous=`git describe --abbrev=0 HEAD^ 2>/dev/null` + #tag_range="FIXME..FIXME" + #`git log --no-merges "$tag_range" | git shortlog` + echo "${VCS_SYSTEM} tag: $tar_name" >> ${tar_name}.announce + + sign_packages ${tar_name} >> "${tar_name}.announce" + if [ $? -ne 0 ]; then + rm "${tar_name}.announce" + echo "Error: Failed signatures" + return 1 + fi + + # TODO: Verify the top commit SHA has a version bump + # local_top_commit_sha=`git rev-list --max-count=1 HEAD` + # git diff --unified=0 HEAD^ | $GREP -F $pkg_version >/dev/null 2>&1 + # TODO: Check that the top commit is pushed to remote + # git rev-list --max-count=1 $remote_name/$remote_branch + + echo "TODO: Tag the top commit as $tar_name" + echo "TODO: Upload the tarballs to the remote" + echo "TODO: Push all local changes and tags to remote" + + echo "Info: [ANNOUNCE] template generated in \"$tar_name.announce\" file." + echo " Please pgp sign and send it." + + return 0 +} + +process diff --git a/packaging/scripts/lp-mark-bugs-released b/packaging/scripts/lp-mark-bugs-released new file mode 100755 index 0000000..7e93621 --- /dev/null +++ b/packaging/scripts/lp-mark-bugs-released @@ -0,0 +1,77 @@ +#!/usr/bin/python + +# Copyright (c) 2010 Canonical Ltd. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 3 as published +# by the # Free Software Foundation +# +# lp-mark-bugs-released 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. + +'''Mark bugs that are Fix Committed on a release to be Fix Released''' + +import datetime +import os +import sys +import tempfile + +from launchpadlib.launchpad import Launchpad +from launchpadlib.errors import HTTPError + +opt_dry_run = False + +def mark_released (bug): + if bug.status == 'Fix Committed': + print "Marking bug " + str(bug.bug.id) + " as 'Fix Released'" + bug.status = "Fix Released" + if not opt_dry_run: + bug.lp_save() + +def main(): + if len(sys.argv) != 3: + print >> sys.stderr, '''Mark bugs 'Fix Committed' on a release as released + + Usage: %s <project name> <version>''' % sys.argv[0] + sys.exit(1) + + (project, version) = sys.argv[1:] + + try: + launchpad = Launchpad.login_with('ubuntu-dev-tools', 'production') + except Exception, error: + print >> sys.stderr, 'Could not connect to Launchpad:', str(error) + sys.exit(2) + + try: + # Look up the project using the Launchpad instance. + proj = launchpad.projects[project] + # Find the release in the project's releases collection. + release = None + for rel in proj.releases: + if rel.version == version: + release = rel + break + if not release: + print >> sys.stderr, '''Unable to find release: %s''' % version + sys.exit(1) + + # Mark any fix committed bugs released + for task in release.milestone.searchTasks(status="Fix Committed"): + if task.milestone is None: + for othertask in task.related_tasks: + if othertask.milestone.name == release.milestone.name: + mark_released(othertask) + else: + mark_released(task) + + except HTTPError, error: + print 'An error happened in the upload: %s\n%s' %( + error.content, + error.__dict__) + sys.exit(1) + +if __name__ == '__main__': + main() diff --git a/packaging/snappy/lib/share/README.txt b/packaging/snappy/lib/share/README.txt new file mode 100644 index 0000000..a797ce4 --- /dev/null +++ b/packaging/snappy/lib/share/README.txt @@ -0,0 +1 @@ +Here so the directory is created diff --git a/packaging/win32/gdb_create_backtrace.bat b/packaging/win32/gdb_create_backtrace.bat new file mode 100644 index 0000000..b0a4f69 --- /dev/null +++ b/packaging/win32/gdb_create_backtrace.bat @@ -0,0 +1,32 @@ +@echo off +rem Execute this to create a debug backtrace of an Inkscape crash. + +set TRACEFILE=%USERPROFILE%\inkscape_backtrace.txt + +echo Thanks for creating a debug backtrace! +echo. +echo After Inkscape starts, try to force the crash. +echo The backtrace will be recorded automatically. +echo. +echo Gathering sytem info... + +echo --- INKSCAPE VERSION --- > %TRACEFILE% +inkscape.com -V >> %TRACEFILE% +echo. >> %TRACEFILE% +echo --- SYSTEM INFO --- >> %TRACEFILE% +systeminfo >> %TRACEFILE% + +echo. +echo Launching Inkscape, please wait... + +echo. >> %TRACEFILE% +echo --- BACKTRACE --- >> %TRACEFILE% +gdb.exe -batch -ex "run" -ex "bt" inkscape.exe >> %TRACEFILE% + +echo. +echo Backtrace written to %TRACEFILE% +echo Please attach this file when reporting the issue at https://inkscape.org/report +echo (remove personal information you do not want to share, e.g. your user name) +echo. + +pause diff --git a/packaging/win32/header.bmp b/packaging/win32/header.bmp Binary files differnew file mode 100644 index 0000000..d3c2972 --- /dev/null +++ b/packaging/win32/header.bmp diff --git a/packaging/win32/header.svg b/packaging/win32/header.svg new file mode 100644 index 0000000..e5858ce --- /dev/null +++ b/packaging/win32/header.svg @@ -0,0 +1,516 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="57" + id="svg2" + version="1.1" + inkscape:version="0.46+devel r21627" + sodipodi:docname="header.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="C:\Users\user\Documents\Inkscape\svn\packaging\win32\header.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3604"> + <stop + style="stop-color:#3399dd;stop-opacity:1;" + offset="0" + id="stop3606" /> + <stop + id="stop3612" + offset="0.55000001" + style="stop-color:#3399dd;stop-opacity:0.49803922;" /> + <stop + style="stop-color:#3399dd;stop-opacity:0;" + offset="1" + id="stop3608" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3604" + id="linearGradient3610" + x1="0" + y1="1023.8622" + x2="150" + y2="1023.8622" + gradientUnits="userSpaceOnUse" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipoutline1"> + <path + id="outline1" + d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z" /> + </clipPath> + <filter + color-interpolation-filters="sRGB" + id="filter9426-4" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur9428-0" + stdDeviation="0.37512301" + inkscape:collect="always" /> + </filter> + <linearGradient + y2="40" + x2="60" + y1="20" + x1="82.118591" + gradientUnits="userSpaceOnUse" + id="linearGradient6063-9" + xlink:href="#linearGradient6053-4" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6053-4" + gradientUnits="userSpaceOnUse"> + <stop + style="stop-color:#c0cdf9;stop-opacity:1" + offset="0" + id="stop6055-8" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop6057-8" /> + </linearGradient> + <clipPath + id="clipPath9096-2" + clipPathUnits="userSpaceOnUse"> + <use + height="300" + width="400" + y="0" + x="0" + style="fill:#ffffff;fill-opacity:1" + class="low-specularity" + xlink:href="#outline1" + id="use9098-4" /> + </clipPath> + <filter + color-interpolation-filters="sRGB" + id="filter8490-5" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur8492-5" + stdDeviation="2.4163949" + inkscape:collect="always" /> + </filter> + <linearGradient + y2="50" + x2="90" + y1="20" + x1="60" + gradientTransform="matrix(0.2276599,0,0,0.2148177,139.8765,8.2840691)" + gradientUnits="userSpaceOnUse" + id="linearGradient9431-1" + xlink:href="#WhiteTransparent-7" + inkscape:collect="always" /> + <linearGradient + id="WhiteTransparent-7" + gradientUnits="userSpaceOnUse"> + <stop + style="stop-color:white;stop-opacity:1" + offset="0" + id="stop7606-11" /> + <stop + style="stop-color:white;stop-opacity:0" + offset="1" + id="stop7608-5" /> + </linearGradient> + <radialGradient + r="12.298907" + fy="14.005527" + fx="153.71956" + cy="14.005527" + cx="153.71956" + gradientTransform="matrix(1.4784735,-0.03828973,0.01925212,0.7433782,-73.820384,9.6242533)" + gradientUnits="userSpaceOnUse" + id="radialGradient6066-2" + xlink:href="#linearGradient9121-7" + inkscape:collect="always" /> + <linearGradient + id="linearGradient9121-7" + inkscape:collect="always"> + <stop + id="stop9123-6" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop9125-1" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <radialGradient + r="12.298907" + fy="34.791431" + fx="154.7691" + cy="34.791431" + cx="154.7691" + gradientTransform="matrix(0.8490896,-0.0737228,0.03481331,0.4009562,22.772491,30.913154)" + gradientUnits="userSpaceOnUse" + id="radialGradient9131-4" + xlink:href="#linearGradient9121-7" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient10981-3-6-3" + id="linearGradient11440-2" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-130.16572,-83.352786)" + x1="195.81293" + y1="206.5" + x2="148.70045" + y2="176.5" /> + <linearGradient + id="linearGradient10981-3-6-3" + inkscape:collect="always"> + <stop + id="stop10983-2-9-2" + offset="0" + style="stop-color:#729fcf;stop-opacity:1;" /> + <stop + id="stop10985-3-9-2" + offset="1" + style="stop-color:#729fcf;stop-opacity:0;" /> + </linearGradient> + <filter + id="filter10997-7-3-1" + inkscape:collect="always" + color-interpolation-filters="sRGB"> + <feGaussianBlur + id="feGaussianBlur10999-0-1-6" + stdDeviation="2.7696726" + inkscape:collect="always" /> + </filter> + <radialGradient + r="34.25" + fy="184.99916" + fx="205.30223" + cy="184.99916" + cx="205.30223" + gradientTransform="matrix(0.1678639,0.00386605,-0.00110869,0.04813956,130.33294,12.618172)" + gradientUnits="userSpaceOnUse" + id="radialGradient9260-8" + xlink:href="#linearGradient8738-5" + inkscape:collect="always" /> + <linearGradient + id="linearGradient8738-5" + inkscape:collect="always"> + <stop + id="stop8740-7" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop8742-6" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <radialGradient + r="34.25" + fy="182.08189" + fx="217.5" + cy="182.08189" + cx="217.5" + gradientTransform="matrix(1,0,0,0.4233577,0,97.164234)" + gradientUnits="userSpaceOnUse" + id="radialGradient9262-1" + xlink:href="#linearGradient8738-5" + inkscape:collect="always" /> + <filter + color-interpolation-filters="sRGB" + height="1.3508246" + y="-0.1754123" + width="1.1485243" + x="-0.074262142" + id="filter8764-8" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur8766-9" + stdDeviation="2.1195652" + inkscape:collect="always" /> + </filter> + <linearGradient + y2="84.480316" + x2="53.63158" + y1="76.246338" + x1="57.225197" + gradientTransform="matrix(0.267927,0,0,0.267927,141.44294,2.0379776)" + gradientUnits="userSpaceOnUse" + id="linearGradient6070-2" + xlink:href="#linearGradient5793-7" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5793-7" + inkscape:collect="always"> + <stop + id="stop5795-9" + offset="0" + style="stop-color:#eeeeec;stop-opacity:1;" /> + <stop + id="stop5797-5" + offset="1" + style="stop-color:#eeeeec;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="223.5" + x2="153.5" + y1="208.16444" + x1="95.5" + gradientUnits="userSpaceOnUse" + id="linearGradient6074-4" + xlink:href="#linearGradient5899-3" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5899-3" + inkscape:collect="always"> + <stop + id="stop5901-1" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5903-2" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <filter + color-interpolation-filters="sRGB" + height="1.2446715" + y="-0.12233575" + width="1.165018" + x="-0.082508981" + id="filter5983-3" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur5985-3" + stdDeviation="3.6868363" + inkscape:collect="always" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#WhiteTransparent-3-1" + id="linearGradient11251-4" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.22005273,0,0,0.22005273,143.41692,5.6092819)" + x1="33" + y1="35" + x2="73.644951" + y2="65.415558" /> + <linearGradient + id="WhiteTransparent-3-1" + gradientUnits="userSpaceOnUse"> + <stop + style="stop-color:white;stop-opacity:1" + offset="0" + id="stop7606-2-1" /> + <stop + style="stop-color:white;stop-opacity:0" + offset="1" + id="stop7608-6-3" /> + </linearGradient> + <linearGradient + id="WhiteTransparent-0-7" + gradientUnits="userSpaceOnUse"> + <stop + style="stop-color:white;stop-opacity:1" + offset="0" + id="stop7606-3-4" /> + <stop + style="stop-color:white;stop-opacity:0" + offset="1" + id="stop7608-7-2" /> + </linearGradient> + <linearGradient + y2="187.65974" + x2="82.754066" + y1="180.47572" + x1="73.712105" + gradientTransform="matrix(0.14962708,0,0,0.14962708,141.39524,-4.2783137)" + gradientUnits="userSpaceOnUse" + id="linearGradient4862" + xlink:href="#WhiteTransparent-0-7" + inkscape:collect="always" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-60.328458" + inkscape:cy="57" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1580" + inkscape:window-height="1030" + inkscape:window-x="-8" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-995.36218)"> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="rect8549" + width="150" + height="57" + x="0" + y="995.36218" /> + <rect + style="fill:url(#linearGradient3610);fill-opacity:1;stroke:none" + id="rect2830" + width="150" + height="57" + x="0" + y="995.36218" /> + <g + style="display:inline;enable-background:new" + transform="matrix(1.888045,0,0,1.888045,-248.02685,985.51161)" + id="g9187"> + <g + transform="matrix(0.9277597,0,0,0.9277597,14.418496,-0.4125135)" + id="g9104"> + <path + d="m 152.12786,10.396674 -9.58909,9.819406 c -3.63082,3.629923 2.35072,3.32743 4.51525,4.700285 1.00081,0.651525 -3.21188,1.489199 -2.35072,2.350142 0.83788,0.860944 5.05056,1.652081 5.88845,2.489755 0.83788,0.860943 -1.69904,1.768424 -0.86116,2.629367 0.81461,0.860944 2.76967,0.04654 3.11878,2.001112 0.25602,1.442661 3.58428,0.721331 5.07385,-0.511912 0.93098,-0.791137 -1.60595,-0.791137 -0.76806,-1.652081 2.0947,-2.117455 3.95666,-0.954018 4.72472,-2.908592 0.41894,-1.047093 -3.16533,-1.791692 -2.21108,-2.466486 2.2809,-1.605543 10.65973,-2.419948 6.79616,-6.282559 L 156.47629,10.3336 c -1.23355,-1.1634364 -3.20798,-1.1003614 -4.34843,0.06307 z m 11.00884,18.917482 c -0.10057,0.63533 3.52627,1.033498 3.4594,0.133421 -0.12404,-1.669578 -3.21919,-1.650953 -3.4594,-0.133421 z m -16.17578,2.58283 c 0.86116,0.7446 2.16453,-0.162881 2.58347,-1.209974 -0.83788,-1.093631 -3.93339,0.06981 -2.58347,1.209974 z m 15.71029,-1.559005 c -1.07062,0.977287 0.1862,2.001111 1.23355,1.326318 0.2793,-0.18615 -0.0233,-1.093631 -1.23355,-1.326318 z" + id="path9380" + sodipodi:nodetypes="ccccccsccccccccsscccccc" + style="opacity:0.4679803;filter:url(#filter9426-4)" /> + <path + sodipodi:nodetypes="cccccsccccccccsscccccc" + id="use7633" + d="m 152.12786,9.8257858 -9.58909,9.8194062 c -3.63082,3.629923 2.35072,3.32743 4.51525,4.700285 1.00081,0.651525 -3.21188,1.489199 -2.35072,2.350142 5.80846,3.365665 5.95675,-0.226725 5.02729,5.119122 0.81461,0.860944 2.76967,0.04654 3.11878,2.001112 0.25602,1.442661 3.58428,0.721331 5.07385,-0.511912 0.93098,-0.791137 -1.60595,-0.791137 -0.76806,-1.652081 2.0947,-2.117455 3.95666,-0.954018 4.72472,-2.908592 0.41894,-1.047093 -3.16533,-1.791692 -2.21108,-2.466486 2.2809,-1.605543 10.65973,-2.419948 6.79616,-6.282559 L 156.47629,9.7627108 C 155.24274,8.599274 153.26831,8.662349 152.12786,9.8257858 z M 163.1367,28.743268 c -0.10057,0.63533 3.52627,1.033498 3.4594,0.133421 -0.12404,-1.669578 -3.21919,-1.650953 -3.4594,-0.133421 z m -16.17578,2.58283 c 0.86116,0.7446 2.16453,-0.162881 2.58347,-1.209974 -0.83788,-1.093631 -3.93339,0.06981 -2.58347,1.209974 z m 15.71029,-1.559005 c -1.07062,0.977287 0.1862,2.001111 1.23355,1.326318 0.2793,-0.18615 -0.0233,-1.093631 -1.23355,-1.326318 z" /> + <use + transform="matrix(0.2220825,0,0,0.2220275,140.15711,7.5982602)" + height="300" + width="400" + y="0" + x="0" + style="opacity:0.66995072;fill:url(#linearGradient6063-9);filter:url(#filter8490-5)" + class="low-specularity" + xlink:href="#outline1" + id="use9076" + clip-path="url(#clipPath9096-2)" /> + <path + sodipodi:nodetypes="ccccccccccccc" + id="path9072" + class="full-specularity" + style="fill:url(#linearGradient9431-1)" + d="m 155.64511,11.12442 5.26942,5.394616 c 0.34148,0.322225 0.34148,0.988163 0.13659,1.181498 l -1.84406,-1.417797 -0.36425,2.08373 -3.65386,-0.840308 -2.80078,1.783588 -0.5003,-3.416204 -1.39139,2.438842 -3.19462,0.145933 c -0.63745,0 -0.65282,-0.723421 0.007,-1.346395 1.29764,-1.353349 4.9248,-5.198696 5.7216,-5.993522 0.81958,-0.794826 1.79465,-0.787325 2.61424,-0.01398 z" /> + </g> + <path + transform="matrix(0.9277597,0,0,0.9277597,14.432469,-0.5780285)" + style="fill:none;stroke:url(#radialGradient6066-2);stroke-width:0.57088965;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" + d="m 154.3125,9.9375 c -0.53382,0.01065 -1.07686,0.225835 -1.4375,0.59375 l -9.59375,9.84375 a 1.0391418,1.0391418 0 0 1 0,0.03125 c -0.81188,0.811675 -0.83517,1.206671 -0.84375,1.15625 -0.004,-0.02521 -0.0528,-0.04119 0.0312,0.03125 0.084,0.07244 0.2939,0.169709 0.5625,0.28125 0.53721,0.223082 1.35803,0.430717 2.1875,0.65625 0.82947,0.225533 1.66665,0.46841 2.40625,0.9375 0.15343,0.09988 0.33185,0.232441 0.46875,0.46875 0.1369,0.236309 0.17995,0.603148 0.125,0.875 -0.1099,0.543705 -0.38895,0.718897 -0.59375,0.875 -0.3812,0.290562 -0.74745,0.476133 -1.125,0.65625 0.64978,0.29321 1.40945,0.694755 1.84375,0.8125 0.72976,0.197849 1.12953,0.176121 1.6875,0.34375 0.27898,0.08381 0.70699,0.321222 0.9375,0.71875 0.23051,0.397528 0.23841,0.740772 0.21875,1.0625 -0.0276,0.451372 -0.1802,1.194725 -0.3125,1.90625 0.18599,0.04581 0.28782,0.06531 0.8125,0.1875 0.39351,0.09164 0.87899,0.251189 1.3125,0.625 0.41064,0.354092 0.71179,0.908708 0.84375,1.53125 0.13868,0.04352 0.50934,0.06134 0.9375,0 0.53662,-0.07688 1.03222,-0.40139 1.5625,-0.65625 -0.0362,-0.03911 -0.0564,-0.01567 -0.0937,-0.0625 -0.17826,-0.223581 -0.33788,-0.643519 -0.28125,-1.03125 0.0566,-0.387731 0.24075,-0.64159 0.4375,-0.84375 1.2223,-1.235579 2.53983,-1.599686 3.34375,-1.8125 0.40196,-0.106407 0.67013,-0.191388 0.8125,-0.28125 0.049,-0.03091 0.0856,-0.119072 0.125,-0.15625 -0.1665,-0.115586 -0.34846,-0.253216 -0.625,-0.40625 -0.36013,-0.199295 -0.71447,-0.367982 -1.09375,-0.71875 -0.18964,-0.175384 -0.46404,-0.422187 -0.5,-0.9375 -0.036,-0.515313 0.31213,-0.988356 0.59375,-1.1875 0.7818,-0.550313 1.75257,-0.883317 2.8125,-1.25 1.05993,-0.366683 2.19887,-0.753366 3.0625,-1.15625 0.86363,-0.402884 1.38214,-0.862703 1.46875,-1.0625 0.0433,-0.0999 0.0634,-0.127877 0,-0.3125 -0.0634,-0.184623 -0.27753,-0.496378 -0.6875,-0.90625 a 1.0391418,1.0391418 0 0 1 0,-0.03125 L 155.75,10.5 c -0.011,-0.01036 -0.0202,-0.02119 -0.0312,-0.03125 -0.41189,-0.373373 -0.88684,-0.5416128 -1.40625,-0.53125 z" + inkscape:href="#use7633" + id="path9100" + xlink:href="#use7633" + inkscape:original="M 154.28125 8.90625 C 153.49089 8.9220187 152.69522 9.2307816 152.125 9.8125 L 142.53125 19.65625 C 138.90043 23.286173 144.89797 22.970895 147.0625 24.34375 C 148.06331 24.995275 143.85759 25.826557 144.71875 26.6875 C 150.52721 30.053165 150.64821 26.466653 149.71875 31.8125 C 150.53336 32.673444 152.49464 31.857928 152.84375 33.8125 C 153.09977 35.255161 156.44793 34.545743 157.9375 33.3125 C 158.86848 32.521363 156.31836 32.517194 157.15625 31.65625 C 159.25095 29.538795 161.10694 30.704574 161.875 28.75 C 162.29394 27.702907 158.702 26.956044 159.65625 26.28125 C 161.93715 24.675707 170.33232 23.862611 166.46875 20 L 156.46875 9.75 C 155.85197 9.1682816 155.07161 8.8904813 154.28125 8.90625 z M 164.90625 27.625 C 164.08693 27.61065 163.2451 27.991234 163.125 28.75 C 163.02443 29.38533 166.66062 29.775077 166.59375 28.875 C 166.53173 28.040211 165.72557 27.63935 164.90625 27.625 z M 148.59375 29.6875 C 147.43293 29.606787 145.95631 30.457377 146.96875 31.3125 C 147.82991 32.0571 149.11231 31.172093 149.53125 30.125 C 149.32178 29.851592 148.98069 29.714404 148.59375 29.6875 z M 162.65625 29.78125 C 161.58563 30.758537 162.8589 31.768543 163.90625 31.09375 C 164.18555 30.9076 163.8665 30.013937 162.65625 29.78125 z " + inkscape:radius="-1.0390379" + sodipodi:type="inkscape:offset" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0390379" + inkscape:original="M 154.28125 8.90625 C 153.49089 8.9220187 152.69522 9.2307816 152.125 9.8125 L 142.53125 19.65625 C 138.90043 23.286173 144.89797 22.970895 147.0625 24.34375 C 148.06331 24.995275 143.85759 25.826557 144.71875 26.6875 C 150.52721 30.053165 150.64821 26.466653 149.71875 31.8125 C 150.53336 32.673444 152.49464 31.857928 152.84375 33.8125 C 153.09977 35.255161 156.44793 34.545743 157.9375 33.3125 C 158.86848 32.521363 156.31836 32.517194 157.15625 31.65625 C 159.25095 29.538795 161.10694 30.704574 161.875 28.75 C 162.29394 27.702907 158.702 26.956044 159.65625 26.28125 C 161.93715 24.675707 170.33232 23.862611 166.46875 20 L 156.46875 9.75 C 155.85197 9.1682816 155.07161 8.8904813 154.28125 8.90625 z M 164.90625 27.625 C 164.08693 27.61065 163.2451 27.991234 163.125 28.75 C 163.02443 29.38533 166.66062 29.775077 166.59375 28.875 C 166.53173 28.040211 165.72557 27.63935 164.90625 27.625 z M 148.59375 29.6875 C 147.43293 29.606787 145.95631 30.457377 146.96875 31.3125 C 147.82991 32.0571 149.11231 31.172093 149.53125 30.125 C 149.32178 29.851592 148.98069 29.714404 148.59375 29.6875 z M 162.65625 29.78125 C 161.58563 30.758537 162.8589 31.768543 163.90625 31.09375 C 164.18555 30.9076 163.8665 30.013937 162.65625 29.78125 z " + xlink:href="#use7633" + id="path9129" + inkscape:href="#use7633" + d="m 154.3125,9.9375 c -0.53382,0.01065 -1.07686,0.225835 -1.4375,0.59375 l -9.59375,9.84375 a 1.0391418,1.0391418 0 0 1 0,0.03125 c -0.81188,0.811675 -0.83517,1.206671 -0.84375,1.15625 -0.004,-0.02521 -0.0528,-0.04119 0.0312,0.03125 0.084,0.07244 0.2939,0.169709 0.5625,0.28125 0.53721,0.223082 1.35803,0.430717 2.1875,0.65625 0.82947,0.225533 1.66665,0.46841 2.40625,0.9375 0.15343,0.09988 0.33185,0.232441 0.46875,0.46875 0.1369,0.236309 0.17995,0.603148 0.125,0.875 -0.1099,0.543705 -0.38895,0.718897 -0.59375,0.875 -0.3812,0.290562 -0.74745,0.476133 -1.125,0.65625 0.64978,0.29321 1.40945,0.694755 1.84375,0.8125 0.72976,0.197849 1.12953,0.176121 1.6875,0.34375 0.27898,0.08381 0.70699,0.321222 0.9375,0.71875 0.23051,0.397528 0.23841,0.740772 0.21875,1.0625 -0.0276,0.451372 -0.1802,1.194725 -0.3125,1.90625 0.18599,0.04581 0.28782,0.06531 0.8125,0.1875 0.39351,0.09164 0.87899,0.251189 1.3125,0.625 0.41064,0.354092 0.71179,0.908708 0.84375,1.53125 0.13868,0.04352 0.50934,0.06134 0.9375,0 0.53662,-0.07688 1.03222,-0.40139 1.5625,-0.65625 -0.0362,-0.03911 -0.0564,-0.01567 -0.0937,-0.0625 -0.17826,-0.223581 -0.33788,-0.643519 -0.28125,-1.03125 0.0566,-0.387731 0.24075,-0.64159 0.4375,-0.84375 1.2223,-1.235579 2.53983,-1.599686 3.34375,-1.8125 0.40196,-0.106407 0.67013,-0.191388 0.8125,-0.28125 0.049,-0.03091 0.0856,-0.119072 0.125,-0.15625 -0.1665,-0.115586 -0.34846,-0.253216 -0.625,-0.40625 -0.36013,-0.199295 -0.71447,-0.367982 -1.09375,-0.71875 -0.18964,-0.175384 -0.46404,-0.422187 -0.5,-0.9375 -0.036,-0.515313 0.31213,-0.988356 0.59375,-1.1875 0.7818,-0.550313 1.75257,-0.883317 2.8125,-1.25 1.05993,-0.366683 2.19887,-0.753366 3.0625,-1.15625 0.86363,-0.402884 1.38214,-0.862703 1.46875,-1.0625 0.0433,-0.0999 0.0634,-0.127877 0,-0.3125 -0.0634,-0.184623 -0.27753,-0.496378 -0.6875,-0.90625 a 1.0391418,1.0391418 0 0 1 0,-0.03125 L 155.75,10.5 c -0.011,-0.01036 -0.0202,-0.02119 -0.0312,-0.03125 -0.41189,-0.373373 -0.88684,-0.5416128 -1.40625,-0.53125 z" + style="opacity:0.30049259;fill:none;stroke:url(#radialGradient9131-4);stroke-width:0.57088965;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" + transform="matrix(0.9277597,0,0,0.9277597,14.432469,-0.5780285)" /> + <path + transform="matrix(0.6293469,0,0,0.7061979,-45.597946,-27.099852)" + d="m 339.78125,74.640625 c 0,0.181218 -0.59462,0.328125 -1.32813,0.328125 -0.7335,0 -1.32812,-0.146907 -1.32812,-0.328125 0,-0.181218 0.59462,-0.328125 1.32812,-0.328125 0.73351,0 1.32813,0.146907 1.32813,0.328125 z" + sodipodi:ry="0.328125" + sodipodi:rx="1.328125" + sodipodi:cy="74.640625" + sodipodi:cx="338.45312" + id="path9133" + style="opacity:0.52709357;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <path + transform="matrix(0.09941528,0,0,0.09941528,155.97458,13.069938)" + sodipodi:nodetypes="csszsscccsssc" + id="path10207-4" + d="m 8.8342799,171.64721 c 0,0 22.5917801,-2.12795 27.8180201,-8.64645 3.05755,-3.81358 -12.15146,-8.2638 -8.86827,-12 12.35008,-14.0541 22.73076,-13.46729 37.05025,-19.35355 14.31949,-5.88626 9.03544,-8.76906 4.40381,-11.35355 -7.9325,-4.4264 -25.58722,-9.14237 -19.74696,-19.64645 5.87688,-10.569936 57.34315,-25.249996 57.34315,-25.249996 15.59619,-5.32843 13.63909,-14.96447 6,-23 l -46,-45.7499997 c 0,0 2.28296,43.3886497 -7,61.9999997 -11.4715,22.99914 -72.54408,48.661766 -47,51.499996 9,1 13.32065,4.0705 17,11 7.57631,14.26883 -21.0000001,40.5 -21.0000001,40.5 z" + style="opacity:0.4842105;color:#000000;fill:url(#linearGradient11440-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter10997-7-3-1);enable-background:accumulate" /> + <path + transform="matrix(0.5296484,0,0,0.5296484,-11.722258,-13.864159)" + d="m 335.3125,78.5625 c 0,0.241625 -0.25884,0.4375 -0.57813,0.4375 -0.31928,0 -0.57812,-0.195875 -0.57812,-0.4375 0,-0.241625 0.25884,-0.4375 0.57812,-0.4375 0.31929,0 0.57813,0.195875 0.57813,0.4375 z" + sodipodi:ry="0.4375" + sodipodi:rx="0.578125" + sodipodi:cy="78.5625" + sodipodi:cx="334.73438" + id="path9135" + style="opacity:0.50246307;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <path + transform="matrix(0.5296484,0,0,0.5296484,-11.722258,-13.864159)" + d="m 310.03125,78.53125 c 0,0.241625 -0.46171,0.4375 -1.03125,0.4375 -0.56954,0 -1.03125,-0.195875 -1.03125,-0.4375 0,-0.241625 0.46171,-0.4375 1.03125,-0.4375 0.56954,0 1.03125,0.195875 1.03125,0.4375 z" + sodipodi:ry="0.4375" + sodipodi:rx="1.03125" + sodipodi:cy="78.53125" + sodipodi:cx="309" + id="path9137" + style="opacity:0.56650247;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cccc" + id="path9256" + d="m 162.08244,23.030231 c 4.22014,-1.553062 5.57591,-1.766435 6.96652,-3.156261 -1.57752,0.929259 -5.28054,1.857189 -8.05595,3.066713 l 1.08943,0.08955 z" + style="opacity:0.55172412;fill:url(#radialGradient9260-8);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;enable-background:new" /> + <path + style="opacity:0.6256158;fill:url(#radialGradient9262-1);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter8764-8);enable-background:new" + d="M 183.75344,183.7395 C 244.85715,162.08491 234.02363,160.21942 244.5,154 c -19.42769,7.43666 -56.48961,5.49424 -69.25515,26.26443 l 8.50859,3.47507 z" + id="path9258" + transform="matrix(0.1539033,0,0,0.1338092,131.13873,-1.0460783)" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient6070-2);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;enable-background:new" + d="m 152.50948,23.013039 c 0.6755,0.49612 2.00864,0.196888 2.80927,0.557417 1.92171,0.865355 3.9355,1.620501 3.91399,0.639699 -0.006,-0.28293 -0.2588,-0.740083 -0.56322,-0.885136 0,0 -1.18781,-0.140688 -1.18781,-0.140688 0,0 -0.82731,-0.288011 -1.23055,-0.520824 -0.0842,-0.04863 -0.51684,0.391276 -0.51684,0.391276 0,0 -0.0778,-0.467239 -0.0778,-0.467239 -0.56215,-0.05982 -1.11866,-0.0862 -1.60866,-0.08227 -1.17458,0.0094 -1.96697,0.193015 -1.53841,0.507763 z" + id="path6068" + sodipodi:nodetypes="csssssssss" /> + <path + style="opacity:0.32512315;fill:url(#linearGradient6074-4);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter5983-3);enable-background:new" + d="m 95.5,172 c -5.090606,1.50191 -21.592018,7.73713 -19.25,12.5 2.243595,4.56272 40.61138,6.40132 46.5,20 2.5679,5.93009 -5.89238,10.40326 -3.75,16.5 1.64973,4.69477 14.41196,16.49084 22.48603,22.06781 6.33298,4.37435 14.65096,-3.52244 11.26397,-10.06781 -5.39589,-10.42759 18.44266,-23.19912 29.25,-29 6.30524,-3.38436 -13,-20 -13,-20 0,0 -73.5,-12 -73.5,-12 z" + id="path6072" + sodipodi:nodetypes="csssssscs" + transform="matrix(0.09943509,0,0,0.09943509,143.18519,5.3592364)" /> + <path + class="specularity" + style="opacity:0.50526315;fill:url(#linearGradient11251-4);stroke:none;display:inline;enable-background:new" + d="m 147.1138,18.130281 c -2.44258,2.42058 1.84845,1.738417 5.14923,3.036727 l 6.82164,-11.9928717 c -1.03426,-1.0562537 -2.35457,-0.9682328 -3.30079,0 l -8.67008,8.9561447 z" + id="path7643-7" /> + <path + style="opacity:0.25123153;fill:url(#linearGradient4862);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04789329;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 154.35202,21.91028 c -2.17187,1.3433 -5.54858,1.832183 -1.85332,2.724377 -0.44018,-0.980154 0.95297,-0.872037 1.85332,-2.724377 z" + id="path5049-3" + sodipodi:nodetypes="ccc" /> + </g> + </g> +</svg> diff --git a/packaging/win32/inkscape.nsi b/packaging/win32/inkscape.nsi new file mode 100644 index 0000000..26e2a7c --- /dev/null +++ b/packaging/win32/inkscape.nsi @@ -0,0 +1,1047 @@ +; Instructions for compilers +; ========================== +; This file generates the Inkscape installer, which is currently the +; preferred deployment method on Windows. +; 1. Install NSIS 3.0 or later (http://nsis.sourceforge.net/) +; 2. Compile Inkscape (http://wiki.inkscape.org/wiki/index.php/Win32Port) +; 3. Compile this file with NSIS. + +; There should never be any need for packagers to touch anything below +; this line. Otherwise file a bug or write to the mailing list. + + +; Define this to make it build quickly, not including any of the files or code in the sections, +; for quick testing of features of the installer and development thereof. +;!define DUMMYINSTALL + + +; Installer code {{{1 +; Unicode, compression and admin requirement {{{2 +Unicode true +SetCompressor /SOLID lzma +SetCompressorDictSize 64 +RequestExecutionLevel admin + +; Include required files {{{2 +!include LogicLib.nsh +!include Sections.nsh +!include macros\ifexist.nsh +!include macros\RequireLatestNSIS.nsh +!include macros\SHMessageBoxCheck.nsh +!include languages\_language_lists.nsh + +; Advanced Uninstall Log {{{3 +; We're abusing this script terribly and it's time to fix the broken uninstaller. +; However, for the moment, this is what we're using. +!define INSTDIR_REG_ROOT HKLM +!define INSTDIR_REG_KEY "${UNINST_KEY}" +!include macros\AdvUninstLog.nsh +;!insertmacro INTERACTIVE_UNINSTALL ; not needed anymore since we have our own uninstall logic; conflicts with other macros + +; Initialise NSIS plug-ins {{{3 +; The plugin used is md5dll +!addplugindir plugins + +; FileFunc bits and pieces {{{3 +!include FileFunc.nsh +!insertmacro GetParameters +!insertmacro GetSize +!insertmacro GetOptions +!insertmacro Locate +!insertmacro un.GetParent + +; User interface {{{3 +!include MUI.nsh +; MUI Configuration {{{4 +!define MUI_ABORTWARNING +!define MUI_ICON ..\..\share\branding\inkscape.ico +!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" +!define MUI_HEADERIMAGE +!define MUI_HEADERIMAGE_BITMAP header.bmp +!define MUI_WELCOMEFINISHPAGE_BITMAP welcomefinish.bmp +!define MUI_UNWELCOMEFINISHPAGE_BITMAP welcomefinish.bmp +!define MUI_COMPONENTSPAGE_SMALLDESC + +; Pages {{{4 +; Installer pages {{{5 +; Welcome page {{{6 +!insertmacro MUI_PAGE_WELCOME +; License page {{{6 +LicenseForceSelection off +;!define MUI_LICENSEPAGE_RADIOBUTTONS +!define MUI_LICENSEPAGE_BUTTON "$(^NextBtn)" +!define MUI_LICENSEPAGE_TEXT_BOTTOM "$(LICENSE_BOTTOM_TEXT)" +!insertmacro MUI_PAGE_LICENSE ..\..\Copying +; Components page {{{6 +!define MUI_PAGE_CUSTOMFUNCTION_SHOW SortTranslationsSection +!insertmacro MUI_PAGE_COMPONENTS +InstType "$(Full)" +InstType "$(Optimal)" +InstType "$(Minimal)" +;Directory page {{{6 +!insertmacro MUI_PAGE_DIRECTORY +; Instfiles page {{{6 +!insertmacro MUI_PAGE_INSTFILES +; Finish page {{{6 +!define MUI_FINISHPAGE_RUN "$INSTDIR\inkscape.exe" +!insertmacro MUI_PAGE_FINISH + +; Uninstaller pages {{{5 +!insertmacro MUI_UNPAGE_CONFIRM +UninstPage custom un.CustomPageUninstall +!insertmacro MUI_UNPAGE_INSTFILES +ShowUninstDetails hide +!insertmacro MUI_UNPAGE_FINISH + +; Localization {{{3 +!define LANGFILE_LANGDLL_FMT "%ENGNAME% / %NATIVENAME%" ; include English name in language selection dialog +; See also the "Languages sections" SectionGroup lower down. +!insertmacro MUI_RESERVEFILE_LANGDLL +;TODO: check if `!insertmacro LANGFILE "English" "English"`-style lines are needed (don't think it should be due to MUI_LANGUAGE) +!echo `Loading language files...` +!verbose push +!verbose 3 +!insertmacro MUI_LANGUAGE "English" +!insertmacro LANGFILE_INCLUDE "languages\English.nsh" +!insertmacro LANGFILE_INCLUDE "languages\English_languageNames.nsh" +!macro INKLANGFILE LocaleName LocaleID + !insertmacro MUI_LANGUAGE "${LocaleName}" + !insertmacro LANGFILE_INCLUDE_WITHDEFAULT "languages\${LocaleName}.nsh" "languages\English.nsh" + !insertmacro LANGFILE_INCLUDE_WITHDEFAULT "languages\${LocaleName}_languageNames.nsh" "languages\English_languageNames.nsh" +!macroend +; include list of available installer translations from /languages/_language_lists.nsh +!insertmacro INSTALLER_TRANSLATIONS INKLANGFILE +!verbose pop + +ReserveFile inkscape.nsi.uninstall +ReserveFile /plugin UserInfo.dll +!insertmacro MUI_RESERVEFILE_INSTALLOPTIONS + +; ####################################### +; SETTINGS +; ####################################### + +; Find inkscape distribution directory (define on command line or uncomment line below to manually define) +;!define INKSCAPE_DIST_DIR ..\..\build\inkscape +!ifdef INKSCAPE_DIST_DIR + ${!defineifexist} ${INKSCAPE_DIST_DIR}\inkscape.exe FOUND 1 + !ifndef FOUND + !error "inkscape.exe not found in INKSCAPE_DIST_DIR ('${INKSCAPE_DIST_DIR}')" + !endif +!endif +!ifndef INKSCAPE_DIST_DIR + ${!defineifexist} ..\..\inkscape\inkscape.exe INKSCAPE_DIST_DIR ..\..\inkscape ; btool default +!endif +!ifndef INKSCAPE_DIST_DIR + ${!defineifexist} ..\..\build\inkscape\inkscape.exe INKSCAPE_DIST_DIR ..\..\build\inkscape ; cmake default +!endif +!ifndef INKSCAPE_DIST_DIR + !error "Couldn't find inkscape distribution directory in neither ..\..\inkscape nor ..\..\build\inkscape" +!endif +!echo `Bundling compiled Inkscape files from ${INKSCAPE_DIST_DIR}` + +; Product details (version, name, registry keys etc.) {{{2 +; Extract version number from CMakeLists.txt (e.g. 0.92pre1) {{{3 +!ifndef INKSCAPE_VERSION + !searchparse /noerrors /file ..\..\CMakeLists.txt `set(INKSCAPE_VERSION_MAJOR` INKSCAPE_VERSION_MAJOR `)` + !searchparse /noerrors /file ..\..\CMakeLists.txt `set(INKSCAPE_VERSION_MINOR` INKSCAPE_VERSION_MINOR `)` + !searchparse /noerrors /file ..\..\CMakeLists.txt `set(INKSCAPE_VERSION_PATCH` INKSCAPE_VERSION_PATCH `)` + !searchparse /noerrors /file ..\..\CMakeLists.txt `set(INKSCAPE_VERSION_SUFFIX` INKSCAPE_VERSION_SUFFIX `)` + ; strip whitespace + !define /redef INKSCAPE_VERSION_MAJOR ${INKSCAPE_VERSION_MAJOR} + !define /redef INKSCAPE_VERSION_MINOR ${INKSCAPE_VERSION_MINOR} + !define /redef INKSCAPE_VERSION_PATCH ${INKSCAPE_VERSION_PATCH} + !define /redef INKSCAPE_VERSION_SUFFIX ${INKSCAPE_VERSION_SUFFIX} + ; strip quotes + !searchparse /noerrors ${INKSCAPE_VERSION_SUFFIX} `"` INKSCAPE_VERSION_SUFFIX `"` + ; construct version string + !define INKSCAPE_VERSION "${INKSCAPE_VERSION_MAJOR}.${INKSCAPE_VERSION_MINOR}" + !if "${INKSCAPE_VERSION_PATCH}" != "0" + !if "${INKSCAPE_VERSION_PATCH}" != "" + !define /redef INKSCAPE_VERSION "${INKSCAPE_VERSION}.${INKSCAPE_VERSION_PATCH}" + !endif + !endif + !define /redef INKSCAPE_VERSION "${INKSCAPE_VERSION}${INKSCAPE_VERSION_SUFFIX}" + ; construct X.X.X.X version string for VIProductVersion + !if "${INKSCAPE_VERSION_PATCH}" != "" + !define VERSION_X.X.X.X ${INKSCAPE_VERSION_MAJOR}.${INKSCAPE_VERSION_MINOR}.${INKSCAPE_VERSION_PATCH}.0 + !else + !define VERSION_X.X.X.X ${INKSCAPE_VERSION_MAJOR}.${INKSCAPE_VERSION_MINOR}.0.0 + !endif +!endif +!ifdef INKSCAPE_VERSION + !echo `INKSCAPE_VERSION: ${INKSCAPE_VERSION}` +!else + !error "INKSCAPE_VERSION not defined and unable to get version number from CMakeLists.txt!" +!endif +!define FILENAME inkscape-${INKSCAPE_VERSION} +!define BrandingText `Inkscape ${INKSCAPE_VERSION}` + +; Detect architecture of the build +${!ifexist} ${INKSCAPE_DIST_DIR}\gspawn-win32-helper.exe + !define BITNESS 32 + !define /redef FILENAME `${FILENAME}-x86` +!endif +${!ifexist} ${INKSCAPE_DIST_DIR}\gspawn-win64-helper.exe + !define BITNESS 64 + !define /redef FILENAME `${FILENAME}-x64` +!endif +!ifndef BITNESS + !error "Could not detect architecture (BITNESS) of the Inkscape build" +!endif + +; Product definitions {{{3 +!define PRODUCT_NAME "Inkscape" ; TODO: fix up the language files to not use this and kill this line +!define INSTDIR_KEY "Software\Microsoft\Windows\CurrentVersion\App Paths\inkscape.exe" +!define UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\Inkscape" + +!ifdef OutFile + ; allow to set different output filename by defining 'OutFile' on command line + !define /redef FILENAME ${OutFile} +!else + !define /redef FILENAME ${FILENAME}.exe +!endif + + +; Product information {{{3 +Name `Inkscape` +Caption `Inkscape - $(CaptionDescription)` +BrandingText `${BrandingText}` +OutFile `${FILENAME}` +!if ${BITNESS} = 32 + InstallDir "$PROGRAMFILES32\Inkscape" +!else + InstallDir "$PROGRAMFILES64\Inkscape" +!endif +InstallDirRegKey HKLM "${INSTDIR_KEY}" "" + +; Version information {{{3 +!define /date COPYRIGHT_YEAR "%Y" +VIProductVersion ${VERSION_X.X.X.X} +VIAddVersionKey /LANG=0 ProductName "Inkscape" +VIAddVersionKey /LANG=0 Comments "Licensed under the GNU GPL" +VIAddVersionKey /LANG=0 CompanyName "Inkscape project" +VIAddVersionKey /LANG=0 LegalCopyright "© ${COPYRIGHT_YEAR} Inkscape project" +VIAddVersionKey /LANG=0 FileDescription "Installer for Inkscape vector graphics editor" +VIAddVersionKey /LANG=0 FileVersion ${INKSCAPE_VERSION} +VIAddVersionKey /LANG=0 ProductVersion ${INKSCAPE_VERSION} + + +; Variables {{{2 +Var askMultiUser +Var filename +Var MultiUser +Var User +Var CMDARGS + +!macro delprefs ; Delete preferences (originally from VLC) {{{2 + StrCpy $0 0 + DetailPrint "Deleting personal preferences..." + DetailPrint "Finding all users..." + ${Do} + ; this will loop through all the logged users and "virtual" windows users + ; (it looks like users are only present in HKEY_USERS when they are logged in) + ClearErrors + EnumRegKey $1 HKU "" $0 + ${IfThen} $1 == "" ${|} ${ExitDo} ${|} + IntOp $0 $0 + 1 + ReadRegStr $2 HKU "$1\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" AppData + ${IfThen} $2 == "" ${|} ${Continue} ${|} + DetailPrint "Removing $2\Inkscape" + + Delete $2\Inkscape\preferences.xml + Delete $2\Inkscape\extension-errors.log + + RMDir $2\Inkscape\extensions + RMDir $2\Inkscape\icons + RMDir $2\Inkscape\keys + RMDir $2\Inkscape\palettes + RMDir $2\Inkscape\templates + RMDir $2\Inkscape + ${Loop} +!macroend + +; Sections (these do the work) {{{2 + +Section -removeInkscape ; Hidden, mandatory section to clean a previous installation {{{ +!ifndef DUMMYINSTALL + ;remove the old Inkscape shortcuts from the startmenu + ;just in case they are still there + SetShellVarContext current + Delete "$SMPROGRAMS\Inkscape\Uninstall Inkscape.lnk" + Delete $SMPROGRAMS\Inkscape\Inkscape.lnk + RMDir $SMPROGRAMS\Inkscape + Delete $SMPROGRAMS\Inkscape.lnk + SetShellVarContext all + Delete "$SMPROGRAMS\Inkscape\Uninstall Inkscape.lnk" + Delete $SMPROGRAMS\Inkscape\Inkscape.lnk + RMDir $SMPROGRAMS\Inkscape + Delete $SMPROGRAMS\Inkscape.lnk +!endif +SectionEnd ; -removeInkscape }}} + +Section "$(Core)" SecCore ; Mandatory Inkscape core files section {{{ + SectionIn 1 2 3 RO +!ifndef DUMMYINSTALL + DetailPrint "Installing Inkscape core files..." + + SetOutPath $INSTDIR + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /a ${INKSCAPE_DIST_DIR}\inkscape.exe + File /a ${INKSCAPE_DIST_DIR}\inkscape.com + File /a ${INKSCAPE_DIST_DIR}\inkview.exe + File /a ${INKSCAPE_DIST_DIR}\inkview.com + File /a ${INKSCAPE_DIST_DIR}\AUTHORS + File /a ${INKSCAPE_DIST_DIR}\COPYING + File /a ${INKSCAPE_DIST_DIR}\GPL-2.0.txt + File /a ${INKSCAPE_DIST_DIR}\GPL-3.0.txt + File /a ${INKSCAPE_DIST_DIR}\LGPL-2.1.txt + File /a ${INKSCAPE_DIST_DIR}\NEWS.md + File /a ${INKSCAPE_DIST_DIR}\gspawn-win${BITNESS}-helper.exe + File /a ${INKSCAPE_DIST_DIR}\gspawn-win${BITNESS}-helper-console.exe + File /a ${INKSCAPE_DIST_DIR}\README.md + File /a ${INKSCAPE_DIST_DIR}\TRANSLATORS + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + + SetOutPath $INSTDIR\doc + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\doc\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + + ;exclude everything from /share for which we have separate sections below + SetOutPath $INSTDIR\share + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r /x *.??*.???* /x examples /x extensions /x locale /x tutorials ${INKSCAPE_DIST_DIR}\share\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + ; this files are added because it slips through the filter + SetOutPath $INSTDIR\share\templates + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /a ${INKSCAPE_DIST_DIR}\share\templates\default.en_US.svg + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL +!endif +SectionEnd ; SecCore }}} + +Section "$(GTKFiles)" SecGTK ; Mandatory GTK files section {{{ + SectionIn 1 2 3 RO +!ifndef DUMMYINSTALL + DetailPrint "Installing GTK files..." + SetOutPath $INSTDIR + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /a /r /x libpython2.7.dll ${INKSCAPE_DIST_DIR}\*.dll + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + SetOutPath $INSTDIR\lib + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /a /r /x locale /x aspell-0.60 /x enchant /x python2.7 ${INKSCAPE_DIST_DIR}\lib\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + SetOutPath $INSTDIR\etc + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /a /r ${INKSCAPE_DIST_DIR}\etc\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL +!endif +SectionEnd ; SecGTK }}} + +Section -SetCurrentUserOnly ; Set the installation to "current user" only by default {{{ +!ifndef DUMMYINSTALL + StrCpy $MultiUser 0 + SetShellVarContext current +!endif +SectionEnd ; -SetCurrentUserOnly }}} + +Section "$(Alluser)" SecAlluser ; Then offer the user the option to make it global (default) {{{ + SectionIn 1 2 3 +!ifndef DUMMYINSTALL + ; disable this option in Win95/Win98/WinME + StrCpy $MultiUser 1 + DetailPrint "Installing in administrator mode (registry root will be HKLM)" + SetShellVarContext all +!endif +SectionEnd ; SecAllUser }}} + +Section /o "$(DeletePrefs)" SecPrefs ; Delete user preferences before installation {{{ +!ifndef DUMMYINSTALL + !insertmacro delprefs +!endif +SectionEnd ; SecPrefs }}} + +SectionGroup "$(Shortcuts)" SecShortcuts ; Create shortcuts for the user {{{ + +Section "$(Startmenu)" SecStartMenu ; Start menu shortcut {{{ + SectionIn 1 2 3 +!ifndef DUMMYINSTALL + SetOutPath $INSTDIR + CreateShortcut $SMPROGRAMS\Inkscape.lnk $INSTDIR\inkscape.exe +!endif +SectionEnd ; SecStartMenu }}} + +Section "$(Desktop)" SecDesktop ; Desktop shortcut {{{ + SectionIn 1 2 3 +!ifndef DUMMYINSTALL + SetOutPath $INSTDIR + CreateShortCut $DESKTOP\Inkscape.lnk $INSTDIR\inkscape.exe +!endif +SectionEnd ; SecDesktop }}} + +Section "$(Quicklaunch)" SecQuickLaunch ; Quick Launch shortcut {{{ + SectionIn 1 2 3 +!ifndef DUMMYINSTALL + SetOutPath $INSTDIR + ${IfThen} $QUICKLAUNCH != $TEMP ${|} CreateShortCut $QUICKLAUNCH\Inkscape.lnk $INSTDIR\inkscape.exe ${|} +!endif +SectionEnd ; SecQuickLaunch }}} + +Section "$(SVGWriter)" SecSVGWriter ; Register Inkscape as the default application for .svg[z] {{{ + SectionIn 1 2 3 +!ifndef DUMMYINSTALL + DetailPrint "Associating SVG files with Inkscape" + StrCpy $3 svg + ${For} $2 0 1 + ${IfThen} $2 = 1 ${|} StrCpy $3 $3z ${|} + ReadRegStr $0 HKCR ".$3" "" + ${If} $0 == "" + StrCpy $0 "$3file" + WriteRegStr HKCR ".$3" "" $0 + WriteRegStr HKCR $0 "" "Scalable Vector Graphics file" + ${EndIf} + WriteRegStr HKCR $0\shell\edit\command "" `"$INSTDIR\Inkscape.exe" "%1"` + ${Next} +!endif +SectionEnd ; SecSVGWriter }}} + +Section "$(ContextMenu)" SecContextMenu ; Put Inkscape in the .svg[z] context menus (but not as default) {{{ + SectionIn 1 2 3 +!ifndef DUMMYINSTALL + DetailPrint "Adding Inkscape to SVG file context menu" + ReadRegStr $0 HKCR .svg "" + ${If} $0 == "" + StrCpy $0 svgfile + WriteRegStr HKCR .svg "" $0 + WriteRegStr HKCR $0 "" "Scalable Vector Graphics file" + ${EndIf} + WriteRegStr HKCR $0\shell\Inkscape\command "" `"$INSTDIR\Inkscape.exe" "%1"` + + ReadRegStr $0 HKCR .svgz "" + ${If} $0 == "" + StrCpy $0 svgzfile + WriteRegStr HKCR .svgz "" $0 + WriteRegStr HKCR $0 "" "Scalable Vector Graphics file" + ${EndIf} + WriteRegStr HKCR $0\shell\Inkscape\command "" `"$INSTDIR\Inkscape.exe" "%1"` +!endif +SectionEnd ; SecContextMenu }}} + +SectionGroupEnd ; SecShortcuts }}} + +Section "$(Python)" SecPython ; Python distribution {{{ + SectionIn 1 2 +!ifndef DUMMYINSTALL + DetailPrint "Installing Python..." + SetOutPath $INSTDIR\python + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\python\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + SetOutPath $INSTDIR\lib\python2.7 + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\lib\python2.7\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + SetOutPath $INSTDIR + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a ${INKSCAPE_DIST_DIR}\python*.exe + File /nonfatal /a ${INKSCAPE_DIST_DIR}\libpython*.dll + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL +!endif +SectionEnd ; SecPython }}} + +SectionGroup "$(Addfiles)" SecAddfiles ; Additional files {{{ + +Section "$(Extensions)" SecExtensions ; Extensions {{{ + SectionIn 1 2 +!ifndef DUMMYINSTALL + DetailPrint "Installing extensions..." + SetOutPath $INSTDIR\share\extensions + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\share\extensions\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL +!endif +SectionEnd ; SecExtensions }}} + +Section "$(Examples)" SecExamples ; Install example SVG files {{{ + SectionIn 1 2 +!ifndef DUMMYINSTALL + DetailPrint "Installing examples..." + SetOutPath $INSTDIR\share\examples + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r /x *.??*.???* ${INKSCAPE_DIST_DIR}\share\examples\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL +!endif +SectionEnd ; SecExamples }}} + +Section "$(Tutorials)" SecTutorials ; Install tutorials {{{ + SectionIn 1 2 +!ifndef DUMMYINSTALL + DetailPrint "Installing tutorials..." + SetOutPath $INSTDIR\share\tutorials + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r /x *.??*.???* ${INKSCAPE_DIST_DIR}\share\tutorials\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL +!endif +SectionEnd ; SecTutorials }}} + +Section "$(Dictionaries)" SecDictionaries ; Aspell dictionaries {{{ + SectionIn 1 2 +!ifndef DUMMYINSTALL + DetailPrint "Installing dictionaries..." + SetOutPath $INSTDIR\lib\aspell-0.60 + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\lib\aspell-0.60\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + SetOutPath $INSTDIR\lib\enchant + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\lib\enchant\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL +!endif +SectionEnd ; SecDictionaries }}} + +SectionGroupEnd ; SecAddfiles }}} + +SectionGroup "$(Languages)" SecLanguages ; Languages sections {{{ + !macro Language SecName lng ; A macro to create each section {{{ + Section /o "$(lng_${lng})" Sec${SecName} + SectionIn 1 ; flags will be adjusted below, see LanguageAutoSelect in .onInit + !ifndef DUMMYINSTALL + DetailPrint "Installing translations and translated content for ${SecName} (${lng}) locale..." + ; locale folders (/locale, /share/locale /lib/locale) + ${!defineifexist} ${INKSCAPE_DIST_DIR}\locale EXISTS 1 + !ifdef EXISTS + !undef EXISTS + SetOutPath $INSTDIR\locale\${lng} + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\locale\${lng}\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + !endif + ${!defineifexist} ${INKSCAPE_DIST_DIR}\share\locale EXISTS 1 + !ifdef EXISTS + !undef EXISTS + SetOutPath $INSTDIR\share\locale\${lng} + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\share\locale\${lng}\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + !endif + ${!defineifexist} ${INKSCAPE_DIST_DIR}\lib\locale EXISTS 1 + !ifdef EXISTS + !undef EXISTS + SetOutPath $INSTDIR\lib\locale\${lng} + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\lib\locale\${lng}\*.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + !endif + + ; localized documentation, templates and tutorials + SetOutPath $INSTDIR\doc + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a ${INKSCAPE_DIST_DIR}\doc\*.${lng}.html ; keys.${lng}.html + File /nonfatal /a ${INKSCAPE_DIST_DIR}\doc\*.${lng}.txt ; HACKING.${lng}.html + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + SetOutPath $INSTDIR\share\templates + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a /r ${INKSCAPE_DIST_DIR}\share\templates\*.${lng}.svg + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + SectionGetFlags ${SecTutorials} $R1 + IntOp $R1 $R1 & ${SF_SELECTED} + ${If} $R1 >= ${SF_SELECTED} + SetOutPath $INSTDIR\share\tutorials + !insertmacro UNINSTALL.LOG_OPEN_INSTALL + File /nonfatal /a ${INKSCAPE_DIST_DIR}\share\tutorials\*.${lng}.* + !insertmacro UNINSTALL.LOG_CLOSE_INSTALL + ${EndIf} + !endif + SectionEnd + !macroend ; Language }}} + + ; Now create each section with the Language macro. + ; include list of available inkscape translations from /languages/_language_lists.nsh + !insertmacro INKSCAPE_TRANSLATIONS Language +SectionGroupEnd ; SecLanguages }}} + +Section -FinalizeInstallation ; Hidden, mandatory section to finalize installation {{{ +!ifndef DUMMYINSTALL + DetailPrint "Finalizing installation" + ${IfThen} $MultiUser = 1 ${|} SetShellVarContext all ${|} + ${IfThen} $MultiUser != 1 ${|} SetShellVarContext current ${|} + + WriteRegStr SHCTX "${INSTDIR_KEY}" "" $INSTDIR\inkscape.exe + WriteRegStr SHCTX "${INSTDIR_KEY}" MultiUser $MultiUser + WriteRegStr SHCTX "${INSTDIR_KEY}" askMultiUser $askMultiUser + WriteRegStr SHCTX "${INSTDIR_KEY}" User $User + + ; uninstall settings + ; WriteUninstaller $INSTDIR\uninst.exe + WriteRegExpandStr SHCTX "${UNINST_KEY}" UninstallString ${UNINST_EXE} + WriteRegExpandStr SHCTX "${UNINST_KEY}" InstallDir $INSTDIR + WriteRegExpandStr SHCTX "${UNINST_KEY}" InstallLocation $INSTDIR + WriteRegStr SHCTX "${UNINST_KEY}" DisplayName "Inkscape ${INKSCAPE_VERSION}" + WriteRegStr SHCTX "${UNINST_KEY}" DisplayIcon $INSTDIR\Inkscape.exe,0 + WriteRegStr SHCTX "${UNINST_KEY}" DisplayVersion ${INKSCAPE_VERSION} + WriteRegStr SHCTX "${UNINST_KEY}" Publisher "Inkscape Project" + WriteRegStr SHCTX "${UNINST_KEY}" URLInfoAbout "https://inkscape.org" + + WriteRegDWORD SHCTX "${UNINST_KEY}" NoModify 1 + WriteRegDWORD SHCTX "${UNINST_KEY}" NoRepair 1 + + ${GetSize} "$INSTDIR" "/S=0K" $0 $1 $2 + IntFmt $0 "0x%08X" $0 + WriteRegDWORD SHCTX "${UNINST_KEY}" EstimatedSize "$0" + + ;create/update log always within .onInstSuccess function + !insertmacro UNINSTALL.LOG_UPDATE_INSTALL + + DetailPrint "Creating MD5 checksums" + ClearErrors + FileOpen $0 $INSTDIR\Uninstall.dat r + FileOpen $9 $INSTDIR\Uninstall.log w + FileRead $0 $1 ; read first line (which is the header) + ${IfNot} ${Errors} + ${Do} + ClearErrors + FileRead $0 $1 + ${IfThen} ${Errors} ${|} ${ExitDo} ${|} + StrCpy $1 $1 -2 ; strip \r\n from path + ${If} ${FileExists} $1\*.* ; ignore directories + ${Continue} + ${EndIf} + md5dll::GetMD5File /NOUNLOAD $1 + Pop $2 + ${IfThen} $2 != "" ${|} FileWrite $9 "$2 $1$\r$\n" ${|} + ${Loop} + ${EndIf} + FileClose $0 + FileClose $9 + ; Not needed any more + ; Delete $INSTDIR\Uninstall.dat ; actually this is checked for in UNINSTALL.LOG_PREPARE_INSTALL, so keep it for now... +!endif +SectionEnd ; -FinalizeInstallation }}} + +!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN ; Section descriptions {{{ + !insertmacro MUI_DESCRIPTION_TEXT ${SecCore} "$(CoreDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecGTK} "$(GTKFilesDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecShortcuts} "$(ShortcutsDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecAlluser} "$(AlluserDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecStartMenu} "$(StartmenuDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecDesktop} "$(DesktopDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecQuickLaunch} "$(QuicklaunchDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecSVGWriter} "$(SVGWriterDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecContextMenu} "$(ContextMenuDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecPrefs} "$(DeletePrefsDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecPython} "$(PythonDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecAddfiles} "$(AddfilesDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecExtensions} "$(ExtensionsDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecExamples} "$(ExamplesDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecTutorials} "$(TutorialsDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecDictionaries} "$(DictionariesDesc)" + !insertmacro MUI_DESCRIPTION_TEXT ${SecLanguages} "$(LanguagesDesc)" +!insertmacro MUI_FUNCTION_DESCRIPTION_END ; Section descriptions }}} + + +Function SortTranslationsSection ; sorts the available translations in the component dialog alphabetically + ; originally from http://nsis.sourceforge.net/Sorting_Components + + ; defines + !define TVGN_ROOT 0 + !define TVGN_NEXT 1 + !define TVGN_NEXTVISIBLE 6 + + !define TVIF_TEXT 1 + + !define TVM_GETNEXTITEM 4362 + !define TVM_GETITEMA 4364 + !define TVM_GETITEMW 4414 + !define TVM_GETITEM 4414 + !define TVM_SORTCHILDREN 4371 + + !define TVITEM '(i, i, i, i, i, i, i, i, i, i)' + + ; get the window handle and search for the tree view control + FindWindow $0 "#32770" "" $HWNDPARENT + GetDlgItem $0 $0 1032 + + ; find the first tree item + SendMessage $0 ${TVM_GETNEXTITEM} ${TVGN_ROOT} 0 $1 + + ; allocate a string in memory to store the section name + System::Alloc ${NSIS_MAX_STRLEN} + Pop $2 + + ; loop through all tree view items until the one containing the translations is found + loopSections: + ; allocate a TVITEM (https://msdn.microsoft.com/en-us/library/windows/desktop/bb773456.aspx) structure in memory + System::Call '*${TVITEM}(${TVIF_TEXT}, r1,,, r2, ${NSIS_MAX_STRLEN},,,,) i .r3' + ; send TVM_GETITEM message (https://msdn.microsoft.com/de-de/library/windows/desktop/bb773596.aspx) + ; which stores information on the current tree item in the structure + SendMessage $0 ${TVM_GETITEM} 0 $3 + ; read the string pointed to by pszText (which is the displayed text of the tree item) + System::Call '*$2(&t${NSIS_MAX_STRLEN} .r4)' + ; check if this matches the localized string for "Translations", i.e. the Section we're looking for + StrCmp $4 "$(Languages)" 0 +2 + Goto foundSection + + ; send TVM_GETNEXTITEM message (https://msdn.microsoft.com/de-de/library/windows/desktop/bb773622.aspx) + ; will return 0 if the last item was reached (if this happens something went wrong and we did not find the translations section) + SendMessage $0 ${TVM_GETNEXTITEM} ${TVGN_NEXTVISIBLE} $1 $1 + StrCmp 0 $1 doneSections loopSections + + ; sort the children of the translations section alphabetically + foundSection: + SendMessage $0 ${TVM_SORTCHILDREN} 0 $1 + + doneSections: + System::Free $2 + System::Free $3 +FunctionEnd + + +Function .onInit ; initialise the installer {{{2 + ; This code will be executed before the sections, but due to the + ; language code in the sections it must come after it in the code. + + ; Language detection {{{ + !insertmacro MUI_LANGDLL_DISPLAY + + !macro LanguageAutoSelect LocaleName LocaleID + ${If} $LANGUAGE = ${LocaleID} + SectionSetInstTypes ${Sec${LocaleName}} 3 ; this equals binary "011" (which flags the default for sections 1 and 2 but not 3) + ; and is equivalent to "SectionIn 1 2" + ${EndIf} + !macroend + + ; include list for installer autoselection from /languages/_language_lists.nsh + ; No need for English to be detected as it's the default + !insertmacro INSTALLER_TRANSLATIONS LanguageAutoSelect + ; End of language detection }}} + + ; ser the second InstType ("Optimal") as default + SetCurInstType 1 + + !insertmacro UNINSTALL.LOG_PREPARE_INSTALL ; prepare advanced uninstallation log script + + ;Extract InstallOptions INI files + StrCpy $AskMultiUser 1 + StrCpy $MultiUser 0 + ; this resets AskMultiUser if Win95/98/ME + ClearErrors + ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion + ${If} ${Errors} + ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion" VersionNumber + StrCpy $R0 $R0 1 + ${IfThen} $R0 = 4 ${|} StrCpy $AskMultiUser 0 ${|} + ${EndIf} + + ; hide all user section if ME/9x + ${IfThen} $AskMultiUser != 1 ${|} SectionSetText ${SecAlluser} "" ${|} + + ; hide if quick launch if not available + ${IfThen} $QUICKLAUNCH == $TEMP ${|} SectionSetText ${SecQuicklaunch} "" ${|} + + ; Check for administrative privileges {{{ + ClearErrors + UserInfo::GetName + ${If} ${Errors} + ; This one means you don't need to care about admin or + ; not admin because Windows 9x doesn't either + ${IfCmd} MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "$(NOT_SUPPORTED)$(OK_CANCEL_DESC)" /SD IDOK IDCANCEL ${||} Quit ${|} + ${Else} + Pop $User + UserInfo::GetAccountType + Pop $1 + ${If} $1 != Admin + ${AndIf} ${Cmd} ${|} MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "$(NO_ADMIN)$(OK_CANCEL_DESC)" /SD IDOK IDCANCEL ${|} + Quit + ${EndIf} + ${EndIf} ; }}} + + ; Detect an Inkscape installation by another user {{{ + ReadRegStr $0 HKLM "${INSTDIR_KEY}" User ; first global... + ${IfThen} $0 == "" ${|} ReadRegStr $0 HKCU "${INSTDIR_KEY}" User ${|} ; then current user + ${If} $0 != "" + ${AndIf} $0 != $User + ${AndIf} ${Cmd} ${|} MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "$(DIFFERENT_USER)$(OK_CANCEL_DESC)" /SD IDOK IDCANCEL ${|} + Quit + ${EndIf} ; }}} + + ; Request uninstallation of an old Inkscape installation {{{ + ReadRegStr $R0 HKLM "${UNINST_KEY}" UninstallString + ReadRegStr $R1 HKLM "${UNINST_KEY}" DisplayName + ${If} $R0 == "" + ReadRegStr $R0 HKCU "${UNINST_KEY}" UninstallString + ReadRegStr $R1 HKCU "${UNINST_KEY}" DisplayName + ${EndIf} + ${If} $R0 != "" + ${AndIf} ${Cmd} ${|} MessageBox MB_YESNO|MB_ICONEXCLAMATION "$(WANT_UNINSTALL_BEFORE)" /SD IDNO IDYES ${|} + ExecWait $R0 + ${EndIf} ; }}} + + ; Process command-line arguments (for automation) {{{ + !echo `Creating code to process command-line arguments...` + !verbose push + !verbose 3 + ${GetParameters} $CMDARGS + + !macro Parameter Section key + ${GetOptions} $CMDARGS /${key}= $1 + ${If} $1 == OFF + SectionGetFlags ${Sec${Section}} $0 + IntOp $2 ${SF_SELECTED} ~ + IntOp $0 $0 & $2 + SectionSetFlags ${Sec${Section}} $0 + ${EndIf} + ${If} $1 == ON + SectionGetFlags ${Sec${Section}} $0 + IntOp $0 $0 | ${SF_SELECTED} + SectionSetFlags ${Sec${Section}} $0 + ${EndIf} + !macroend + + !insertmacro Parameter GTK GTK + !insertmacro Parameter Shortcuts SHORTCUTS + !insertmacro Parameter Alluser ALLUSER + !insertmacro Parameter Desktop DESKTOP + !insertmacro Parameter QuickLaunch QUICKLAUNCH + !insertmacro Parameter SVGWriter SVGEDITOR + !insertmacro Parameter ContextMenu CONTEXTMENUE + !insertmacro Parameter Prefs PREFERENCES + !insertmacro Parameter Python PYTHON + !insertmacro Parameter Addfiles ADDFILES + !insertmacro Parameter Extensions EXTENSIONS + !insertmacro Parameter Examples EXAMPLES + !insertmacro Parameter Tutorials TUTORIALS + !insertmacro Parameter Dictionaries DICTIONARIES + !insertmacro Parameter Languages LANGUAGES + + ; include list of available inkscape translations for parameter generation from /languages/_language_lists.nsh + !insertmacro INKSCAPE_TRANSLATIONS Parameter + + ClearErrors + ${GetOptions} $CMDARGS /? $1 + ${IfNot} ${Errors} + MessageBox MB_OK "Possible parameters for installer:$\r$\n \ + /?: this help screen$\r$\n \ + /S: silent$\r$\n \ + /D=(directory): where to install Inkscape$\r$\n \ + /GTK=(OFF/ON): GTK+ Runtime environment$\r$\n \ + /SHORTCUTS=(OFF/ON): shortcuts to start Inkscape$\r$\n \ + /ALLUSER=(OFF/ON): for all users on the computer$\r$\n \ + /DESKTOP=(OFF/ON): Desktop icon$\r$\n \ + /QUICKLAUNCH=(OFF/ON): quick launch icon$\r$\n \ + /SVGEDITOR=(OFF/ON): default SVG editor$\r$\n \ + /CONTEXTMENUE=(OFF/ON): context menu integration$\r$\n \ + /PREFERENCES=(OFF/ON): delete users preference files$\r$\n \ + /PYTHON=(OFF/ON): python distribution$\r$\n \ + /ADDFILES=(OFF/ON): additional files$\r$\n \ + /EXTENSIONS=(OFF/ON): extensions$\r$\n \ + /EXAMPLES=(OFF/ON): examples$\r$\n \ + /TUTORIALS=(OFF/ON): tutorials$\r$\n \ + /DICTIONARIES=(OFF/ON): dictionaries$\r$\n \ + /LANGUAGES=(OFF/ON): translated menus, examples, etc.$\r$\n \ + /[locale code]=(OFF/ON): e.g am, es, es_MX as in Inkscape supported" + Abort + ${EndIf} + !verbose pop ; }}} +FunctionEnd ; .onInit }}} + + + +; Uninstaller code {{{1 +Function un.onInit ; initialise uninstaller {{{ + ;begin uninstall, could be added on top of uninstall section instead + ;!insertmacro UNINSTALL.LOG_BEGIN_UNINSTALL + ${IfNot} ${FileExists} $INSTDIR\uninstall.log + MessageBox MB_OK|MB_ICONEXCLAMATION "$(UninstallLogNotFound)" /SD IDOK + Quit + ${EndIf} + ClearErrors + StrCpy $User "" + UserInfo::GetName + ${IfNot} ${Errors} + Pop $0 + StrCpy $User $0 + ${EndIf} + StrCpy $askMultiUser 1 + StrCpy $MultiUser 1 + + ; Test if this was a multiuser installation + ReadRegStr $0 HKLM "${INSTDIR_KEY}" "" + ${If} $0 == $INSTDIR\inkscape.exe + ReadRegStr $MultiUser HKLM "${INSTDIR_KEY}" MultiUser + ReadRegStr $askMultiUser HKLM "${INSTDIR_KEY}" askMultiUser + ReadRegStr $0 HKLM "${INSTDIR_KEY}" User + ${Else} + ReadRegStr $MultiUser HKCU "${INSTDIR_KEY}" MultiUser + ReadRegStr $askMultiUser HKCU "${INSTDIR_KEY}" askMultiUser + ReadRegStr $0 HKCU "${INSTDIR_KEY}" User + ${EndIf} + ;check user if applicable + ${If} $0 != "" + ${AndIf} $0 != $User + ${AndIf} ${Cmd} ${|} MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "$(DIFFERENT_USER)$(OK_CANCEL_DESC)" /SD IDOK IDCANCEL ${|} + Quit + ${EndIf} + + !insertmacro MUI_INSTALLOPTIONS_EXTRACT inkscape.nsi.uninstall + + SetShellVarContext all + ${IfThen} $MultiUser = 0 ${|} SetShellVarContext current ${|} +FunctionEnd ; un.onInit }}} + +Function un.CustomPageUninstall ; {{{ + SetShellVarContext current + !insertmacro MUI_HEADER_TEXT "$(UInstOpt)" "$(UInstOpt1)" + !insertmacro MUI_INSTALLOPTIONS_WRITE inkscape.nsi.uninstall "Field 1" Text "$APPDATA\Inkscape\" + !insertmacro MUI_INSTALLOPTIONS_WRITE inkscape.nsi.uninstall "Field 2" Text "$(PurgePrefs)" + !insertmacro MUI_INSTALLOPTIONS_DISPLAY inkscape.nsi.uninstall + !insertmacro MUI_INSTALLOPTIONS_READ $MultiUser inkscape.nsi.uninstall "Field 2" State +FunctionEnd ; un.CustomPageUninstall }}} + +Section Uninstall ; do the uninstalling {{{ +!ifndef DUMMYINSTALL + ; remove personal settings + SetShellVarContext current + Delete $APPDATA\Inkscape\extension-errors.log + ${If} $MultiUser = 0 + DetailPrint "Purging personal settings in $APPDATA\Inkscape" + ;RMDir /r $APPDATA\Inkscape + !insertmacro delprefs + ${EndIf} + + ; Remove file associations for svg editor + StrCpy $3 svg + ${For} $2 0 1 + ${IfThen} $2 = 1 ${|} StrCpy $3 $3z ${|} + DetailPrint "Removing file associations for $3 editor" + ClearErrors + ReadRegStr $0 HKCR .$3 "" + ${IfNot} ${Errors} + ReadRegStr $1 HKCR $0\shell\edit\command "" + ${If} $1 == `"$INSTDIR\Inkscape.exe" "%1"` + DeleteRegKey HKCR $0\shell\edit\command + ${EndIf} + + ClearErrors + ReadRegStr $1 HKCR $0\shell\open\command "" + ${If} $1 == `"$INSTDIR\Inkscape.exe" "%1"` + DeleteRegKey HKCR $0\shell\open\command + ${EndIf} + + DeleteRegKey HKCR $0\shell\Inkscape + DeleteRegKey /ifempty HKCR $0\shell\edit + DeleteRegKey /ifempty HKCR $0\shell\open + DeleteRegKey /ifempty HKCR $0\shell + DeleteRegKey /ifempty HKCR $0 + DeleteRegKey /ifempty HKCR .$3 + ${EndIf} + ${Next} + + SetShellVarContext all + DeleteRegKey SHCTX "${INSTDIR_KEY}" + DeleteRegKey SHCTX "${UNINST_KEY}" + Delete $DESKTOP\Inkscape.lnk + Delete $QUICKLAUNCH\Inkscape.lnk + Delete $SMPROGRAMS\Inkscape.lnk + ;just in case they are still there + Delete "$SMPROGRAMS\Inkscape\Uninstall Inkscape.lnk" + Delete $SMPROGRAMS\Inkscape\Inkscape.lnk + RMDir $SMPROGRAMS\Inkscape + + SetShellVarContext current + DeleteRegKey SHCTX "${INSTDIR_KEY}" + DeleteRegKey SHCTX "${UNINST_KEY}" + Delete $DESKTOP\Inkscape.lnk + Delete $QUICKLAUNCH\Inkscape.lnk + Delete $SMPROGRAMS\Inkscape.lnk + ;just in case they are still there + Delete "$SMPROGRAMS\Inkscape\Uninstall Inkscape.lnk" + Delete $SMPROGRAMS\Inkscape\Inkscape.lnk + RMDir $SMPROGRAMS\Inkscape + + InitPluginsDir + + ClearErrors + FileOpen $9 $INSTDIR\uninstall.log r + ${If} ${Errors} ;else uninstallnotfound + MessageBox MB_OK|MB_ICONEXCLAMATION "$(UninstallLogNotFound)" /SD IDOK + ${Else} + ${SHMessageBoxCheckInit} "inkscape_uninstall_other_files" + ${Do} + ClearErrors + FileRead $9 $1 + ${IfThen} ${Errors} ${|} ${ExitDo} ${|} + ; cat the line into md5 and filename + StrLen $2 $1 + ${IfThen} $2 <= 35 ${|} ${Continue} ${|} + StrCpy $3 $1 32 + StrCpy $filename $1 $2-36 34 ;remove trailing CR/LF + StrCpy $filename $filename -2 + ; $filename = file + ; $0 = shall file be deleted? + ; $3 = MD5 when installed + ; $4 = MD5 now + + ${If} ${FileExists} $filename + md5dll::GetMD5File /NOUNLOAD $filename + Pop $4 ;md5 of file + ${If} $3 == $4 + StrCpy $0 ${IDYES} + ${Else} + ; the md5 sums does not match so we ask + ${SHMessageBoxCheck} "$(MUI_UNTEXT_CONFIRM_TITLE)" "$(FileChanged)" ${MB_YESNO}|${MB_ICONQUESTION} + Pop $0 + ${EndIf} + + ${If} $0 = ${IDYES} + ; Remove File + ClearErrors + Delete $filename + ;now recursively remove the path + ${Do} + ClearErrors + ${un.GetParent} $filename $filename + ${IfThen} ${Errors} ${|} ${ExitDo} ${|} + RMDir $filename + ${IfThen} ${Errors} ${|} ${ExitDo} ${|} + ${Loop} + ${EndIf} + ${EndIf} + ${Loop} + ${SHMessageBoxCheckCleanup} + ${EndIf} + FileClose $9 + ; remove Python cache files that may have been created + loopFiles: + StrCpy $R1 0 + ${Locate} "$INSTDIR" "/L=F /M=*.pyc" "un.DeleteFile" + StrCmp $R1 0 0 loopFiles + ; remove empty directories + loopDirs: + StrCpy $R1 0 + ${Locate} "$INSTDIR" "/L=DE" "un.DeleteDir" + StrCmp $R1 0 0 loopDirs + ; remove the uninstaller and installation directory itself + Delete $INSTDIR\uninstall.dat + Delete $INSTDIR\uninstall.log + Delete $INSTDIR\uninstall.exe + RMDir $INSTDIR +!endif +SectionEnd ; Uninstall }}} +; }}} + +Function un.DeleteFile + Delete $R9 + IntOp $R1 $R1 + 1 + Push 0 # required by ${Locate}! +FunctionEnd + +Function un.DeleteDir + RMDir $R9 + IntOp $R1 $R1 + 1 + Push 0 # required by ${Locate}! +FunctionEnd + +; This file has been optimised for use in Vim with folding. +; (If you can't cope, :set nofoldenable) vim:fen:fdm=marker diff --git a/packaging/win32/inkscape.nsi.uninstall b/packaging/win32/inkscape.nsi.uninstall new file mode 100644 index 0000000..fde117b --- /dev/null +++ b/packaging/win32/inkscape.nsi.uninstall @@ -0,0 +1,20 @@ +[Settings] +NumFields=2 + +[Field 1] +Type=label +Text=Display a Message +Left=0 +Right=-1 +Top=10 +Bottom=20 +State=1 + +[Field 2] +Type=checkbox +Text=Display a MessageBox +Left=10 +Right=-1 +Top=25 +Bottom=35 +State=1
\ No newline at end of file diff --git a/packaging/win32/languages/Breton.nsh b/packaging/win32/languages/Breton.nsh new file mode 100644 index 0000000..a28687a --- /dev/null +++ b/packaging/win32/languages/Breton.nsh @@ -0,0 +1,55 @@ +;Language: Breton (1150) +;By matiphas@free.fr +${LangFileString} CaptionDescription "Embanner sturiadel SVG dieub" +${LangFileString} LICENSE_BOTTOM_TEXT "Skignet eo $(^Name) dindan al lañvaz foran hollek (GPL) GNU. Pourchaset eo al lañvaz amañ evit reiñ keloù deoc'h nemetken. $_CLICK" +${LangFileString} DIFFERENT_USER "Staliet eo bet Inkscape gant an arveriad $0.$\r$\nMar kendalc'hot gant ar staliañ e vo siek marteze !$\r$\nEn em gennaskit evel $0 ha klaskit en-dro." +${LangFileString} WANT_UNINSTALL_BEFORE "Staliet eo bet $R1 endeo. $\nFellout a ra deoc'h dilemel ar staliadenn gent a-raok staliañ $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nKlikañ war OK evit kenderc'hel pe CANCEL evit dilezel." +${LangFileString} NO_ADMIN "N'hoc'h eus ket brientoù an ardoer.$\r$\nSiek e c'hallfe bezañ staliadenn Inkscape evit an holl arveriaded.$\r$\nDigevaskit, mar plij, an dibarzh 'evit an holl arveriaded'." +${LangFileString} NOT_SUPPORTED "N'eo ket skoret Inkscape gant Windows 95/98/ME!$\r$\nKit war al lec'hienn gefridiel evit gouzout hiroc'h." +${LangFileString} Full "Klok" +${LangFileString} Optimal "Gwellek" +${LangFileString} Minimal "Izek" +${LangFileString} Core "Embanner SVG Inkscape (ret)" +${LangFileString} CoreDesc "Restroù rekis Inkscape ha dlloù" +${LangFileString} GTKFiles "Amva GTK+ (ret)" +${LangFileString} GTKFilesDesc "Ur voestad binvioù liessavelennoù evit ketalioù kevregat, arveret gant Inkscape" +${LangFileString} Shortcuts "Berradennoù" +${LangFileString} ShortcutsDesc "Berradennoù evit loc'hañ Inkscape" +${LangFileString} Alluser "Evit an holl arveriaded" +${LangFileString} AlluserDesc "Staliañ ar meziant-mañ evit holl arveriaded an urzhiataer-mañ" +${LangFileString} Desktop "Burev" +${LangFileString} DesktopDesc "Krouiñ ur verradenn davit Inkscape war ar burev" +${LangFileString} Startmenu "Lañser Loc'hañ" +${LangFileString} StartmenuDesc "Krouiñ un enankad Inkscape war al lañser Loc'hañ" +${LangFileString} Quicklaunch "Loc'hañ trumm" +${LangFileString} QuicklaunchDesc " Krouiñ ur verradenn davit Inkscape er varrennad loc'hañ trumm" +${LangFileString} SVGWriter "Digeriñ ar restroù SVG gant Inkscape" +${LangFileString} SVGWriterDesc "Dibab Inkscape evel embanner dre ziouer evit ar restroù SVG" +${LangFileString} ContextMenu "Lañser kemperzhel" +${LangFileString} ContextMenuDesc "Ouzhpennañ Inkscape war lañser kemperzhel ar restroù SVG" +${LangFileString} DeletePrefs "Diverkañ ar gwellvezioù personel" +${LangFileString} DeletePrefsDesc "Diverkañ ar gwellvezioù personel chomet gant ar staliadurioù kent" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Restroù ouzhpenn" +${LangFileString} AddfilesDesc "Restroù ouzhpenn" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Skouerioù" +${LangFileString} ExamplesDesc "Skouerioù arver eus Inkscape" +${LangFileString} Tutorials "Skridoù kelenn" +${LangFileString} TutorialsDesc " Skridoù kelenn diwar-benn arver Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Troidigezhioù" +${LangFileString} LanguagesDesc "Staliañ troidigezhioù evit Inkscape" +${LangFileString} UInstOpt "Dibarzhioù distaliañ" +${LangFileString} UInstOpt1 "Dibabit e-touez an dibarzhioù ouzhpenn" +${LangFileString} PurgePrefs "Mirout ar gwellvezioù personel" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log n'eo ket bet kavet !$\r$\nMar plij, distaliit dre skarzhañ ar c'havlec'hiad $INSTDIR hoc'h unan !" +${LangFileString} FileChanged "Kemmet eo bet ar restr $filename goude ar staliañ.$\r$\nFellout a ra deoc'h diverkañ ar restr-mañ ?" +${LangFileString} Yes "Ya" +${LangFileString} AlwaysYes "respont YA atav" +${LangFileString} No "Ket" +${LangFileString} AlwaysNo "respont KET atav" diff --git a/packaging/win32/languages/Breton_languageNames.nsh b/packaging/win32/languages/Breton_languageNames.nsh new file mode 100644 index 0000000..864956e --- /dev/null +++ b/packaging/win32/languages/Breton_languageNames.nsh @@ -0,0 +1,92 @@ +### Breton (br) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Breton.nsh' +${LangFileString} lng_ar "Arabeg (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "Azerbaijanieg (az)" +${LangFileString} lng_be "Belarusianeg (be)" +${LangFileString} lng_bg "Bulgarieg (bg)" +${LangFileString} lng_bn "Bengalieg (bn)" +${LangFileString} lng_bn_BD "Bengalieg/Bangladech (bn_BD)" +${LangFileString} lng_br "Brezhoneg (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Katalaneg (ca)" +${LangFileString} lng_ca@valencia "Katalaneg Valensia (ca@valencia)" +${LangFileString} lng_cs "Tchekeg (cs)" +${LangFileString} lng_da "Daneg (da)" +${LangFileString} lng_de "Alamaneg (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkheg (dz)" +${LangFileString} lng_el "Gresianeg (el)" +${LangFileString} lng_en "Saozneg (en)" +${LangFileString} lng_en_AU "Saozneg/Aostalia (en_AU)" +${LangFileString} lng_en_CA "Saozneg/Kanada (en_CA)" +${LangFileString} lng_en_GB "Saozneg/Breizh-Veur (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Spagnoleg (es)" +${LangFileString} lng_es_MX "Spagnoleg/Mec'hiko (es_MX)" +${LangFileString} lng_et "Estonieg (et)" +${LangFileString} lng_eu "Euskareg (eu)" +${LangFileString} lng_fa "Farsieg (fa)" +${LangFileString} lng_fi "Finneg (fi)" +${LangFileString} lng_fr "Galleg (fr)" +${LangFileString} lng_ga "Iwerzhoneg (ga)" +${LangFileString} lng_gl "Galisieg (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hebraeg (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Kroateg (hr)" +${LangFileString} lng_hu "Hungareg (hu)" +${LangFileString} lng_hy "Armenieg (hy)" +${LangFileString} lng_id "Indonezieg (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "Italianeg (it)" +${LangFileString} lng_ja "Japoneg (ja)" +${LangFileString} lng_km "Khmereg (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Koreeg (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "Lituanieg (lt)" +${LangFileString} lng_lv "Letoneg (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Makedonieg (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongolieg (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norwegeg mod BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepalegi (ne)" +${LangFileString} lng_nl "Izelvroeg (nl)" +${LangFileString} lng_nn "Norwegeg mod Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Penjabeg (pa)" +${LangFileString} lng_pl "Pologneg (pl)" +${LangFileString} lng_pt "Portugaleg (pt)" +${LangFileString} lng_pt_BR "Portuguese/Brazil (pt_BR)" +${LangFileString} lng_ro "Romanieg (ro)" +${LangFileString} lng_ru "Rusianeg (ru)" +${LangFileString} lng_rw "Kinyarwandeg (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "Sloveg (sk)" +${LangFileString} lng_sl "Slovenieg (sl)" +${LangFileString} lng_sq "Albanieg (sq)" +${LangFileString} lng_sr "Serbeg (sr)" +${LangFileString} lng_sr@latin "Serbeg dre skritur Latin (sr@latin)" +${LangFileString} lng_sv "Swedeg (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugueg (te)" +${LangFileString} lng_th "Thaieg (th)" +${LangFileString} lng_tr "Turkeg (tr)" +${LangFileString} lng_uk "Ukrainieg (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnameg (vi)" +${LangFileString} lng_zh_CN "Sineg/Sina (zh_CN)" +${LangFileString} lng_zh_TW "Sineg/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Catalan.nsh b/packaging/win32/languages/Catalan.nsh new file mode 100644 index 0000000..c163ad2 --- /dev/null +++ b/packaging/win32/languages/Catalan.nsh @@ -0,0 +1,55 @@ +;Language: Catalan (1027) +;By Xavier Conde Rueda <xavi.conde@gmail.com>, inkscape@softcatalana.net +${LangFileString} CaptionDescription "Editor de grà fics vectorials escalables de codi obert" +${LangFileString} LICENSE_BOTTOM_TEXT "L'$(^Name) s'ha alliberat sota la Llicència Pública General de GNU (GPL). La llicència es proporciona aquà només per raons informatives. $_CLICK" +${LangFileString} DIFFERENT_USER "L'usuari $0.$\r ha instal·lat l'Inkscape.$\nSi continueu, és possible que no acabeu correctament.$\r$\nEntreu com a $0 i proveu de nou." +${LangFileString} WANT_UNINSTALL_BEFORE "Ja s'ha instal·lat $R1. $\nVoleu suprimir la versió anterior abans d'instal·lar $(^Name)?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPremeu D'acord per continuar, o Cancel·la per a interrompre." +${LangFileString} NO_ADMIN "No teniu privilegis d'administrador.$\r$\nÉs possible que la instal·lació per a tots els usuaris no es completi correctament.$\r$\nInhabiliteu l'opció 'per a tots els usuaris'." +${LangFileString} NOT_SUPPORTED "L'Inkscape no funciona correctament sobre Windows 95/98/ME.$\r$\nConsulteu el lloc web per a obtenir informació detallada." +${LangFileString} Full "Completa" +${LangFileString} Optimal "Ã’ptima" +${LangFileString} Minimal "MÃnima" +${LangFileString} Core "L'editor SVG Inkscape (requerit)" +${LangFileString} CoreDesc "Fitxers i dlls per a l'Inkscape" +${LangFileString} GTKFiles "Entorn d'execució GTK+ (requerit)" +${LangFileString} GTKFilesDesc "Un joc d'eines d'interfÃcies grà fiques multi-plataforma, usat per l'Inkscape" +${LangFileString} Shortcuts "Dreceres" +${LangFileString} ShortcutsDesc "Dreceres per a iniciar l'Inkscape" +${LangFileString} Alluser "Per a tots els usuaris" +${LangFileString} AlluserDesc "Instal·la aquesta aplicació per a tots els usuaris que fan servir aquest ordinador" +${LangFileString} Desktop "Escriptori" +${LangFileString} DesktopDesc "Crea una drecera cap a l'Inkscape a l'escriptori" +${LangFileString} Startmenu "Menú Inicia" +${LangFileString} StartmenuDesc "Crea una entrada de menú per a l'Inkscape" +${LangFileString} Quicklaunch "Inici rà pid" +${LangFileString} QuicklaunchDesc "Crea una drecera cap a l'Inkscape a la barra d'eines d'Inici rà pid" +${LangFileString} SVGWriter "Obre els fitxers SVG amb l'Inkscape" +${LangFileString} SVGWriterDesc "Seleciona l'Inkscape com a editor predeterminat per als fitxers SVG" +${LangFileString} ContextMenu "Menú contextual" +${LangFileString} ContextMenuDesc "Afegeix l'Inkscape al menú contextual per als fitxers SVG" +${LangFileString} DeletePrefs "Suprimeix les preferències personals" +${LangFileString} DeletePrefsDesc "Suprimeix les preferències personals d'anteriors instal·lacions" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Fitxers addicionals" +${LangFileString} AddfilesDesc "Fitxers addicionals" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Exemples" +${LangFileString} ExamplesDesc "Exemples d'ús de l'Inkscape" +${LangFileString} Tutorials "Tutorials" +${LangFileString} TutorialsDesc "Tutorials d'ús de l'Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Traduccions" +${LangFileString} LanguagesDesc "Instal·la més traduccions per a l'Inkscape" +${LangFileString} UInstOpt "Opcions de desinstal·lació" +${LangFileString} UInstOpt1 "Seleccioneu les vostres opcions addicionals" +${LangFileString} PurgePrefs "Conserva les preferències personals" +${LangFileString} UninstallLogNotFound "No s'ha trobat $INSTDIR\uninstall.log.$\r$\nPer a desinstal·lar, haureu de netejar la carpeta $INSTDIR vosaltres mateixos!" +${LangFileString} FileChanged "El fitxer $filename s'ha canviat després de la instal·lació.$\r$\nEncara voleu esborrar aquest fitxer?" +${LangFileString} Yes "SÃ" +${LangFileString} AlwaysYes "Sà a tot" +${LangFileString} No "No" +${LangFileString} AlwaysNo "No a tot" diff --git a/packaging/win32/languages/Catalan_languageNames.nsh b/packaging/win32/languages/Catalan_languageNames.nsh new file mode 100644 index 0000000..ea8e9bb --- /dev/null +++ b/packaging/win32/languages/Catalan_languageNames.nsh @@ -0,0 +1,92 @@ +### Catalan (ca) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Catalan.nsh' +${LangFileString} lng_ar "Àrab (ar)" +${LangFileString} lng_as "Assamès (as)" +${LangFileString} lng_az "Àzeri (az)" +${LangFileString} lng_be "Bielorús (be)" +${LangFileString} lng_bg "Búlgar (bg)" +${LangFileString} lng_bn "Bengalà (bn)" +${LangFileString} lng_bn_BD "BengalÃ/Bangladesh (bn_BD)" +${LangFileString} lng_br "Bretó (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Català (ca)" +${LangFileString} lng_ca@valencia "Català (valencià ) (ca@valencia)" +${LangFileString} lng_cs "Txec (cs)" +${LangFileString} lng_da "Danès (da)" +${LangFileString} lng_de "Alemany (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Grec (el)" +${LangFileString} lng_en "Anglès (en)" +${LangFileString} lng_en_AU "Anglès d'Austrà lia (en_AU)" +${LangFileString} lng_en_CA "Anglès del Canadà (en_CA)" +${LangFileString} lng_en_GB "Anglès de Gran Bretanya (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Espanyol (es)" +${LangFileString} lng_es_MX "Espanyol de Mèxic (es_MX)" +${LangFileString} lng_et "Estonià (et)" +${LangFileString} lng_eu "Basc (eu)" +${LangFileString} lng_fa "Persa (fa)" +${LangFileString} lng_fi "Finès (fi)" +${LangFileString} lng_fr "Francès (fr)" +${LangFileString} lng_ga "Irlandès (ga)" +${LangFileString} lng_gl "Gallec (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hebreu (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croat (hr)" +${LangFileString} lng_hu "Hongarès (hu)" +${LangFileString} lng_hy "Armeni (hy)" +${LangFileString} lng_id "Indonesi (id)" +${LangFileString} lng_is "Islandès (is)" +${LangFileString} lng_it "Italià (it)" +${LangFileString} lng_ja "Japonès (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kanarès (kn)" +${LangFileString} lng_ko "Coreà (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani amb alfabet llatà (kok@latin)" +${LangFileString} lng_ks@aran "Caixmiri en l'escriptura perso-à rab (ks@aran)" +${LangFileString} lng_ks@deva "Caixmiri en l'escriptura devanagari (ks@deva)" +${LangFileString} lng_lt "Lituà (lt)" +${LangFileString} lng_lv "Letó (lt)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedoni (mk)" +${LangFileString} lng_ml "Malaià lam (ml)" +${LangFileString} lng_mn "Mongol (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri amb alfabet bengalà (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "BokmÃ¥l noruec (nb)" +${LangFileString} lng_ne "Nepalès (ne)" +${LangFileString} lng_nl "Holandès (nl)" +${LangFileString} lng_nn "Nynorsk noruec (nn)" +${LangFileString} lng_or "Oriya (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polonès (pl)" +${LangFileString} lng_pt "Portuguès (pt)" +${LangFileString} lng_pt_BR "Portuguès del Brasil (pt_BR)" +${LangFileString} lng_ro "Romanès (ro)" +${LangFileString} lng_ru "Rus (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sà nscrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali amb alfabet devanagari (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi amb alfabet devanagari (sd@deva)" +${LangFileString} lng_sk "Eslovac (sk)" +${LangFileString} lng_sl "Eslovè (sl)" +${LangFileString} lng_sq "Albanès (sq)" +${LangFileString} lng_sr "Serbi (sr)" +${LangFileString} lng_sr@latin "Serbi amb alfabet llatà (sr@latin)" +${LangFileString} lng_sv "Suec (sv)" +${LangFileString} lng_ta "Tà mil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Tai (th)" +${LangFileString} lng_tr "Turc (tr)" +${LangFileString} lng_uk "Ucraïnès (uk)" +${LangFileString} lng_ur "Urdú (ur)" +${LangFileString} lng_vi "Vietnamita (vi)" +${LangFileString} lng_zh_CN "Xinès de Xina (zh_CN)" +${LangFileString} lng_zh_TW "Xinès de Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Croatian.nsh b/packaging/win32/languages/Croatian.nsh new file mode 100644 index 0000000..b2fad09 --- /dev/null +++ b/packaging/win32/languages/Croatian.nsh @@ -0,0 +1,55 @@ +;Language: Croatian (1050) +;By Milo Ivir <mail@milotype.de> +${LangFileString} CaptionDescription "Program otvorenoga koda za ureÄ‘ivanje skalabilnih vektorskih grafika" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) je izdan pod GNU-ovom općom javnom licencom (GPL). Priložena licenca služi samo kao informacija. $_CLICK" +${LangFileString} DIFFERENT_USER "Korisnik $0 je već instalirao Inkscape.$\r$\nAko nastaviÅ¡, možda nećeÅ¡ uspjeÅ¡no zavrÅ¡iti!!$\r$\nPrijavi se kao $0 i pokuÅ¡aj ponovo." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 je već instaliran. $\nŽeliÅ¡ li ukloniti prethodnu verziju, prije instaliranja $(^Name)?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPritisni „U reduâ€, ako želiÅ¡ nastaviti. Za prekid pritisni „Odustaniâ€." +${LangFileString} NO_ADMIN "NemaÅ¡ administratorskih prava.$\r$\nInstaliranje Inkscapea za sve korisnike možda nećeÅ¡ uspjeÅ¡no zavrÅ¡iti.$\r$\nIskljuÄi opciju „Instaliraj za sve korisnikeâ€." +${LangFileString} NOT_SUPPORTED "Poznato je, da Inkscape ne radi na sustavima Windows 95/98/ME!$\r$\nProvjeri detaljne informacije na službenoj web-stranici." +${LangFileString} Full "Potpuno" +${LangFileString} Optimal "Optimalno" +${LangFileString} Minimal "Minimalno" +${LangFileString} Core "SVG ureÄ‘ivaÄ Inkscape (obavezno)" +${LangFileString} CoreDesc "Osnovne datoteke i DLL-ovi za Inkscape" +${LangFileString} GTKFiles "IzvrÅ¡no okruženje GTK+ (obavezno)" +${LangFileString} GTKFilesDesc "ViÅ¡eplatformski alat za korisniÄko suÄelje, koristi se za Inkscape" +${LangFileString} Shortcuts "PreÄaci" +${LangFileString} ShortcutsDesc "PreÄaci za pokretanje Inkscapea" +${LangFileString} Alluser "Instaliraj za sve korisnike" +${LangFileString} AlluserDesc "Instaliraj ovaj program za sve koji koriste ovo raÄunalo (svi korisnici)" +${LangFileString} Desktop "Radna povrÅ¡ina" +${LangFileString} DesktopDesc "Stvori preÄac za Inkscape na radnoj povrÅ¡ini" +${LangFileString} Startmenu "Izbornik Start" +${LangFileString} StartmenuDesc "Stvori unos „Inkscape†u izborniku Start" +${LangFileString} Quicklaunch "Brzo pokretanje" +${LangFileString} QuicklaunchDesc "Stvori preÄac za Inkscape u alatnoj traci Brzo pokretanje" +${LangFileString} SVGWriter "Otvori SVG datoteke s Inkscapeom" +${LangFileString} SVGWriterDesc "Odaberi Inkscape kao standardni program za ureÄ‘ivanje SVG datoteka" +${LangFileString} ContextMenu "Konteksni izbornik" +${LangFileString} ContextMenuDesc "Dodaj Inkscape u konteksni izbornik za SVG datoteke" +${LangFileString} DeletePrefs "Ukloni osobne postavke" +${LangFileString} DeletePrefsDesc "Ukloni osobne postavke prijaÅ¡njih instalacija" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "Interpreter za programski jezik Python i Python module, potreban za izvrÅ¡avanje Inkscape proÅ¡irenja." +${LangFileString} Addfiles "Dodatne datoteke" +${LangFileString} AddfilesDesc "Dodatne datoteke" +${LangFileString} Extensions "ProÅ¡irenja" +${LangFileString} ExtensionsDesc "Inkscape proÅ¡irenja (ukljuÄujući mnoge dodatke za uvoz i izvoz)" +${LangFileString} Examples "Primjeri" +${LangFileString} ExamplesDesc "Primjeri koriÅ¡tenja Inkscapea" +${LangFileString} Tutorials "Vježbe" +${LangFileString} TutorialsDesc "Vježbe za koriÅ¡tenje Inkscapea" +${LangFileString} Dictionaries "RjeÄnici" +${LangFileString} DictionariesDesc "RjeÄnici nekih uobiÄajenih jezika za provjeru pravopisa u Inkscapeu" +${LangFileString} Languages "Prijevodi" +${LangFileString} LanguagesDesc "Inkscape prijevodi i sadržaj za odgovarajuće jeziÄno podruÄje" +${LangFileString} UInstOpt "Opcije deinstalacije" +${LangFileString} UInstOpt1 "Odaberi dodatne opcije" +${LangFileString} PurgePrefs "Zadrži osobne postavke" +${LangFileString} UninstallLogNotFound "Datoteka $INSTDIR\uninstall.log nije pronaÄ‘ena!$\r$\nDeinstaliraj ruÄno, uklanjanjem mape $INSTDIR!" +${LangFileString} FileChanged "Datoteka $filename je promijenjena nakon instaliranja.$\r$\nŽeliÅ¡ li je svejedno ukloniti?" +${LangFileString} Yes "Da" +${LangFileString} AlwaysYes "odgovori uvijek s Da" +${LangFileString} No "Ne" +${LangFileString} AlwaysNo "odgovori uvijek s Ne" diff --git a/packaging/win32/languages/Croatian_languageNames.nsh b/packaging/win32/languages/Croatian_languageNames.nsh new file mode 100644 index 0000000..4351f21 --- /dev/null +++ b/packaging/win32/languages/Croatian_languageNames.nsh @@ -0,0 +1,92 @@ +### Croatian (hr) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Croatian.nsh' +${LangFileString} lng_ar "Arapski (ar)" +${LangFileString} lng_as "Asamski (as)" +${LangFileString} lng_az "Azerski (az)" +${LangFileString} lng_be "Belarusian (be)" +${LangFileString} lng_bg "Bugarski (bg)" +${LangFileString} lng_bn "Bengalski (bn)" +${LangFileString} lng_bn_BD "Bengalski/BangladeÅ¡ (bn_BD)" +${LangFileString} lng_br "Bretonski (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Katalanski (ca)" +${LangFileString} lng_ca@valencia "Valencijanski-Katalanski (ca@valencia)" +${LangFileString} lng_cs "ÄŒeÅ¡ki (cs)" +${LangFileString} lng_da "Danski (da)" +${LangFileString} lng_de "NjemaÄki (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "GrÄki (el)" +${LangFileString} lng_en "Engleski (en)" +${LangFileString} lng_en_AU "Engleski/Australija (en_AU)" +${LangFileString} lng_en_CA "Engleski/Kanada (en_CA)" +${LangFileString} lng_en_GB "Engleski/Velika Britanija (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Å panjolski (es)" +${LangFileString} lng_es_MX "Å panjolski/Meksiko (es_MX)" +${LangFileString} lng_et "Estonski (et)" +${LangFileString} lng_eu "Baskijski (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "Finski (fi)" +${LangFileString} lng_fr "Francuski (fr)" +${LangFileString} lng_ga "Irski (ga)" +${LangFileString} lng_gl "Galicijski (gl)" +${LangFileString} lng_gu "Gudžaratski (gu)" +${LangFileString} lng_he "Hebrejski (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Hrvatski (hr)" +${LangFileString} lng_hu "MaÄ‘arski (hu)" +${LangFileString} lng_hy "Armenski (hy)" +${LangFileString} lng_id "Indonezijski (id)" +${LangFileString} lng_is "Islandski (is)" +${LangFileString} lng_it "Talijanski (it)" +${LangFileString} lng_ja "Japanski (ja)" +${LangFileString} lng_km "Khmerski (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Koreanski (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani, pisano latinicom (kok@latin)" +${LangFileString} lng_ks@aran "KaÅ¡mirski, pisan perzijsko-arapskim pismom (ks@aran)" +${LangFileString} lng_ks@deva "KaÅ¡mirski, pisan devanagari pismom (ks@deva)" +${LangFileString} lng_lt "Litvanski (lt)" +${LangFileString} lng_lv "Latvijski (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Makedonski (mk)" +${LangFileString} lng_ml "Malajalam (ml)" +${LangFileString} lng_mn "Mongolski (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri, pisan bengalskim pismom (mni@beng)" +${LangFileString} lng_mr "Maratijski (mr)" +${LangFileString} lng_nb "NorveÅ¡ki BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepalski (ne)" +${LangFileString} lng_nl "Nizozemski (nl)" +${LangFileString} lng_nn "NorveÅ¡ki Nynorsk (nn)" +${LangFileString} lng_or "Oriya (or)" +${LangFileString} lng_pa "IstoÄnopandžapski (pa)" +${LangFileString} lng_pl "Poljski (pl)" +${LangFileString} lng_pt "Portugalski (pt)" +${LangFileString} lng_pt_BR "Portugalski/Brazil (pt_BR)" +${LangFileString} lng_ro "Rumunjski (ro)" +${LangFileString} lng_ru "Ruski (ru)" +${LangFileString} lng_rw "Rwanda (rw)" +${LangFileString} lng_sa "Sanskrt (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali, pisan devanagari pismom (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi, pisan devanagari pismom (sd@deva)" +${LangFileString} lng_sk "SlovaÄki (sk)" +${LangFileString} lng_sl "Slovenski (sl)" +${LangFileString} lng_sq "Albanski (sq)" +${LangFileString} lng_sr "Srpski (sp)" +${LangFileString} lng_sr@latin "Srpski, pisano latinicom (sr@latin)" +${LangFileString} lng_sv "Å vedski (sv)" +${LangFileString} lng_ta "Tamilski (ta)" +${LangFileString} lng_te "TeluÅ¡ki (te)" +${LangFileString} lng_th "Tajlandski (th)" +${LangFileString} lng_tr "Turski (tr)" +${LangFileString} lng_uk "Ukrainski (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vijetnamski (vi)" +${LangFileString} lng_zh_CN "Kineski/Kina (zn_CN)" +${LangFileString} lng_zh_TW "Kineski/Taivan (zn_TW)" diff --git a/packaging/win32/languages/Czech.nsh b/packaging/win32/languages/Czech.nsh new file mode 100644 index 0000000..e02c3ed --- /dev/null +++ b/packaging/win32/languages/Czech.nsh @@ -0,0 +1,55 @@ +;Language: Czech (1029) +;By Michal Kraus <Michal.Kraus@wige-mic.cz>, Josef VybÃral <josef.vybiral@gmail.com> +${LangFileString} CaptionDescription "Open Source Editor Å kálovatelné Vektorové Grafiky(SVG)" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) je vydáván pod General Public License (GPL). LicenÄnà ujednánà je zde pouze z informaÄnÃch důvodů. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape byl nainstalován uživatelem $0.$\r$\nInstalace nemusà být dokonÄena správnÄ› pokud v nà budete pokraÄovat!$\r$\nProsÃm pÅ™ihlaste se jako $0 a spusÅ¥te instalaci znovu." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 je již nainstalován. $\nChcete pÅ™ed instalacà odstranit pÅ™edchozà verzi $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nStisknÄ›te OK pro pokraÄovánÃ, CANCEL pro pÅ™eruÅ¡enÃ." +${LangFileString} NO_ADMIN "Nemáte administrátorská oprávnÄ›nÃ.$\r$\nInstalace Inkscape pro vÅ¡echny uživatele nemusà být úspěšnÄ› dokonÄena.$\r$\nZruÅ¡te oznaÄenà volby 'Pro vÅ¡echny uživatele'." +${LangFileString} NOT_SUPPORTED "Inkscape neběžà na Windows 95/98/ME!$\r$\nPro podrobnÄ›jÅ¡Ã informace se prosÃm obraÅ¥te na oficiálnà webové stránky." +${LangFileString} Full "Plná" +${LangFileString} Optimal "OptimálnÃ" +${LangFileString} Minimal "MinimálnÃ" +${LangFileString} Core "Inkscape SVG editor (vyžadováno)" +${LangFileString} CoreDesc "Soubory a knihovny Inkscape" +${LangFileString} GTKFiles "GTK+ bÄ›hové prostÅ™edà (vyžadováno)" +${LangFileString} GTKFilesDesc "Multiplatformnà sada uživatelského rozhranÃ, použitého v Inkscape" +${LangFileString} Shortcuts "Zástupci" +${LangFileString} ShortcutsDesc "Zástupci pro spuÅ¡tÄ›nà Inkscape" +${LangFileString} Alluser "pro vÅ¡echny uživatele" +${LangFileString} AlluserDesc "Instalovat aplikaci pro kohokoliv, kdo použÃvá tento poÄÃtaÄ.(vÅ¡ichni uživatelé)" +${LangFileString} Desktop "Plocha" +${LangFileString} DesktopDesc "VytvoÅ™it zástupce Inkscape na ploÅ¡e" +${LangFileString} Startmenu "NabÃdka Start" +${LangFileString} StartmenuDesc "VytvoÅ™it pro Inkscape položku v nabÃdce Start" +${LangFileString} Quicklaunch "Panel rychlého spuÅ¡tÄ›nÃ" +${LangFileString} QuicklaunchDesc "VytvoÅ™it pro Inkscape zástupce na panelu rychlého spuÅ¡tÄ›nÃ" +${LangFileString} SVGWriter "OtvÃrat SVG soubory v Inkscape" +${LangFileString} SVGWriterDesc "Vybrat Inkscape jako výchozà editor pro SVG soubory" +${LangFileString} ContextMenu "Kontextová nabÃdka" +${LangFileString} ContextMenuDesc "PÅ™idat Inkscape do kontextové nabÃdky pro SVG soubory" +${LangFileString} DeletePrefs "Smazat osobnà nastavenÃ" +${LangFileString} DeletePrefsDesc "Smazat osobnà nastavenà pÅ™edchozà instalace" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "DalÅ¡Ã soubory" +${LangFileString} AddfilesDesc "DalÅ¡Ã soubory" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "PÅ™Ãklady" +${LangFileString} ExamplesDesc "PÅ™Ãklady použità Inkscape" +${LangFileString} Tutorials "Průvodci" +${LangFileString} TutorialsDesc "Průvodci funkcemi Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Jazykové sady" +${LangFileString} LanguagesDesc "Nainstalovat dalÅ¡Ã jazykové sady Inkscape" +${LangFileString} UInstOpt "Volby pro odinstalovánÃ" +${LangFileString} UInstOpt1 "Vyberte prosÃm dalÅ¡Ã nastavenÃ" +${LangFileString} PurgePrefs "Ponechat osobnà nastavenÃ" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log not found!$\r$\nPlease uninstall by clearing directory $INSTDIR yourself!" +${LangFileString} FileChanged "The file $filename has been changed after installation.$\r$\nDo you still want to delete that file?" +${LangFileString} Yes "Yes" +${LangFileString} AlwaysYes "always answer Yes" +${LangFileString} No "No" +${LangFileString} AlwaysNo "always answer No" diff --git a/packaging/win32/languages/Czech_languageNames.nsh b/packaging/win32/languages/Czech_languageNames.nsh new file mode 100644 index 0000000..8a40301 --- /dev/null +++ b/packaging/win32/languages/Czech_languageNames.nsh @@ -0,0 +1,92 @@ +### Czech (cs) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Czech.nsh' +${LangFileString} lng_ar "ArabÅ¡tina (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "azerbajdžánÅ¡tina (az)" +${LangFileString} lng_be "BÄ›loruÅ¡tina (be)" +${LangFileString} lng_bg "BulharÅ¡tina (bg)" +${LangFileString} lng_bn "BengálÅ¡tina (bn)" +${LangFileString} lng_bn_BD "BengálÅ¡tina/Bangladéš (bn_BD)" +${LangFileString} lng_br "BretonÅ¡tina (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "KatalánÅ¡tina (ca)" +${LangFileString} lng_ca@valencia "Valencijská katalánÅ¡tina (ca@valencia)" +${LangFileString} lng_cs "ÄŒeÅ¡tina (cs)" +${LangFileString} lng_da "DánÅ¡tina (da)" +${LangFileString} lng_de "NÄ›mÄina (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkä (dz)" +${LangFileString} lng_el "ŘeÄtina (el)" +${LangFileString} lng_en "AngliÄtina (en)" +${LangFileString} lng_en_AU "AngliÄtina/Austrálie (en_AU)" +${LangFileString} lng_en_CA "AngliÄtina/Kanada (en_CA)" +${LangFileString} lng_en_GB "AngliÄtina/Spojené královstvà (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Å panÄ›lÅ¡tina (es)" +${LangFileString} lng_es_MX "Å panÄ›lÅ¡tina/Mexiko (es_MX)" +${LangFileString} lng_et "EstonÅ¡tina (et)" +${LangFileString} lng_eu "BaskiÄtina (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "FinÅ¡tina (fi)" +${LangFileString} lng_fr "FrancouzÅ¡tina (fr)" +${LangFileString} lng_ga "IrÅ¡tina (ga)" +${LangFileString} lng_gl "GalicijÅ¡tina (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "HebrejÅ¡tina (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "ChorvatÅ¡tina (hr)" +${LangFileString} lng_hu "MaÄarÅ¡tina (hu)" +${LangFileString} lng_hy "ArménÅ¡tina (hy)" +${LangFileString} lng_id "Indonéština (id)" +${LangFileString} lng_is "IslandÅ¡tina (is)" +${LangFileString} lng_it "ItalÅ¡tina (it)" +${LangFileString} lng_ja "JaponÅ¡tina (ja)" +${LangFileString} lng_km "KhmerÅ¡tina (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "KorejÅ¡tina (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "LitevÅ¡tina (lt)" +${LangFileString} lng_lv "LotyÅ¡tina (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "MakedonÅ¡tina (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "MongolÅ¡tina (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norský bokmal (nb)" +${LangFileString} lng_ne "NepálÅ¡tina (ne)" +${LangFileString} lng_nl "NizozemÅ¡tina (nl)" +${LangFileString} lng_nn "Norský nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "PaňdžábÅ¡tina (pa)" +${LangFileString} lng_pl "PolÅ¡tina (pl)" +${LangFileString} lng_pt "PortugalÅ¡tina (pt)" +${LangFileString} lng_pt_BR "PortugalÅ¡tina/BrazÃlie (pt_BR)" +${LangFileString} lng_ro "RumunÅ¡tina (ro)" +${LangFileString} lng_ru "RuÅ¡tina (ru)" +${LangFileString} lng_rw "RwandÅ¡tina (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "SrbÅ¡tina (latinka) (sr@latin)" +${LangFileString} lng_sk "SlovenÅ¡tina (sk)" +${LangFileString} lng_sl "SlovinÅ¡tina (sl)" +${LangFileString} lng_sq "AlbánÅ¡tina (sq)" +${LangFileString} lng_sr "SrbÅ¡tina (sr)" +${LangFileString} lng_sr@latin "SrbÅ¡tina (latinka) (sr@latin)" +${LangFileString} lng_sv "Å védÅ¡tina (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "ThajÅ¡tina (th)" +${LangFileString} lng_tr "TureÄtina (tr)" +${LangFileString} lng_uk "UkrajinÅ¡tina (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "VietnamÅ¡tina (vi)" +${LangFileString} lng_zh_CN "ÄŒÃnÅ¡tina/ÄŒÃna (zh_CN)" +${LangFileString} lng_zh_TW "ÄŒÃnÅ¡tina (Taiwan) (zh_TW)" diff --git a/packaging/win32/languages/Danish.nsh b/packaging/win32/languages/Danish.nsh new file mode 100644 index 0000000..8815368 --- /dev/null +++ b/packaging/win32/languages/Danish.nsh @@ -0,0 +1,55 @@ +;Language: Danish (1030) +;By scootergrisen +${LangFileString} CaptionDescription "Open source skalérbar vektor redigeringsprogram" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) er udgivet under GNU General Public License (GPL). Licensen leveres her kun til orientering. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape er blevet installeret af brugeren $0.$\r$\nHvis du fortsætter lykkedes det mÃ¥ske ikke fuldt ud!$\r$\nLog venligst ind som $0 og prøv igen." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 er allerede blevet installeret. $\nVil du fjerne den tidligere version inden $(^Name) installeres?" +${LangFileString} OK_CANCEL_DESC "$\n$\nTryk pÃ¥ OK for at fortsætte eller tryk pÃ¥ ANNULLER for at afbryde." +${LangFileString} NO_ADMIN "Du har ikke administratortilladelser.$\r$\nInstallation af Inkscape for alle brugere lykkedes mÃ¥ske ikke fuldt ud.$\r$\nFravælg valgmuligheden 'Installér for alle brugere'." +${LangFileString} NOT_SUPPORTED "Inkscape kan ikke køre under Windows 95/98/ME!$\r$\nSe venligst det officielle websted for detaljeret information." +${LangFileString} Full "Fuld" +${LangFileString} Optimal "Optimal" +${LangFileString} Minimal "Minimal" +${LangFileString} Core "Inkscape SVG-redigering (pÃ¥krævet)" +${LangFileString} CoreDesc "Grundlæggende Inkscape-filer og dll'er" +${LangFileString} GTKFiles "GTK+ Runtime Environment (pÃ¥krævet)" +${LangFileString} GTKFilesDesc "Et multi-platform GUI-værktøjskit, bruges af Inkscape" +${LangFileString} Shortcuts "Genveje" +${LangFileString} ShortcutsDesc "Genveje til at starte Inkscape" +${LangFileString} Alluser "Installér for alle brugere" +${LangFileString} AlluserDesc "Installér dette program for alle der bruger denne computer (alle brugere)" +${LangFileString} Desktop "Skrivebord" +${LangFileString} DesktopDesc "Opret en genvej til Inkscape pÃ¥ skrivebordet" +${LangFileString} Startmenu "Menuen Start" +${LangFileString} StartmenuDesc "Opret en genvej til Inkscape i menuen Start" +${LangFileString} Quicklaunch "Hurtig start" +${LangFileString} QuicklaunchDesc "Opret en genvej til Inkscape pÃ¥ værktøjslinjen Hurtig start" +${LangFileString} SVGWriter "Ã…bn SVG-filer med Inkscape" +${LangFileString} SVGWriterDesc "Vælg Inkscape som standard redigeringsprogram for SVG-filer" +${LangFileString} ContextMenu "Genvejsmenu" +${LangFileString} ContextMenuDesc "Tilføj Inkscape i genvejsmenuen for SVG-filer" +${LangFileString} DeletePrefs "Slet personlige præferencer" +${LangFileString} DeletePrefsDesc "Slet personlige præferencer efterladt fra tidligere installationer" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "En fortolker til Python-programmeringssproget og Python-moduler krævet til at køre Inkscape-udvidelser." +${LangFileString} Addfiles "Yderligere filer" +${LangFileString} AddfilesDesc "Yderligere filer" +${LangFileString} Extensions "Udvidelser" +${LangFileString} ExtensionsDesc "Inkscape-udvidelser (inklusiv mange import- og eksport-plugins)" +${LangFileString} Examples "Eksempler" +${LangFileString} ExamplesDesc "Eksempler pÃ¥ brug af Inkscape" +${LangFileString} Tutorials "Vejledninger" +${LangFileString} TutorialsDesc "Vejledninger i brug af Inkscape" +${LangFileString} Dictionaries "Ordbøger" +${LangFileString} DictionariesDesc "Ordbøger til nogle almene sprog til stavekontrol i Inkscape" +${LangFileString} Languages "Oversættelser" +${LangFileString} LanguagesDesc "Installér diverse oversættelser til Inkscape" +${LangFileString} UInstOpt "Valgmuligheder for afinstallation" +${LangFileString} UInstOpt1 "Foretag venligst dine valg af yderligere valgmuligheder" +${LangFileString} PurgePrefs "Behold personlige præferencer" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log ikke fundet!$\r$\nAfinstallér venligst ved at rydde mappen $INSTDIR manuelt!" +${LangFileString} FileChanged "Filen $filename er blevet ændret efter installationen.$\r$\nVil du stadig slette filen?" +${LangFileString} Yes "Ja" +${LangFileString} AlwaysYes "svar altid Ja" +${LangFileString} No "Nej" +${LangFileString} AlwaysNo "svar altid Nej" diff --git a/packaging/win32/languages/Danish_languageNames.nsh b/packaging/win32/languages/Danish_languageNames.nsh new file mode 100644 index 0000000..e1330b2 --- /dev/null +++ b/packaging/win32/languages/Danish_languageNames.nsh @@ -0,0 +1,92 @@ +### Danish (da) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Danish.nsh' +${LangFileString} lng_ar "Arabic (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "Azerbaijani (az)" +${LangFileString} lng_be "Belarusian (be)" +${LangFileString} lng_bg "Bulgarian (bg)" +${LangFileString} lng_bn "Bengali (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "Breton (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalan (ca)" +${LangFileString} lng_ca@valencia "Valencian Catalan (ca@valencia)" +${LangFileString} lng_cs "Czech (cs)" +${LangFileString} lng_da "Dansk (da)" +${LangFileString} lng_de "German (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Greek (el)" +${LangFileString} lng_en "Engelsk (en)" +${LangFileString} lng_en_AU "English/Australia (en_AU)" +${LangFileString} lng_en_CA "English/Canada (en_CA)" +${LangFileString} lng_en_GB "English/Great Britain (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Spanish (es)" +${LangFileString} lng_es_MX "Spanish/Mexico (es_MX)" +${LangFileString} lng_et "Estonian (et)" +${LangFileString} lng_eu "Basque (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "Finnish (fi)" +${LangFileString} lng_fr "French (fr)" +${LangFileString} lng_ga "Irish (ga)" +${LangFileString} lng_gl "Galician (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hebrew (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croatian (hr)" +${LangFileString} lng_hu "Hungarian (hu)" +${LangFileString} lng_hy "Armenian (hy)" +${LangFileString} lng_id "Indonesian (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "Italian (it)" +${LangFileString} lng_ja "Japanese (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Korean (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "Lithuanian (lt)" +${LangFileString} lng_lv "Latvian (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedonian (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongolian (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norwegian BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepali (ne)" +${LangFileString} lng_nl "Dutch (nl)" +${LangFileString} lng_nn "Norwegian Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polish (pl)" +${LangFileString} lng_pt "Portuguese (pt)" +${LangFileString} lng_pt_BR "Portuguese/Brazil (pt_BR)" +${LangFileString} lng_ro "Romanian (ro)" +${LangFileString} lng_ru "Russian (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "Slovak (sk)" +${LangFileString} lng_sl "Slovenian (sl)" +${LangFileString} lng_sq "Albanian (sq)" +${LangFileString} lng_sr "Serbian (sr)" +${LangFileString} lng_sr@latin "Serbian in Latin script (sr@latin)" +${LangFileString} lng_sv "Swedish (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Thai (th)" +${LangFileString} lng_tr "Turkish (tr)" +${LangFileString} lng_uk "Ukrainian (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamese (vi)" +${LangFileString} lng_zh_CN "Chinese/China (zh_CN)" +${LangFileString} lng_zh_TW "Chinese/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Dutch.nsh b/packaging/win32/languages/Dutch.nsh new file mode 100644 index 0000000..4031edf --- /dev/null +++ b/packaging/win32/languages/Dutch.nsh @@ -0,0 +1,55 @@ +;Language: Dutch (1033) +;By Adib Taraben <theadib@gmail.com> +${LangFileString} CaptionDescription "Open Source Scalable Vector Graphics Editor" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) wordt beschikbaar gesteld onder de GNU General Public License (GPL). De licentie is hierboven ter info weergegeven. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape werd geïnstalleerd door de gebruiker $0.$\r$\nIndien je voortgaat, kan je het mogelijk niet succesvol beëindigen!$\r$\nLog aub. in als $0 en probeer opnieuw." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 werd reeds geïnstalleerd. $\nWil je de vorige versie verwijderen voor de installatie van $(^Name)?" +${LangFileString} OK_CANCEL_DESC "$\n$\nDruk op OK om door te gaan en ANNULEREN om te stoppen." +${LangFileString} NO_ADMIN "Je hebt geen beheerdersbevoegdheden.$\r$\nHet installeren van Inkscape voor alle gebruikers is wellicht niet mogelijk.$\r$\nDesactiveer de optie 'Installeren voor alle gebruikers'." +${LangFileString} NOT_SUPPORTED "Het is bekend dat Inkscape niet draait onder Windows 95/98/ME!$\r$\nKijk aub. de officiële website na voor gedetailleerde informatie." +${LangFileString} Full "Volledig" +${LangFileString} Optimal "Optimaal" +${LangFileString} Minimal "Minimaal" +${LangFileString} Core "Inkscape SVG Editor (noodzakelijk)" +${LangFileString} CoreDesc "Inkscape kerncomponenten en dlls" +${LangFileString} GTKFiles "GTK+ Runtime Environment (noodzakelijk)" +${LangFileString} GTKFilesDesc "Een multi-platform GUI toolkit, gebruikt door Inkscape" +${LangFileString} Shortcuts "Sneltoetsen" +${LangFileString} ShortcutsDesc "Sneltoetsen voor het starten van Inkscape" +${LangFileString} Alluser "Installeren voor alle gebruikers" +${LangFileString} AlluserDesc "Deze applicatie installeren voor iedereen die deze computer gebruikt (alle gebruikers)" +${LangFileString} Desktop "Bureaublad" +${LangFileString} DesktopDesc "Een snelkoppeling voor Inkscape maken op het bureaublad" +${LangFileString} Startmenu "Startmenu" +${LangFileString} StartmenuDesc "Een ingang voor Inkscape maken in het startmenu maken" +${LangFileString} Quicklaunch "Snel starten" +${LangFileString} QuicklaunchDesc "Een snelkoppeling naar Inkscape maken op de werkbalk Snel starten" +${LangFileString} SVGWriter "SVG-bestanden openen met Inkscape" +${LangFileString} SVGWriterDesc "Inkscape selecteren als de standaard editor voor SVG-bestanden" +${LangFileString} ContextMenu "Contextmenu" +${LangFileString} ContextMenuDesc "Inkscape toevoegen aan het contextmenu voor SVG-bestanden" +${LangFileString} DeletePrefs "Persoonlijke voorkeuren verwijderen" +${LangFileString} DeletePrefsDesc "Persoonlijke voorkeuren van vorige installaties verwijderen" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Additionele bestanden" +${LangFileString} AddfilesDesc "Additionele bestanden" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Voorbeelden" +${LangFileString} ExamplesDesc "Voorbeelden van het gebruik van Inkscape" +${LangFileString} Tutorials "Handleidingen" +${LangFileString} TutorialsDesc "Handleidingen over het gebruik van Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Vertalingen" +${LangFileString} LanguagesDesc "Diverse vertalingen voor Inkscape installeren" +${LangFileString} UInstOpt "Deïnstallatieopties" +${LangFileString} UInstOpt1 "Maak alstublief je keuzes voor additionele opties" +${LangFileString} PurgePrefs "Persoonlijke voorkeuren behouden" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log niet gevonden!$\r$\nDeïnstalleer alstublief door zelf de map $INSTDIR leeg te maken!" +${LangFileString} FileChanged "Het bestand $filename is gewijzigd na installatie.$\r$\nWil je nog steeds dat bestand verwijderen?" +${LangFileString} Yes "Ja" +${LangFileString} AlwaysYes "altijd Ja antwoorden" +${LangFileString} No "Nee" +${LangFileString} AlwaysNo "altijd Nee antwoorden" diff --git a/packaging/win32/languages/Dutch_languageNames.nsh b/packaging/win32/languages/Dutch_languageNames.nsh new file mode 100644 index 0000000..03fc293 --- /dev/null +++ b/packaging/win32/languages/Dutch_languageNames.nsh @@ -0,0 +1,92 @@ +### Dutch (nl) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Dutch.nsh' +${LangFileString} lng_ar "Arabisch (ar)" +${LangFileString} lng_as "Assamees (as)" +${LangFileString} lng_az "Azerbeidzjaans (az)" +${LangFileString} lng_be "Wit-Russisch (be)" +${LangFileString} lng_bg "Bulgaars (bg)" +${LangFileString} lng_bn "Bengaals (bn)" +${LangFileString} lng_bn_BD "Bengaals/Bangladesh (bn_BD)" +${LangFileString} lng_br "Bretoens (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalaans (ca)" +${LangFileString} lng_ca@valencia "Catalaans/Valencia (ca@valencia)" +${LangFileString} lng_cs "Tsjechisch (cs)" +${LangFileString} lng_da "Deens (da)" +${LangFileString} lng_de "Duits (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Grieks (el)" +${LangFileString} lng_en "English (en)" +${LangFileString} lng_en_AU "Engels/Australië (en_AU)" +${LangFileString} lng_en_CA "Engels/Canada (en_CA)" +${LangFileString} lng_en_GB "Engels/Groot-Brittannië (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Spaans (es)" +${LangFileString} lng_es_MX "Spaans/Mexico (es_MX)" +${LangFileString} lng_et "Ests (et)" +${LangFileString} lng_eu "Baskisch (eu)" +${LangFileString} lng_fa "Perzisch (fa)" +${LangFileString} lng_fi "Fins (fi)" +${LangFileString} lng_fr "Frans (fr)" +${LangFileString} lng_ga "Iers (ga)" +${LangFileString} lng_gl "Galisisch (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hebreeuws (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Kroatisch (hr)" +${LangFileString} lng_hu "Hongaars (hu)" +${LangFileString} lng_hy "Armeens (hy)" +${LangFileString} lng_id "Indonesisch (id)" +${LangFileString} lng_is "Ijslands (is)" +${LangFileString} lng_it "Italiaans (it)" +${LangFileString} lng_ja "Japans (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Koreaans (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latijnse karakters (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari schrift (ks@deva)" +${LangFileString} lng_lt "Litouws (lt)" +${LangFileString} lng_lv "Lets (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedonisch (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongools (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengaals schrift (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Noors BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepalees (ne)" +${LangFileString} lng_nl "Nederlands (nl)" +${LangFileString} lng_nn "Noors Nynorsk (nn)" +${LangFileString} lng_or "Oriya (or)" +${LangFileString} lng_pa "Punjabi (pa)" +${LangFileString} lng_pl "Pools (pl)" +${LangFileString} lng_pt "Portugees (pt)" +${LangFileString} lng_pt_BR "Portugees/Brazillië (pt_BR)" +${LangFileString} lng_ro "Roemeens (ro)" +${LangFileString} lng_ru "Russisch (ru)" +${LangFileString} lng_rw "Rwandees (rw)" +${LangFileString} lng_sa "Sanskriet (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari schrift (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari schrift (sd@deva)" +${LangFileString} lng_sk "Slowaaks (sk)" +${LangFileString} lng_sl "Sloveens (sl)" +${LangFileString} lng_sq "Albanees (sq)" +${LangFileString} lng_sr "Servisch (sr)" +${LangFileString} lng_sr@latin "Servisch in Latijnse karakters (sr@latin)" +${LangFileString} lng_sv "Zweeds (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Thai (th)" +${LangFileString} lng_tr "Turks (tr)" +${LangFileString} lng_uk "Oekraïens (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamees (vi)" +${LangFileString} lng_zh_CN "Chinees/China (zh_CN)" +${LangFileString} lng_zh_TW "Chinees/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/English.nsh b/packaging/win32/languages/English.nsh new file mode 100644 index 0000000..6c6700c --- /dev/null +++ b/packaging/win32/languages/English.nsh @@ -0,0 +1,55 @@ +;Language: English (1033) +;By Adib Taraben <theadib@gmail.com> +${LangFileString} CaptionDescription "Open Source Scalable Vector Graphics Editor" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) is released under the GNU General Public License (GPL). The license is provided here for information purposes only. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape has been installed by user $0.$\r$\nIf you continue you might not complete successfully!$\r$\nPlease log in as $0 and try again." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 has already been installed. $\nDo you want to remove the previous version before installing $(^Name)?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPress OK to continue or press CANCEL to abort." +${LangFileString} NO_ADMIN "You do not have administrator privileges.$\r$\nInstalling Inkscape for all users might not complete successfully.$\r$\nUncheck the 'Install for all users' option." +${LangFileString} NOT_SUPPORTED "Inkscape is known not to run under Windows 95/98/ME!$\r$\nPlease check the official website for detailed information." +${LangFileString} Full "Full" +${LangFileString} Optimal "Optimal" +${LangFileString} Minimal "Minimal" +${LangFileString} Core "Inkscape SVG Editor (required)" +${LangFileString} CoreDesc "Inkscape core files and DLLs" +${LangFileString} GTKFiles "GTK+ Runtime Environment (required)" +${LangFileString} GTKFilesDesc "A multi-platform GUI toolkit, used by Inkscape" +${LangFileString} Shortcuts "Shortcuts" +${LangFileString} ShortcutsDesc "Shortcuts for starting Inkscape" +${LangFileString} Alluser "Install for all users" +${LangFileString} AlluserDesc "Install this application for anyone who uses this computer (all users)" +${LangFileString} Desktop "Desktop" +${LangFileString} DesktopDesc "Create a shortcut to Inkscape on the Desktop" +${LangFileString} Startmenu "Start Menu" +${LangFileString} StartmenuDesc "Create a Start Menu entry for Inkscape" +${LangFileString} Quicklaunch "Quick Launch" +${LangFileString} QuicklaunchDesc "Create a shortcut to Inkscape on the Quick Launch toolbar" +${LangFileString} SVGWriter "Open SVG files with Inkscape" +${LangFileString} SVGWriterDesc "Select Inkscape as default editor for SVG files" +${LangFileString} ContextMenu "Context Menu" +${LangFileString} ContextMenuDesc "Add Inkscape into the Context Menu for SVG files" +${LangFileString} DeletePrefs "Delete personal preferences" +${LangFileString} DeletePrefsDesc "Delete personal preferences leftover from previous installations" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Additional Files" +${LangFileString} AddfilesDesc "Additional Files" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Examples" +${LangFileString} ExamplesDesc "Examples using Inkscape" +${LangFileString} Tutorials "Tutorials" +${LangFileString} TutorialsDesc "Tutorials using Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Translations" +${LangFileString} LanguagesDesc "Translations and localized content for Inkscape" +${LangFileString} UInstOpt "Uninstallation Options" +${LangFileString} UInstOpt1 "Please make your choices for additional options" +${LangFileString} PurgePrefs "Keep personal Preferences" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log not found!$\r$\nPlease uninstall by clearing directory $INSTDIR yourself!" +${LangFileString} FileChanged "The file $filename has been changed after installation.$\r$\nDo you still want to delete that file?" +${LangFileString} Yes "Yes" +${LangFileString} AlwaysYes "always answer Yes" +${LangFileString} No "No" +${LangFileString} AlwaysNo "always answer No" diff --git a/packaging/win32/languages/English_languageNames.nsh b/packaging/win32/languages/English_languageNames.nsh new file mode 100644 index 0000000..b1de8a1 --- /dev/null +++ b/packaging/win32/languages/English_languageNames.nsh @@ -0,0 +1,92 @@ +### English (en) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'English.nsh' +${LangFileString} lng_ar "Arabic (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "Azerbaijani (az)" +${LangFileString} lng_be "Belarusian (be)" +${LangFileString} lng_bg "Bulgarian (bg)" +${LangFileString} lng_bn "Bengali (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "Breton (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalan (ca)" +${LangFileString} lng_ca@valencia "Valencian Catalan (ca@valencia)" +${LangFileString} lng_cs "Czech (cs)" +${LangFileString} lng_da "Danish (da)" +${LangFileString} lng_de "German (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Greek (el)" +${LangFileString} lng_en "English (en)" +${LangFileString} lng_en_AU "English/Australia (en_AU)" +${LangFileString} lng_en_CA "English/Canada (en_CA)" +${LangFileString} lng_en_GB "English/Great Britain (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Spanish (es)" +${LangFileString} lng_es_MX "Spanish/Mexico (es_MX)" +${LangFileString} lng_et "Estonian (et)" +${LangFileString} lng_eu "Basque (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "Finnish (fi)" +${LangFileString} lng_fr "French (fr)" +${LangFileString} lng_ga "Irish (ga)" +${LangFileString} lng_gl "Galician (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hebrew (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croatian (hr)" +${LangFileString} lng_hu "Hungarian (hu)" +${LangFileString} lng_hy "Armenian (hy)" +${LangFileString} lng_id "Indonesian (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "Italian (it)" +${LangFileString} lng_ja "Japanese (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Korean (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "Lithuanian (lt)" +${LangFileString} lng_lv "Latvian (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedonian (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongolian (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norwegian BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepali (ne)" +${LangFileString} lng_nl "Dutch (nl)" +${LangFileString} lng_nn "Norwegian Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polish (pl)" +${LangFileString} lng_pt "Portuguese (pt)" +${LangFileString} lng_pt_BR "Portuguese/Brazil (pt_BR)" +${LangFileString} lng_ro "Romanian (ro)" +${LangFileString} lng_ru "Russian (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "Slovak (sk)" +${LangFileString} lng_sl "Slovenian (sl)" +${LangFileString} lng_sq "Albanian (sq)" +${LangFileString} lng_sr "Serbian (sr)" +${LangFileString} lng_sr@latin "Serbian in Latin script (sr@latin)" +${LangFileString} lng_sv "Swedish (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Thai (th)" +${LangFileString} lng_tr "Turkish (tr)" +${LangFileString} lng_uk "Ukrainian (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamese (vi)" +${LangFileString} lng_zh_CN "Chinese/China (zh_CN)" +${LangFileString} lng_zh_TW "Chinese/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Finnish.nsh b/packaging/win32/languages/Finnish.nsh new file mode 100644 index 0000000..492f263 --- /dev/null +++ b/packaging/win32/languages/Finnish.nsh @@ -0,0 +1,55 @@ +;Language: Finnish (1035) +;By Riku Leino <tsoots@gmail.com> +${LangFileString} CaptionDescription "Avoimen lähdekoodin SVG-muokkain" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) on julkaistu GNU General Public License (GPL) -lisenssillä. $_CLICK" +${LangFileString} DIFFERENT_USER "Käyttäjä $0.$\r$\n on asentanut Inkscapen\nJos jatkat, asennus saattaa epäonnistua.!$\r$\nKirjaudu sisään käyttäjänä $0 ja yritä uudestaan." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 on jo asennettu. $\nHaluatko poistaa edellisen version ennen asennusta $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPaina OK jatkaaksi tai Peruuta keskeyttääksesi." +${LangFileString} NO_ADMIN "Sinulla ei ole pääkäyttäjän oikeuksia.$\r$\nInkscapen asennus kaikille käyttäjille saattaa epäonnistua.$\r$\nÄlä käytä kaikille käyttäjille -ominaisuutta." +${LangFileString} NOT_SUPPORTED "Inkscape ei toimi käyttöjärjestelmissä Windows 95/98/ME!$\r$\nLisätietoja saat ohjelman kotisivulta." +${LangFileString} Full "Täysi" +${LangFileString} Optimal "Oletus" +${LangFileString} Minimal "Vähäisin" +${LangFileString} Core "Inkscape SVG-muokkain (pakollinen)" +${LangFileString} CoreDesc "Inkscape tiedostot ja dll-kirjastot" +${LangFileString} GTKFiles "GTK+-ajoympäristö (pakollinen)" +${LangFileString} GTKFilesDesc "Usealla alustalla toimiva käyttöliittymäkehys, jota Inkscape käyttää" +${LangFileString} Shortcuts "Pikakuvakkeet" +${LangFileString} ShortcutsDesc "Pikakuvakkeet Inkscapen käynnistämiseksi" +${LangFileString} Alluser "kaikille käyttäjille" +${LangFileString} AlluserDesc "Asenna Inkscape kaikille tämän tietokoneen käyttäjille" +${LangFileString} Desktop "Työpöytä" +${LangFileString} DesktopDesc "Luo Inkscape-pikakuvake työpöydälle" +${LangFileString} Startmenu "Käynnistä-valikko" +${LangFileString} StartmenuDesc "Lisää Inkscape Käynnistä-valikkoon" +${LangFileString} Quicklaunch "Pikakäynnistys" +${LangFileString} QuicklaunchDesc "Lisää Inkscape pikakäynnistysriville" +${LangFileString} SVGWriter "Avaa SVG-tiedostot Inkscapella" +${LangFileString} SVGWriterDesc "Tee Inkscapesta oletusmuokkain SVG-tiedostoille" +${LangFileString} ContextMenu "Kontekstivalikko" +${LangFileString} ContextMenuDesc "Lisää Inkscape SVG-tiedostojen pikavalikkoon" +${LangFileString} DeletePrefs "Poista asetukset" +${LangFileString} DeletePrefsDesc "Poista edelliseen versioon tehdyt asetukset" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Valinnaiset tiedostot" +${LangFileString} AddfilesDesc "Valinnaiset tiedostot" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Esimerkit" +${LangFileString} ExamplesDesc "Inkscapen avulla tehdyt esimerkit" +${LangFileString} Tutorials "Ohjeet" +${LangFileString} TutorialsDesc "Inkscapen käyttöä opettavat ohjeet (englanniksi)" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Käännökset" +${LangFileString} LanguagesDesc "Asenna Inkscapen käännökset" +${LangFileString} UInstOpt "Ohjelman poiston asetukset" +${LangFileString} UInstOpt1 "Valitse haluamasi asetukset ohjelman poistamiseksi" +${LangFileString} PurgePrefs "Säilytä omat asetukset" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log ei löytynyt!$\r$\nPoista tyhjentämällä asennuskansio $INSTDIR!" +${LangFileString} FileChanged "Tiedosto $filename on muuttunut asennuksen jälkeen.$\r$\nPoistetaanko se siitä huolimatta?" +${LangFileString} Yes "Kyllä" +${LangFileString} AlwaysYes "Kyllä kaikkiin" +${LangFileString} No "Ei" +${LangFileString} AlwaysNo "Ei kaikkiin" diff --git a/packaging/win32/languages/Finnish_languageNames.nsh b/packaging/win32/languages/Finnish_languageNames.nsh new file mode 100644 index 0000000..6b27af5 --- /dev/null +++ b/packaging/win32/languages/Finnish_languageNames.nsh @@ -0,0 +1,92 @@ +### Finnish (fi) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Finnish.nsh' +${LangFileString} lng_ar "Arabia (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "Azerbaijani (az)" +${LangFileString} lng_be "Valkovenäjä (be)" +${LangFileString} lng_bg "Bulgaria (bg)" +${LangFileString} lng_bn "Bengali (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "Breton (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalan (ca)" +${LangFileString} lng_ca@valencia "Valencian Catalan (ca@valencia)" +${LangFileString} lng_cs "Tsekki (cs)" +${LangFileString} lng_da "Tanska (da)" +${LangFileString} lng_de "Saksa (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Kreikka (el)" +${LangFileString} lng_en "Englanti (en)" +${LangFileString} lng_en_AU "Englanti/Australia (en_AU)" +${LangFileString} lng_en_CA "Englanti/Kanada (en_CA)" +${LangFileString} lng_en_GB "Englanti/Iso Britannia (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Espanja (es)" +${LangFileString} lng_es_MX "Espanja/Meksiko (es_MX)" +${LangFileString} lng_et "Viro (et)" +${LangFileString} lng_eu "Basque (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "Suomi (fi)" +${LangFileString} lng_fr "Ranska (fr)" +${LangFileString} lng_ga "Irlanti (ga)" +${LangFileString} lng_gl "Galician (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Heprea (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Kroatia (hr)" +${LangFileString} lng_hu "Unkari (hu)" +${LangFileString} lng_hy "Armenia (hy)" +${LangFileString} lng_id "Indonesa (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "Italia (it)" +${LangFileString} lng_ja "Japani (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Korea (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "Liettua (lt)" +${LangFileString} lng_lv "Latvian (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Makedonia (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongolia (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norja BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepali (ne)" +${LangFileString} lng_nl "Hollanti (nl)" +${LangFileString} lng_nn "Norja Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Puola (pl)" +${LangFileString} lng_pt "Portugali (pt)" +${LangFileString} lng_pt_BR "Portugali/Brasilia (pt_BR)" +${LangFileString} lng_ro "Romania (ro)" +${LangFileString} lng_ru "Venäjä (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "Slovakia (sk)" +${LangFileString} lng_sl "Slovenia (sl)" +${LangFileString} lng_sq "Albania (sq)" +${LangFileString} lng_sr "Serbia (sr)" +${LangFileString} lng_sr@latin "Serbia/Latin (sr@latin)" +${LangFileString} lng_sv "Ruotsi (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Thai (th)" +${LangFileString} lng_tr "Turkki (tr)" +${LangFileString} lng_uk "Ukraina (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnami (vi)" +${LangFileString} lng_zh_CN "Kiina (zh_CN)" +${LangFileString} lng_zh_TW "Kiina/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/French.nsh b/packaging/win32/languages/French.nsh new file mode 100644 index 0000000..e734985 --- /dev/null +++ b/packaging/win32/languages/French.nsh @@ -0,0 +1,55 @@ +;Language: French (1036) +;By matiphas@free.fr, Nicolas Dufour <nicoduf@yahoo.fr>, Sylvain Chiron <chironsylvain@orange.fr> +${LangFileString} CaptionDescription "Éditeur vectoriel SVG libre" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) est mis à disposition sous les termes de la licence publique générale (GPL) GNU. La licence est fournie ici pour information uniquement. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape a déjà été installé par l'utilisateur $0.$\r$\nSi vous continuez, l'installation pourrait devenir défectueuse !$\r$\nVeuillez vous connecter en tant que $0 et essayer à nouveau." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 a déjà été installé. $\nVoulez-vous supprimer la version précédente avant l'installation d'$(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nCliquer sur OK pour continuer ou sur CANCEL pour annuler." +${LangFileString} NO_ADMIN "Vous n'avez pas les privilèges d'administration.$\r$\nL'installation d'Inkscape pour tous les utilisateurs pourrait devenir défectueuse.$\r$\nVeuillez décocher l'option « pour tous les utilisateurs »." +${LangFileString} NOT_SUPPORTED "Inkscape n'est pas exécutable sur Windows 95/98/Me !$\r$\nVeuillez consulter le site web officiel pour plus d'informations." +${LangFileString} Full "Complète" +${LangFileString} Optimal "Optimale" +${LangFileString} Minimal "Minimale" +${LangFileString} Core "Éditeur SVG Inkscape (nécessaire)" +${LangFileString} CoreDesc "Fichiers indispensables d'Inkscape et bibliothèques dynamiques" +${LangFileString} GTKFiles "Environnement GTK+ (nécessaire)" +${LangFileString} GTKFilesDesc "Une boîte à outils multi-plateforme pour interfaces graphiques, utilisée par Inkscape" +${LangFileString} Shortcuts "Raccourcis" +${LangFileString} ShortcutsDesc "Raccourcis pour démarrer Inkscape" +${LangFileString} Alluser "Pour tous les utilisateurs" +${LangFileString} AlluserDesc "Installer cette application pour tous les utilisateurs de cet ordinateur" +${LangFileString} Desktop "Bureau" +${LangFileString} DesktopDesc "Créer un raccourci vers Inkscape sur le bureau" +${LangFileString} Startmenu "Menu Démarrer" +${LangFileString} StartmenuDesc "Créer une entrée Inkscape dans le menu Démarrer" +${LangFileString} Quicklaunch "Barre des tâches" +${LangFileString} QuicklaunchDesc "Créer un raccourci vers Inkscape dans la barre des tâches" +${LangFileString} SVGWriter "Ouvrir les fichiers SVG avec Inkscape" +${LangFileString} SVGWriterDesc "Choisir Inkscape comme éditeur par défaut pour les fichiers SVG" +${LangFileString} ContextMenu "Menu contextuel" +${LangFileString} ContextMenuDesc "Ajouter Inkscape dans le menu contextuel des fichiers SVG" +${LangFileString} DeletePrefs "Effacer les préférences personnelles" +${LangFileString} DeletePrefsDesc "Effacer les préférences personnelles laissées par les précédentes installations" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Fichiers additionnels" +${LangFileString} AddfilesDesc "Fichiers additionnels" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Exemples" +${LangFileString} ExamplesDesc "Exemples d'utilisation d'Inkscape" +${LangFileString} Tutorials "Didacticiels" +${LangFileString} TutorialsDesc "Didacticiels sur l'utilisation d'Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Traductions" +${LangFileString} LanguagesDesc "Installer les traductions d'Inkscape" +${LangFileString} UInstOpt "Options de désinstallation" +${LangFileString} UInstOpt1 "Choisissez parmi les options additionnelles" +${LangFileString} PurgePrefs "Conserver les préférences personnelles" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log introuvable !$\r$\nVeuillez procéder à la désinstallation en nettoyant le dossier $INSTDIR manuellement." +${LangFileString} FileChanged "Le fichier $filename a été modifié après l'installation.$\r$\nVoulez-vous vraiment le supprimer ?" +${LangFileString} Yes "Oui" +${LangFileString} AlwaysYes "toujours répondre Oui" +${LangFileString} No "Non" +${LangFileString} AlwaysNo "toujours répondre Non" diff --git a/packaging/win32/languages/French_languageNames.nsh b/packaging/win32/languages/French_languageNames.nsh new file mode 100644 index 0000000..cd44df0 --- /dev/null +++ b/packaging/win32/languages/French_languageNames.nsh @@ -0,0 +1,92 @@ +### French (fr) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'French.nsh' +${LangFileString} lng_ar "Arabe (ar)" +${LangFileString} lng_as "Assamais (as)" +${LangFileString} lng_az "Azéri (az)" +${LangFileString} lng_be "Biélorusse (be)" +${LangFileString} lng_bg "Bulgare (bg)" +${LangFileString} lng_bn "Bengali (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "Breton (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalan (ca)" +${LangFileString} lng_ca@valencia "Catalan valencien (ca@valencia)" +${LangFileString} lng_cs "Tchèque (cs)" +${LangFileString} lng_da "Danois (da)" +${LangFileString} lng_de "Allemand (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Grec (el)" +${LangFileString} lng_en "Anglais (en)" +${LangFileString} lng_en_AU "Anglais/Australie (en_AU)" +${LangFileString} lng_en_CA "Anglais/Canada (en_CA)" +${LangFileString} lng_en_GB "Anglais/Grande-Bretagne (en_GB)" +${LangFileString} lng_eo "Espéranto (eo)" +${LangFileString} lng_es "Espagnol (es)" +${LangFileString} lng_es_MX "Espagnol/Mexique (es_MX)" +${LangFileString} lng_et "Estonien (et)" +${LangFileString} lng_eu "Basque (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "Finnois (fi)" +${LangFileString} lng_fr "Français (fr)" +${LangFileString} lng_ga "Irlandais (ga)" +${LangFileString} lng_gl "Galicien (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hébreu (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croate (hr)" +${LangFileString} lng_hu "Hongrois (hu)" +${LangFileString} lng_hy "Arménien (hy)" +${LangFileString} lng_id "Indonésien (id)" +${LangFileString} lng_is "Islandais (is)" +${LangFileString} lng_it "Italien (it)" +${LangFileString} lng_ja "Japonais (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Coréen (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani en alphabet latin (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri, écriture Perso-Arabique (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri, écriture Devanagari (ks@deva)" +${LangFileString} lng_lt "Lituanien (lt)" +${LangFileString} lng_lv "Letton (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macédonien (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongol (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri, écriture Bengali (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norvégien BokmÃ¥l (nb)" +${LangFileString} lng_ne "Népalais (ne)" +${LangFileString} lng_nl "Néerlandais (nl)" +${LangFileString} lng_nn "Norvégien Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polonais (pl)" +${LangFileString} lng_pt "Portugais (pt)" +${LangFileString} lng_pt_BR "Portugais/Brésil (pt_BR)" +${LangFileString} lng_ro "Roumain (ro)" +${LangFileString} lng_ru "Russe (ru)" +${LangFileString} lng_rw "Kinyarouanda (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali, écriture Devanagari (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi, écriture Devanagari (sd@deva)" +${LangFileString} lng_sk "Slovaque (sk)" +${LangFileString} lng_sl "Slovène (sl)" +${LangFileString} lng_sq "Albanais (sq)" +${LangFileString} lng_sr "Serbe (sr)" +${LangFileString} lng_sr@latin "Serbe en alphabet latin (sr@latin)" +${LangFileString} lng_sv "Suédois (sv)" +${LangFileString} lng_ta "Tamoul (ta)" +${LangFileString} lng_te "Télougou (te)" +${LangFileString} lng_th "Thaï (th)" +${LangFileString} lng_tr "Turc (tr)" +${LangFileString} lng_uk "Ukrainien (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamien (vi)" +${LangFileString} lng_zh_CN "Chinois/Chine (zh_CN)" +${LangFileString} lng_zh_TW "Chinois/Taïwan (zh_TW)" diff --git a/packaging/win32/languages/Galician.nsh b/packaging/win32/languages/Galician.nsh new file mode 100644 index 0000000..f107118 --- /dev/null +++ b/packaging/win32/languages/Galician.nsh @@ -0,0 +1,55 @@ +;Language: Galician (1110) +;By Leandro Regueiro leandro.regueiro@gmail.com +${LangFileString} CaptionDescription "Editor de Gráficos Vectoriais Escalables (SVG) de Código Aberto" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) publÃcase baixo GNU General Public License (GPL). A licenza amósase aquà só para informalo. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape foi instalado polo usuario $0.$\r$\nSe continua pode que non consiga rematar a instalación con éxito!$\r$\nEntre no sistema coma $0 e ténteo de novo." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 xa foi instalado. $\nDesexa eliminar a versión anterior antes de instalar $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPrema Aceptar para continuar ou prema CANCELAR para abortar." +${LangFileString} NO_ADMIN "Non ten privilexios de administrador.$\r$\nPode que non consiga rematar con éxito a instalación de Inkscape para tódolos usuarios.$\r$\nDesmarque a opción 'para tódolos usuarios'." +${LangFileString} NOT_SUPPORTED "Sábese que Inkscape non funciona en Windows 95/98/ME!$\r$\nConsulte o sitio web oficial para obter información máis detallada." +${LangFileString} Full "Completa" +${LangFileString} Optimal "Óptima" +${LangFileString} Minimal "MÃnima" +${LangFileString} Core "Editor de SVG Inkscape (requirido)" +${LangFileString} CoreDesc "Ficheiros básicos de Inkscape e dlls" +${LangFileString} GTKFiles "Ambiente de Execución GTK+ (requirido)" +${LangFileString} GTKFilesDesc "Un toolkit GUI multiplataforma, usado por Inkscape" +${LangFileString} Shortcuts "Accesos Directos" +${LangFileString} ShortcutsDesc "Accesos directos para iniciar Inkscape" +${LangFileString} Alluser "para tódolos usuarios" +${LangFileString} AlluserDesc "Instalar esta aplicación para tódolos que usan este ordenador (tódolos usuarios)" +${LangFileString} Desktop "Escritorio" +${LangFileString} DesktopDesc "Crear un acceso directo para Inkscape no Escritorio" +${LangFileString} Startmenu "Menú Inicio" +${LangFileString} StartmenuDesc "Crear unha entrada no Menú Inicio para Inkscape" +${LangFileString} Quicklaunch "Inicio Rápido" +${LangFileString} QuicklaunchDesc "Crear un acceso directo para Inkscape na barra de Inicio Rápido" +${LangFileString} SVGWriter "Abrir ficheiros SVG con Inkscape" +${LangFileString} SVGWriterDesc "Seleccionar Inkscape coma o editor predeterminado para os ficheiros SVG" +${LangFileString} ContextMenu "Menú Contextual" +${LangFileString} ContextMenuDesc "Engadir Inkscape ó Menú Contextual dos ficheiros SVG" +${LangFileString} DeletePrefs "Eliminar as configuracións persoais" +${LangFileString} DeletePrefsDesc "Eliminar as configuracións persoais de instalacións anteriores" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Ficheiros Adicionais" +${LangFileString} AddfilesDesc "Ficheiros Adicionais" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Exemplos" +${LangFileString} ExamplesDesc "Exemplos de uso de Inkscape" +${LangFileString} Tutorials "Titoriais" +${LangFileString} TutorialsDesc "Titoriais de Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Traducións" +${LangFileString} LanguagesDesc "Instala varias traducións de Inkscape" +${LangFileString} UInstOpt "Opcións de Desinstalación" +${LangFileString} UInstOpt1 "Escolla as opcións adicionais" +${LangFileString} PurgePrefs "Conservar a Configuración persoal" +${LangFileString} UninstallLogNotFound "Non se atopou $INSTDIR\uninstall.log!$\r$\nDesinstale baleirando vostede mesmo o directorio $INSTDIR!" +${LangFileString} FileChanged "O ficheiro $filename cambiou despois da instalación.$\r$\nAinda desexa eliminar ese ficheiro?" +${LangFileString} Yes "SÃ" +${LangFileString} AlwaysYes "sempre responder SÃ" +${LangFileString} No "Non" +${LangFileString} AlwaysNo "sempre responder Non" diff --git a/packaging/win32/languages/Galician_languageNames.nsh b/packaging/win32/languages/Galician_languageNames.nsh new file mode 100644 index 0000000..682586e --- /dev/null +++ b/packaging/win32/languages/Galician_languageNames.nsh @@ -0,0 +1,92 @@ +### Galician (gl) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Galician.nsh' +${LangFileString} lng_ar "Ãrabe (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "Acerà (az)" +${LangFileString} lng_be "Bieloruso (be)" +${LangFileString} lng_bg "Búlgaro (bg)" +${LangFileString} lng_bn "Bengalà (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "Bretón (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalán (ca)" +${LangFileString} lng_ca@valencia "Catalán de Valencia (ca@valencia)" +${LangFileString} lng_cs "Checo (cs)" +${LangFileString} lng_da "Dinamarqués (da)" +${LangFileString} lng_de "Alemán (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Grego (el)" +${LangFileString} lng_en "Inglés (en)" +${LangFileString} lng_en_AU "Inglés de Australia (en_AU)" +${LangFileString} lng_en_CA "Inglés de Canadá (en_CA)" +${LangFileString} lng_en_GB "Inglés de Gran Bretaña (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Castelán (es)" +${LangFileString} lng_es_MX "Castelán de México (es_MX)" +${LangFileString} lng_et "Estonio (et)" +${LangFileString} lng_eu "Éuscaro (eu)" +${LangFileString} lng_fa "Persa (fa)" +${LangFileString} lng_fi "Finlandés (fi)" +${LangFileString} lng_fr "Francés (fr)" +${LangFileString} lng_ga "Irlandés (ga)" +${LangFileString} lng_gl "Galego (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hebreo (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croata (hr)" +${LangFileString} lng_hu "Húngaro (hu)" +${LangFileString} lng_hy "Armenio (hy)" +${LangFileString} lng_id "Indonesio (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "Italiano (it)" +${LangFileString} lng_ja "Xaponés (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Coreano (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "Lituano (lt)" +${LangFileString} lng_lv "Latvian (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedonio (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongol (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Noruegués, BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepalà (ne)" +${LangFileString} lng_nl "Holandés (nl)" +${LangFileString} lng_nn "Noruegués, Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polaco (pl)" +${LangFileString} lng_pt "Portugués (pt)" +${LangFileString} lng_pt_BR "Portugués brasileiro (pt_BR)" +${LangFileString} lng_ro "Romanés (ro)" +${LangFileString} lng_ru "Ruso (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "Eslovaco (sk)" +${LangFileString} lng_sl "Esloveno (sl)" +${LangFileString} lng_sq "Albanés (sq)" +${LangFileString} lng_sr "Serbio (sr)" +${LangFileString} lng_sr@latin "Serbio en alfabeto latino (sr@latin)" +${LangFileString} lng_sv "Sueco (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Tailandés (th)" +${LangFileString} lng_tr "Turco (tr)" +${LangFileString} lng_uk "UcraÃno (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamita (vi)" +${LangFileString} lng_zh_CN "Chinés de China (zh_CN)" +${LangFileString} lng_zh_TW "Chinés de Taiwán (zh_TW)" diff --git a/packaging/win32/languages/German.nsh b/packaging/win32/languages/German.nsh new file mode 100644 index 0000000..bb0f8ec --- /dev/null +++ b/packaging/win32/languages/German.nsh @@ -0,0 +1,55 @@ +;Language: German (1031) +;By Adib Taraben <theadib@gmail.com> +${LangFileString} CaptionDescription "Open-Source-Vektorgrafikeditor" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) wird unter der GNU General Public License (GPL) veröffentlicht. Die Lizenz dient hier nur der Information. $_CLICK" +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 wurde bereits installiert. $\nSoll die vorherige Version vor dem Installieren von $(^Name) zuerst deinstalliert werden?" +${LangFileString} OK_CANCEL_DESC "$\n$\nOK um fortzufahren oder Abbrechen zum sofortigen Beenden." +${LangFileString} DIFFERENT_USER "Inkscape wurde bereits durch den Benutzer $0 installiert.$\r$\nWenn Sie fortfahren kann die Aktion möglicherweise nicht korrekt abgeschlossen werden!$\r$\nBitte melden Sie sich als $0 an und versuchen Sie es erneut." +${LangFileString} NO_ADMIN "Sie sind nicht Computeradministrator.$\r$\nDas Installieren für alle Benutzer kann möglicherweise nicht korrekt abgeschlossen werden.$\r$\nBitte wählen Sie die Option 'Für alle Benutzer' ab." +${LangFileString} NOT_SUPPORTED "Es ist bekannt, dass Inkscape unter Windows 95/98/ME nicht oder nicht stabil läuft!$\r$\nBitte prüfen Sie die offizielle Webseite für detaillierte Informationen." +${LangFileString} Full "Vollständig" +${LangFileString} Optimal "Optimal" +${LangFileString} Minimal "Minimal" +${LangFileString} Core "Inkscape-Vektorgrafikeditor (erforderlich)" +${LangFileString} CoreDesc "Inkscape-Basisdateien und -DLLs" +${LangFileString} GTKFiles "GTK+-Laufzeitumgebung (erforderlich)" +${LangFileString} GTKFilesDesc "Ein Multi-Plattform-GUI-Toolkit, verwendet von Inkscape" +${LangFileString} Shortcuts "Verknüpfungen" +${LangFileString} ShortcutsDesc "Verknüpfungen zum Start von Inkscape" +${LangFileString} Alluser "Für alle Benutzer" +${LangFileString} AlluserDesc "Installiert diese Anwendung für alle Benutzer dieses Computers (all users)" +${LangFileString} Startmenu "Startmenü" +${LangFileString} StartmenuDesc "Erstellt einen Eintrag für Inkscape im Startmenü" +${LangFileString} Desktop "Desktop" +${LangFileString} DesktopDesc "Erstellt eine Verknüpfung zu Inkscape auf dem Desktop" +${LangFileString} Quicklaunch "Schnellstartleiste" +${LangFileString} QuicklaunchDesc "Erstellt eine Verknüpfung zu Inkscape in der Schnellstartleiste" +${LangFileString} SVGWriter "SVG-Dateien mit Inkscape öffnen" +${LangFileString} SVGWriterDesc "Inkscape als Standardanwendung für SVG-Dateien festlegen" +${LangFileString} ContextMenu "Kontextmenü" +${LangFileString} ContextMenuDesc "Fügt Inkscape in das Kontextmenü von SVG-Dateien ein" +${LangFileString} DeletePrefs "Persönliche Inkscape-Einstellungen löschen" +${LangFileString} DeletePrefsDesc "Löscht verbliebene persönliche Inkscape-Einstellungen einer vorherigen Installation" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "Ein Interpreter für die Programmiersprache Python und Python-Module zum Ausführen von Erweiterungen." +${LangFileString} Addfiles "Zusätzliche Dateien" +${LangFileString} AddfilesDesc "Zusätzliche Dateien" +${LangFileString} Extensions "Erweiterungen" +${LangFileString} ExtensionsDesc "Inkscape-Erweiterungen (inklusive vieler Import- und Exportplugins)" +${LangFileString} Examples "Beispiele" +${LangFileString} ExamplesDesc "Beispieldateien, die mit Inkscape erstellt wurden" +${LangFileString} Tutorials "Tutorials" +${LangFileString} TutorialsDesc "Tutorials für die Benutzung von Inkscape" +${LangFileString} Dictionaries "Wörterbücher" +${LangFileString} DictionariesDesc "Wörterbücher für einige gängige Sprachen zur Rechtschreibprüfung in Inkscape" +${LangFileString} Languages "Ãœbersetzungen" +${LangFileString} LanguagesDesc "Ãœbersetzungen und sprachspezifische Inhalte für Inkscape" +${LangFileString} UInstOpt "Deinstallations-Optionen" +${LangFileString} UInstOpt1 "Bitte wählen Sie die optionalen Deinstallationsparameter" +${LangFileString} PurgePrefs "Persönliche Inkscape-Einstellungen behalten" +${LangFileString} UninstallLogNotFound "Datei $INSTDIR\uninstall.log nicht gefunden!$\r$\nBitte deinstallieren Sie selbst durch Löschen von $INSTDIR!" +${LangFileString} FileChanged "Die Datei $filename wurde nach der Installation geändert.$\r$\nMöchten Sie diese Datei trotzdem löschen?" +${LangFileString} Yes "Ja" +${LangFileString} AlwaysYes "immer mit Ja antworten" +${LangFileString} No "Nein" +${LangFileString} AlwaysNo "immer mit Nein antworten" diff --git a/packaging/win32/languages/German_languageNames.nsh b/packaging/win32/languages/German_languageNames.nsh new file mode 100644 index 0000000..d06a1d9 --- /dev/null +++ b/packaging/win32/languages/German_languageNames.nsh @@ -0,0 +1,92 @@ +### German (de) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'German.nsh' +${LangFileString} lng_ar "Arabisch (ar)" +${LangFileString} lng_as "Assamesisch (as)" +${LangFileString} lng_az "Aserbeidschanisch (az)" +${LangFileString} lng_be "Belorussisch (be)" +${LangFileString} lng_bg "Bulgarisch (bg)" +${LangFileString} lng_bn "Bengalesisch (bn)" +${LangFileString} lng_bn_BD "Bengalesisch (bn_BD)" +${LangFileString} lng_br "Bretonisch (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Katalanisch (ca)" +${LangFileString} lng_ca@valencia "Valencianisches Katalan (ca@valencia)" +${LangFileString} lng_cs "Tschechisch (cs)" +${LangFileString} lng_da "Dänisch (da)" +${LangFileString} lng_de "Deutsch (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Griechisch (el)" +${LangFileString} lng_en "Englisch (en)" +${LangFileString} lng_en_AU "Englisch/Australien (en_AU)" +${LangFileString} lng_en_CA "Englisch/Kanada (en_CA)" +${LangFileString} lng_en_GB "Englisch/Großbritannien (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Spanisch (es)" +${LangFileString} lng_es_MX "Spanisch/Mexico (es_MX)" +${LangFileString} lng_et "Estnisch (et)" +${LangFileString} lng_eu "Baskisch (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "Finnisch (fi)" +${LangFileString} lng_fr "Französisch (fr)" +${LangFileString} lng_ga "Irisch (ga)" +${LangFileString} lng_gl "Galizisch (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hebräisch (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Kroatisch (hr)" +${LangFileString} lng_hu "Ungarisch (hu)" +${LangFileString} lng_hy "Armenisch (hy)" +${LangFileString} lng_id "Indonesisch (id)" +${LangFileString} lng_is "Isländisch (is)" +${LangFileString} lng_it "Italienisch (it)" +${LangFileString} lng_ja "Japanisch (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Koreanisch (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in lateinischer Schrift (sr@latin)" +${LangFileString} lng_ks@aran "Kashmiri in erweiterter arabischer Schrift (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari-Schrift (ks@deva)" +${LangFileString} lng_lt "Litauisch (lt)" +${LangFileString} lng_lv "Lettisch (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Mazedonisch (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongolisch (mn)" +${LangFileString} lng_mni "Meitei (mni)" +${LangFileString} lng_mni@beng "Manipuri in bengalischer Schrift (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norwegisch/BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepalesisch (ne)" +${LangFileString} lng_nl "Niderländisch (nl)" +${LangFileString} lng_nn "Norwegisch/Nynorsk (nn)" +${LangFileString} lng_or "Orya (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polnisch (pl)" +${LangFileString} lng_pt "Portugisisch(pt)" +${LangFileString} lng_pt_BR "Portugisisch/Brasilien (pt_BR)" +${LangFileString} lng_ro "Rumänisch (ro)" +${LangFileString} lng_ru "Russisch (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari-Schrift (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari-Schrift (sd@deva)" +${LangFileString} lng_sk "Slovakisch (sk)" +${LangFileString} lng_sl "Slovenisch (sl)" +${LangFileString} lng_sq "Albanisch (sq)" +${LangFileString} lng_sr "Serbisch (sr)" +${LangFileString} lng_sr@latin "Serbisch in lateinischer Schrift (sr@latin)" +${LangFileString} lng_sv "Schwedisch (sv)" +${LangFileString} lng_ta "Tamilisch (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Thai (th)" +${LangFileString} lng_tr "Türkisch (tr)" +${LangFileString} lng_uk "Ukrainisch (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamesisch (vi)" +${LangFileString} lng_zh_CN "Chinesisch/china (zh_CN)" +${LangFileString} lng_zh_TW "Chinesisch/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Greek.nsh b/packaging/win32/languages/Greek.nsh new file mode 100644 index 0000000..2f07e36 --- /dev/null +++ b/packaging/win32/languages/Greek.nsh @@ -0,0 +1,55 @@ +;Language: Ελληνικά (1032) +;By Dimitris Spingos (ΔημήτÏης Σπίγγος) <dmtrs32@gmail.com> +${LangFileString} CaptionDescription "ΕπεξεÏγαστής γÏαφικών κλιμακώσιμων διανυσμάτων Î±Î½Î¿Î¹ÎºÏ„Î¿Ï ÎºÏŽÎ´Î¹ÎºÎ±" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) εκδίδεται με τη γενική άδεια χÏήσης (GPL). Η άδεια παÏÎχεται εδώ μόνο για λόγους πληÏοφόÏησης. $_CLICK" +${LangFileString} DIFFERENT_USER "Το Inkscape εγκαταστάθηκε από το χÏήστη $0.$\r$\nΕάν συνεχίσετε ίσως δεν ολοκληÏώσετε με επιτυχία!$\r$\nΠαÏακαλώ συνδεθείτε ως $0 και ξαναπÏοσπαθήστε." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 Îχει ήδη εγκατασταθεί. $\nΘÎλετε να απεγκαταστήσετε την Ï€ÏοηγοÏμενη Îκδοση Ï€Ïιν την εγκατάσταση $(^Name);" +${LangFileString} OK_CANCEL_DESC "$\n$\nΠατήστε ΕÎΤΑΞΕΙ για συνÎχιση ή πατήστε ΑΚΥΡΩΣΗ για εγκατάλειψη." +${LangFileString} NO_ADMIN "Δεν Îχετε δικαιώματα διαχειÏιστή.$\r$\nΗ εγκατάσταση του Inkscape για όλους τους χÏήστες ίσως να μην ολοκληÏωθεί με επιτυχία.$\r$\nΑποεπιλÎξτε το 'Εγκατάσταση για όλους τους χÏήστες'." +${LangFileString} NOT_SUPPORTED "Το Inkscape δεν Ï„ÏÎχει σε Windows 95/98/ME!$\r$\nΠαÏακαλώ ελÎγξτε τον επίσημο ιστότοπο για λεπτομεÏείς πληÏοφοÏίες." +${LangFileString} Full "ΠλήÏης" +${LangFileString} Optimal "Î’Îλτιστη" +${LangFileString} Minimal "Ελάχιστη" +${LangFileString} Core "ΕπεξεÏγαστής Inkscape SVG (απαιτείται)" +${LangFileString} CoreDesc "ΑÏχεία πυÏήνα Inkscape και dlls" +${LangFileString} GTKFiles "GTK+ Runtime Environment (απαιτείται)" +${LangFileString} GTKFilesDesc "Μια εÏγαλειοθήκη GUI Ï€Î¿Î»Î»Î±Ï€Î»Î¿Ï Î»Î¿Î³Î¹ÏƒÎ¼Î¹ÎºÎ¿Ï, χÏησιμοποιείται από το Inkscape" +${LangFileString} Shortcuts "ΣυντομεÏσεις" +${LangFileString} ShortcutsDesc "ΣυντομεÏσεις για εκκίνηση του Inkscape" +${LangFileString} Alluser "Εγκατάσταση για όλους τους χÏήστες" +${LangFileString} AlluserDesc "Εγκατάσταση αυτής της εφαÏμογής για οποιονδήποτε χÏησιμοποιεί αυτόν τον υπολογιστή (όλοι οι χÏήστες)" +${LangFileString} Desktop "Επιφάνεια εÏγασίας" +${LangFileString} DesktopDesc "ΔημιουÏγία μιας συντόμευσης του Inkscape στην επιφάνεια εÏγασίας" +${LangFileString} Startmenu "ÎœÎµÎ½Î¿Ï ÎναÏξης" +${LangFileString} StartmenuDesc "ΔημιουÏγία εισόδου Î¼ÎµÎ½Î¿Ï ÎναÏξης για το Inkscape" +${LangFileString} Quicklaunch "ΓÏήγοÏη εκκίνηση" +${LangFileString} QuicklaunchDesc "ΔημιουÏγία μιας συντόμευσης του Inkscape στη γÏαμμή εÏγαλείων γÏήγοÏης εκκίνησης" +${LangFileString} SVGWriter "ʼνοιγμα αÏχείων SVG με το Inkscape" +${LangFileString} SVGWriterDesc "Επιλογή του Inkscape ως Ï€ÏοεπιλεγμÎνου επεξεÏγαστή για αÏχεία SVG" +${LangFileString} ContextMenu "Θεματικό μενοÏ" +${LangFileString} ContextMenuDesc "Î Ïοσθήκη του Inkscape στο θεματικό Î¼ÎµÎ½Î¿Ï Î³Î¹Î± αÏχεία SVG" +${LangFileString} DeletePrefs "ΔιαγÏαφή Ï€Ïοσωπικών Ï€Ïοτιμήσεων" +${LangFileString} DeletePrefsDesc "ΔιαγÏαφή Ï€Ïοσωπικών Ï€Ïοτιμήσεων που απÎμειναν από Ï€ÏοηγοÏμενες εγκαταστάσεις" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Î Ïόσθετα αÏχεία" +${LangFileString} AddfilesDesc "Î Ïόσθετα αÏχεία" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "ΠαÏαδείγματα" +${LangFileString} ExamplesDesc "ΠαÏαδείγματα χÏήσης του Inkscape" +${LangFileString} Tutorials "Μαθήματα" +${LangFileString} TutorialsDesc "Μαθήματα χÏήσης του Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "ΜεταφÏάσεις" +${LangFileString} LanguagesDesc "Εγκατάσταση ποικίλων μεταφÏάσεων για το Inkscape" +${LangFileString} UInstOpt "ΕπιλογÎÏ‚ απεγκατάστασης" +${LangFileString} UInstOpt1 "ΠαÏακαλώ διαλÎξτε για Ï€Ïόσθετες επιλογÎÏ‚" +${LangFileString} PurgePrefs "ΔιατήÏηση Ï€Ïοσωπικών Ï€Ïοτιμήσεων" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log δεν βÏÎθηκε!$\r$\nΠαÏακαλώ απεγκαταστήστε καθαÏίζοντας τον κατάλογο $INSTDIR μόνοι σας!" +${LangFileString} FileChanged "Το αÏχείο $filename άλλαξε μετά την εγκατάσταση.$\r$\nΘÎλετε ακόμα να διαγÏάψετε αυτό το αÏχείο;" +${LangFileString} Yes "Îαι" +${LangFileString} AlwaysYes "απαντήστε πάντα Îαι" +${LangFileString} No "Όχι" +${LangFileString} AlwaysNo "απαντήστε πάντα Όχι" diff --git a/packaging/win32/languages/Greek_languageNames.nsh b/packaging/win32/languages/Greek_languageNames.nsh new file mode 100644 index 0000000..a125bdb --- /dev/null +++ b/packaging/win32/languages/Greek_languageNames.nsh @@ -0,0 +1,92 @@ +### Greek (el) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Greek.nsh' +${LangFileString} lng_ar "ΑÏαβικά (ar)" +${LangFileString} lng_as "Ασαμικά (as)" +${LangFileString} lng_az "ΑζÎÏικα (az)" +${LangFileString} lng_be "ΛευκοÏώσικα (be)" +${LangFileString} lng_bg "ΒουλγαÏικά (bg)" +${LangFileString} lng_bn "Μπενγκάλι (bn)" +${LangFileString} lng_bn_BD "Μπεγκάλι/ΜπανγκλαντÎÏ‚ (bn_BD)" +${LangFileString} lng_br "Î’Ïετονικά (br)" +${LangFileString} lng_brx "Μπόντο (brx)" +${LangFileString} lng_ca "Καταλανικά (ca)" +${LangFileString} lng_ca@valencia "Καταλανικά ΒαλÎνθιας (ca@valencia)" +${LangFileString} lng_cs "ΤσÎχικα (cs)" +${LangFileString} lng_da "ΔανÎζικα (da)" +${LangFileString} lng_de "ΓεÏμανικά (de)" +${LangFileString} lng_doi "ÎτόγκÏι (doi)" +${LangFileString} lng_dz "Îτζόγκα (dz)" +${LangFileString} lng_el "Ελληνικά (el)" +${LangFileString} lng_en "Αγγλικά (ΑμεÏικής)" +${LangFileString} lng_en_AU "Αγγλικά/ΑυστÏαλία (en_AU)" +${LangFileString} lng_en_CA "Αγγλικά/Καναδάς (en_CA)" +${LangFileString} lng_en_GB "Αγγλικά/Μεγάλη Î’Ïετανία (en_GB)" +${LangFileString} lng_eo "ΕσπεÏάντο (eo)" +${LangFileString} lng_es "Ισπανικά (es)" +${LangFileString} lng_es_MX "Ισπανικά/ÎœÎξικο (es_MX)" +${LangFileString} lng_et "Εσθονικά (et)" +${LangFileString} lng_eu "Βασκικά (eu)" +${LangFileString} lng_fa "ΦαÏσί (fa)" +${LangFileString} lng_fi "Φινλανδικά (fi)" +${LangFileString} lng_fr "Γαλλικά (fr)" +${LangFileString} lng_ga "ΙÏλανδική (ga)" +${LangFileString} lng_gl "Γαλικία (gl)" +${LangFileString} lng_gu "ΓκουαÏάτι (gu)" +${LangFileString} lng_he "ΕβÏαϊκά (he)" +${LangFileString} lng_hi "Χίντι (hi)" +${LangFileString} lng_hr "ΚÏοατικά (hr)" +${LangFileString} lng_hu "ΟυγγÏικά (hu)" +${LangFileString} lng_hy "ΑÏμÎνικα (hy)" +${LangFileString} lng_id "Ινδονησιακά (id)" +${LangFileString} lng_is "Ισλανδικά (is)" +${LangFileString} lng_it "Ιταλικά (it)" +${LangFileString} lng_ja "ΓιαπωνÎζικα (ja)" +${LangFileString} lng_km "Î§Î¼ÎµÏ (km)" +${LangFileString} lng_kn "Κανάντα (kn)" +${LangFileString} lng_ko "ΚοÏεάτικα (ko)" +${LangFileString} lng_kok "Κονκανικά (kok)" +${LangFileString} lng_kok@latin "Κονκανικά με λατινική γÏαφή (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "ΚασμιÏικά με γÏαφή ντεβάνγκαÏι (ks@deva)" +${LangFileString} lng_lt "Λιθουανικά (lt)" +${LangFileString} lng_lv "Λιθουανικά (lv)" +${LangFileString} lng_mai "Μαιτίλι (mai)" +${LangFileString} lng_mk "Μακεδονικά (mk)" +${LangFileString} lng_ml "Μαγιαλαμικά (ml)" +${LangFileString} lng_mn "Μογγολικά (mn)" +${LangFileString} lng_mni "ΜανιπουÏικά (mni)" +${LangFileString} lng_mni@beng "ΜανιπουÏικά με γÏαφή Βεγγάλης (mni@beng)" +${LangFileString} lng_mr "ΜαÏαθικά (mr)" +${LangFileString} lng_nb "ÎοÏβηγικά BokmÃ¥l (nb)" +${LangFileString} lng_ne "Îεπαλικά (ne)" +${LangFileString} lng_nl "Ολλανδικά (nl)" +${LangFileString} lng_nn "ÎοÏβηγικά Nynorsk (nn)" +${LangFileString} lng_or "Όντια (or)" +${LangFileString} lng_pa "Πουντζάμπι (pa)" +${LangFileString} lng_pl "Πολωνικά (pl)" +${LangFileString} lng_pt "ΠοÏτογαλικά (pt)" +${LangFileString} lng_pt_BR "ΠοÏτογαλικά/Î’Ïαζιλίας (pt_BR)" +${LangFileString} lng_ro "Ρουμανικά (ro)" +${LangFileString} lng_ru "Ρωσικά (ru)" +${LangFileString} lng_rw "ΚινιαÏουάντα (rw)" +${LangFileString} lng_sa "ΣανσκÏιτικά (sa)" +${LangFileString} lng_sat "Σανταλικά (sat)" +${LangFileString} lng_sat@deva "Σανταλικά με γÏαφή ντεβαναγκάÏι (sat@deva)" +${LangFileString} lng_sd "Σίντι (sd)" +${LangFileString} lng_sd@deva "Σίντι με γÏαφή ντεβαναγκάÏι (sd@deva)" +${LangFileString} lng_sk "Σλοβακικά (sk)" +${LangFileString} lng_sl "ΣλοβÎνικα (sl)" +${LangFileString} lng_sq "Αλβανικά (sq)" +${LangFileString} lng_sr "ΣεÏβικά/Λατινικά (sr)" +${LangFileString} lng_sr@latin "ΣεÏβικά σε λατινική γÏαφή (sr@latin)" +${LangFileString} lng_sv "Σουηδικά (sv)" +${LangFileString} lng_ta "Ταμίλ (ta)" +${LangFileString} lng_te "ΤελοÏγκου (te)" +${LangFileString} lng_th "Μπατ Ταϊλάνδης (th)" +${LangFileString} lng_tr "ΤουÏκικά (tr)" +${LangFileString} lng_uk "ΟυκÏανικά (uk)" +${LangFileString} lng_ur "ΟÏÏντου (ur)" +${LangFileString} lng_vi "ΒιετναμÎζικα (vi)" +${LangFileString} lng_zh_CN "ΚινÎζικα/Κίνα (zh_CN)" +${LangFileString} lng_zh_TW "ΚινÎζικα/Ταϊβάν (zh_TW)" diff --git a/packaging/win32/languages/Hebrew.nsh b/packaging/win32/languages/Hebrew.nsh new file mode 100644 index 0000000..ecc94c3 --- /dev/null +++ b/packaging/win32/languages/Hebrew.nsh @@ -0,0 +1,55 @@ +;Language: Hebrew (1037) +;By Yaron Shahrabani <sh.yaron@gmail.com> +${LangFileString} CaptionDescription "עורך גרפיקת ×•×§×˜×•×¨×™× × ×ž×ª×—×ª בקוד פתוח" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) מופצת תחת ×ª× ××™ הרישיון הציבורי הכללי של GNU (GPL). הרישיון מסופק ×›×ן לצורכי מידע בלבד. $_CLICK" +${LangFileString} DIFFERENT_USER "××™× ×§×¡×§×™×™×¤ ×”×•×ª×§× ×” על־ידי המשתמש $0.$\r$\n×× ×”×”×ª×§× ×” תימשך יתכן ×©×œ× ×ª×•×©×œ× ×›×¨×וי!$\r$\n× × ×œ×”×™×›× ×¡ בתור $0 ×•×œ× ×¡×•×ª שוב." +${LangFileString} WANT_UNINSTALL_BEFORE "×”×ª×›× ×™×ª $R1 כבר ×”×•×ª×§× ×”. $\n×”×× ×œ×”×¡×™×¨ ×ת הגרסה הקודמת ×‘×˜×¨× ×”×ª×§× ×ª $(^Name)?" +${LangFileString} OK_CANCEL_DESC "$\n$\nיש ללחוץ על ×ישור כדי להמשיך ×ו על ביטול כדי לצ×ת." +${LangFileString} NO_ADMIN "×ין לך הרש×ות × ×™×”×•×œ×™×•×ª.$\r$\n×”×ª×§× ×ª ××™× ×§×¡×§×™×™×¤ לכל ×”×ž×©×ª×ž×©×™× ×œ× ×ª×•×©×œ× ×›×¨×וי.$\r$\nיש לבטל ×ת הסימון שליד ×”×פשרות '×”×ª×§× ×” לכל המשתמשי×'." +${LangFileString} NOT_SUPPORTED "ידוע ×›×™ ל××™× ×§×¡×§×™×™×¤ יש ×פשרות לפעול על גבי Windows 95/98/ME!$\r$\n× × ×œ×”×¡×ª×›×œ ב×תר הרשמי לקבלת ×¤×¨×˜×™× × ×•×¡×¤×™×." +${LangFileString} Full "מל××”" +${LangFileString} Optimal "מיטבית" +${LangFileString} Minimal "×ž×™× ×™×ž×œ×™×ª" +${LangFileString} Core "עורך ×”Ö¾SVN ××™× ×§×¡×§×™×™×¤ (× ×“×¨×©)" +${LangFileString} CoreDesc "קובצי ליבה ו־dlls של ××™× ×§×¡×§×™×™×¤" +${LangFileString} GTKFiles "סביבת ההפעלה GTK+ (× ×“×¨×©×ª)" +${LangFileString} GTKFilesDesc "ערכת ×ž× ×©×§ גרפי למגוון פלטפורמות, בשימוש ××™× ×§×¡×§×™×™×¤" +${LangFileString} Shortcuts "קיצורי דרך" +${LangFileString} ShortcutsDesc "קיצורי דרך להפעלת ××™× ×§×¡×§×™×™×¤" +${LangFileString} Alluser "×”×ª×§× ×” עבור כל המשתמשי×" +${LangFileString} AlluserDesc "×”×ª×§× ×ª ×™×™×©×•× ×–×” לטובת כל מי שמשתמש במחשב (כל המשתמשי×)" +${LangFileString} Desktop "שולחן עבודה" +${LangFileString} DesktopDesc "יצירת קיצור דרך ל××™× ×§×¡×§×™×™×¤ על שולחן העבודה" +${LangFileString} Startmenu "תפריט התחלה" +${LangFileString} StartmenuDesc "יצירת רשומה ל××™× ×§×¡×§×™×™×¤ בתפריט ההתחלה" +${LangFileString} Quicklaunch "הפעלה מהירה" +${LangFileString} QuicklaunchDesc "יצירת קיצור דרך ל××™× ×§×¡×§×™×™×¤ בסרגל ההפעלה המהירה" +${LangFileString} SVGWriter "פתיחת קובצי SVG ×¢× ××™× ×§×¡×§×™×™×¤" +${LangFileString} SVGWriterDesc "בחירת ××™× ×§×¡×§×™×™×¤ כעורך בררת המחדל לקובצי SVG" +${LangFileString} ContextMenu "תפריט הקשר" +${LangFileString} ContextMenuDesc "הוספת ××™× ×§×¡×§×™×™×¤ לתפריט ההקשר של קובצי SVG" +${LangFileString} DeletePrefs "מחיקת העדפות ×ישיות" +${LangFileString} DeletePrefsDesc "מחיקת שיירי העדפות ×ישיות ×ž×”×ª×§× ×•×ª קודמות" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "×§×‘×¦×™× × ×•×¡×¤×™×" +${LangFileString} AddfilesDesc "×§×‘×¦×™× × ×•×¡×¤×™×" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "דוגמ×ות" +${LangFileString} ExamplesDesc "דוגמ×ות לשימוש ב××™× ×§×¡×§×™×™×¤" +${LangFileString} Tutorials "מדריכי×" +${LangFileString} TutorialsDesc "×ž×“×¨×™×›×™× ×œ×©×™×ž×•×© ב××™× ×§×¡×§×™×™×¤" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "תרגומי×" +${LangFileString} LanguagesDesc "×”×ª×§× ×ª מגוון ×ª×¨×’×•×ž×™× ×œ××™× ×§×¡×§×™×™×¤" +${LangFileString} UInstOpt "×פשרויות הסרה" +${LangFileString} UInstOpt1 "× × ×œ×‘×—×•×¨ מהרשימה כדי להשתמש ב×פשרויות × ×•×¡×¤×•×ª" +${LangFileString} PurgePrefs "שמירת ההעדפות ×”×ישיות" +${LangFileString} UninstallLogNotFound "הקובץ $INSTDIR\uninstall.log ×œ× × ×ž×¦×!$\r$\n× × ×œ×”×¡×™×¨ על ידי ×¤×™× ×•×™ התיקייה $INSTDIR בעצמך!" +${LangFileString} FileChanged "הקובץ $filename ×”×©×ª× ×” ל×חר ×”×”×ª×§× ×”.$\r$\n×”×× ×œ×ž×—×•×§ ×ת הקובץ בכל ×–×ת?" +${LangFileString} Yes "כן" +${LangFileString} AlwaysYes "תמיד ×œ×¢× ×•×ª כן" +${LangFileString} No "ל×" +${LangFileString} AlwaysNo "תמיד ×œ×¢× ×•×ª ל×" diff --git a/packaging/win32/languages/Hebrew_languageNames.nsh b/packaging/win32/languages/Hebrew_languageNames.nsh new file mode 100644 index 0000000..86eabd8 --- /dev/null +++ b/packaging/win32/languages/Hebrew_languageNames.nsh @@ -0,0 +1,92 @@ +### Hebrew (he) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Hebrew.nsh' +${LangFileString} lng_ar "ערבית (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "××–×¨×‘×™×™×’×³× ×™×ª (az)" +${LangFileString} lng_be "בלרוסית (be)" +${LangFileString} lng_bg "בולגרית (bg)" +${LangFileString} lng_bn "×‘× ×’×לית (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "ברטון (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "×§×˜×œ×•× ×™×ª (ca)" +${LangFileString} lng_ca@valencia "×§×˜×œ×•× ×™×ª ולסי×× ×™×ª (ca@valencia)" +${LangFileString} lng_cs "צ׳כית (cs)" +${LangFileString} lng_da "×“× ×™×ª (da)" +${LangFileString} lng_de "×’×¨×ž× ×™×ª (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "×“×–×•× ×§×” (dz)" +${LangFileString} lng_el "×™×•×•× ×™×ª (el)" +${LangFileString} lng_en "×× ×’×œ×™×ª (en)" +${LangFileString} lng_en_AU "×× ×’×œ×™×ª/×וסטרליה (en_AU)" +${LangFileString} lng_en_CA "×× ×’×œ×™×ª/×§× ×“×” (en_CA)" +${LangFileString} lng_en_GB "×× ×’×œ×™×ª/×× ×’×œ×™×” (en_GB)" +${LangFileString} lng_eo "××¡×¤×¨× ×˜×• (eo)" +${LangFileString} lng_es "ספרדית (es)" +${LangFileString} lng_es_MX "ספרדית/מקסיקו (es_MX)" +${LangFileString} lng_et "××¡×˜×•× ×™×ª (et)" +${LangFileString} lng_eu "בסקית (eu)" +${LangFileString} lng_fa "פרסית (fa)" +${LangFileString} lng_fi "×¤×™× ×™×ª (fi)" +${LangFileString} lng_fr "צרפתית (fr)" +${LangFileString} lng_ga "×ירית (ga)" +${LangFileString} lng_gl "גליסית (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "עברית (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "קרו×טית (hr)" +${LangFileString} lng_hu "×”×•× ×’×¨×™×ª (hu)" +${LangFileString} lng_hy "××¨×ž× ×™×ª (hy)" +${LangFileString} lng_id "××™× ×“×•× ×–×™×ª (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "×יטלקית (it)" +${LangFileString} lng_ja "×™×¤× ×™×ª (ja)" +${LangFileString} lng_km "ח׳מר (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "קורי×× ×™×ª (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "ליט×ית (lt)" +${LangFileString} lng_lv "Latvian (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "×ž×§×“×•× ×™×ª (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "×ž×•× ×’×•×œ×™×ª (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "× ×•×¨×‘×’×™×ª בוקמול (nb)" +${LangFileString} lng_ne "× ×¤×לית (ne)" +${LangFileString} lng_nl "×”×•×œ× ×“×™×ª (nl)" +${LangFileString} lng_nn "× ×•×¨×‘×’×™×ª × ×™× ×•×¨×©×§ (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "×¤× ×’×³×‘×™×ª (pa)" +${LangFileString} lng_pl "×¤×•×œ× ×™×ª (pl)" +${LangFileString} lng_pt "פורטוגזית (pt)" +${LangFileString} lng_pt_BR "פורטוגזית/ברזיל (pt_BR)" +${LangFileString} lng_ro "×¨×•×ž× ×™×ª (ro)" +${LangFileString} lng_ru "רוסית (ru)" +${LangFileString} lng_rw "×§×™× ×™××¨×•×•× ×“×” (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "סלובקית (sk)" +${LangFileString} lng_sl "×¡×œ×•×‘× ×™×ª (sl)" +${LangFileString} lng_sq "××œ×‘× ×™×ª (sq)" +${LangFileString} lng_sr "סרבית (sr)" +${LangFileString} lng_sr@latin "סרבית בכתב ×œ×˜×™× ×™ (sr@latin)" +${LangFileString} lng_sv "שבדית (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "ת××™×œ× ×“×™×ª (th)" +${LangFileString} lng_tr "טורקית (tr)" +${LangFileString} lng_uk "×וקר××™× ×™×ª (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "×•×™×™×˜× ×מית (vi)" +${LangFileString} lng_zh_CN "×¡×™× ×™×ª/סין (zh_CN)" +${LangFileString} lng_zh_TW "×¡×™× ×™×ª/טייוו×ן (zh_TW)" diff --git a/packaging/win32/languages/Hungarian.nsh b/packaging/win32/languages/Hungarian.nsh new file mode 100644 index 0000000..caf242e --- /dev/null +++ b/packaging/win32/languages/Hungarian.nsh @@ -0,0 +1,55 @@ +;Language: Hungarian (1038) +;By Gellért Gyuris <bubu@ujevangelizacio.hu> +${LangFileString} CaptionDescription "NyÃlt méretezhetÅ‘ vektorgrafika szerkesztÅ‘" +${LangFileString} LICENSE_BOTTOM_TEXT "Az $(^Name) a GNU General Public License (GPL) alapján kerül kiadásra. A licenc csupán tájékoztató jelleggel áll itt. $_CLICK" +${LangFileString} DIFFERENT_USER "Az Inkscape-et eredetileg ez a felhasználó telepÃtette: $0.$\r$\nFolytatás esetén várhatóan nem lesz sikeres a telepÃtés.$\r$\nLépjen be ezen felhasználóval és próbálja meg újra a telepÃtést: $0!" +${LangFileString} WANT_UNINSTALL_BEFORE "Az $R1 már telepÃtve van.$\nLegyen eltávolÃtva az elÅ‘zÅ‘ verzió az $(^Name) telepÃtésének megkezdése elÅ‘tt?" +${LangFileString} OK_CANCEL_DESC "$\n$\nAz OK gombra kattintva folytatódik, a Mégse gombbal pedig megszakad a telepÃtési folyamat." +${LangFileString} NO_ADMIN "Nincsenek rendszergazdai jogai.$\r$\nAz Inkscape telepÃtése minden felhasználó számára várhatóan nem lesz sikeres$\r$\nTörölje a „TelepÃtés minden felhasználó számára†opciót!" +${LangFileString} NOT_SUPPORTED "Az Inkscape-rÅ‘l közismert, hogy nem fut Windows 95/98/ME rendszereken.$\r$\nEllenÅ‘rizze a hivatalos weboldalon a részleteket!" +${LangFileString} Full "Teljes" +${LangFileString} Optimal "Optimális" +${LangFileString} Minimal "Minimális" +${LangFileString} Core "Inkscape SVG-szerkesztÅ‘ (szükséges)" +${LangFileString} CoreDesc "Az Inkscape központi fájljai és DLL-jei" +${LangFileString} GTKFiles "GTK+ futásidejű környezet (szükséges)" +${LangFileString} GTKFilesDesc "Az Inkscape által alkalmazott többplatformos grafikus felhasználói felület-eszközkészlet" +${LangFileString} Shortcuts "Parancsikonok" +${LangFileString} ShortcutsDesc "Parancsikonok az Inkscape indÃtásához" +${LangFileString} Alluser "TelepÃtés minden felhasználó számára" +${LangFileString} AlluserDesc "A program telepÃtése a számÃtógép összes felhasználója számára (minden felhasználó)" +${LangFileString} Desktop "Asztal" +${LangFileString} DesktopDesc "Parancsikon létrehozása az asztalon az Inkscape számára" +${LangFileString} Startmenu "Start menü" +${LangFileString} StartmenuDesc "Start menü bejegyzés létrehozása az Inkscape számára" +${LangFileString} Quicklaunch "GyorsindÃtás" +${LangFileString} QuicklaunchDesc "Parancsikon létrehozása az Inkscape számára a gyorsindÃtás eszköztáron" +${LangFileString} SVGWriter "SVG-fájlok megnyitása Inkscape-pel" +${LangFileString} SVGWriterDesc "Az Iskscape kijelölése az SVG-fájlok alapértelmezett szerkesztÅ‘jévé" +${LangFileString} ContextMenu "Helyi menü" +${LangFileString} ContextMenuDesc "Az Inkscape hozzáadása az SVG-fájlok helyi menüjébe" +${LangFileString} DeletePrefs "Személyes beállÃtások törlése" +${LangFileString} DeletePrefsDesc "Az elÅ‘zÅ‘ telepÃtésbÅ‘l megmaradt személyes beállÃtások törlése" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "Az Inkscape kiterjesztések futtatásához szükséges Python programozási nyelv és Python modulok értelmezÅ‘je." +${LangFileString} Addfiles "További fájlok" +${LangFileString} AddfilesDesc "További fájlok" +${LangFileString} Extensions "Kiterjesztések" +${LangFileString} ExtensionsDesc "Kiterjesztések az Inkscape-hez (beleértve több import- és export beépülÅ‘t)" +${LangFileString} Examples "Példák" +${LangFileString} ExamplesDesc "Példák az Inkscape-rÅ‘l" +${LangFileString} Tutorials "IsmertetÅ‘k" +${LangFileString} TutorialsDesc "IsmertetÅ‘k az Inkscape használatáról" +${LangFileString} Dictionaries "Szótárak" +${LangFileString} DictionariesDesc "Szótár néhány általános nyelvhez az Inkscape-ben való helyesÃrás-ellenÅ‘rzéshez" +${LangFileString} Languages "FordÃtások" +${LangFileString} LanguagesDesc "FordÃtások és honosÃtott tartalmak az Inkscape-hez" +${LangFileString} UInstOpt "EltávolÃtási beállÃtások" +${LangFileString} UInstOpt1 "További beállÃtásokat lehet megadni" +${LangFileString} PurgePrefs "Személyes beállÃtások megtartása" +${LangFileString} UninstallLogNotFound "Nem található: $INSTDIR\uninstall.log.$\r$\nAz eltávolÃtás a mappa manuális törlésével hajtható csak végre: $INSTDIR." +${LangFileString} FileChanged "A fájl megváltozott a telepÃtés óta: $filename.$\r$\nValóban törölhetÅ‘ a fájl?" +${LangFileString} Yes "OK" +${LangFileString} AlwaysYes "mindig „igen†a válasz" +${LangFileString} No "Nem" +${LangFileString} AlwaysNo "mindig „nem†a válasz" diff --git a/packaging/win32/languages/Hungarian_languageNames.nsh b/packaging/win32/languages/Hungarian_languageNames.nsh new file mode 100644 index 0000000..bc3022e --- /dev/null +++ b/packaging/win32/languages/Hungarian_languageNames.nsh @@ -0,0 +1,92 @@ +### Hungarian (hu) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Hungarian.nsh' +${LangFileString} lng_ar "Arab (ar)" +${LangFileString} lng_as "Asszámi (as)" +${LangFileString} lng_az "Azerbajdzsán (az)" +${LangFileString} lng_be "Belorusz (be)" +${LangFileString} lng_bg "Bolgár (bg)" +${LangFileString} lng_bn "Bengáli (bn)" +${LangFileString} lng_bn_BD "Bengáli/Banglades (bn_BD)" +${LangFileString} lng_br "Breton (br)" +${LangFileString} lng_brx "Bodó (brx)" +${LangFileString} lng_ca "Katalán (ca)" +${LangFileString} lng_ca@valencia "Valenciai katalán (ca@valencia)" +${LangFileString} lng_cs "Cseh (cs)" +${LangFileString} lng_da "Dán (da)" +${LangFileString} lng_de "Német (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongha (dz)" +${LangFileString} lng_el "Görög (el)" +${LangFileString} lng_en "Angol (en)" +${LangFileString} lng_en_AU "Angol/Ausztrália (en_AU)" +${LangFileString} lng_en_CA "Angol/Kanada (en_CA)" +${LangFileString} lng_en_GB "Angol/Nagy-Britannia (en_GB)" +${LangFileString} lng_eo "Eszperantó (eo)" +${LangFileString} lng_es "Spanyol (es)" +${LangFileString} lng_es_MX "Spanyol/Mexikó (es_MX)" +${LangFileString} lng_et "Észt (et)" +${LangFileString} lng_eu "Baszk (eu)" +${LangFileString} lng_fa "Fárszi, perzsa (fa)" +${LangFileString} lng_fi "Finn (fi)" +${LangFileString} lng_fr "Francia (fr)" +${LangFileString} lng_ga "Ãr (ga)" +${LangFileString} lng_gl "GalÃciai (gl)" +${LangFileString} lng_gu "Gudzsaráti (gu)" +${LangFileString} lng_he "Héber (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Horvát (hr)" +${LangFileString} lng_hu "Magyar (hu)" +${LangFileString} lng_hy "Örmény (hy)" +${LangFileString} lng_id "Indonéz (id)" +${LangFileString} lng_is "Izlandi (is)" +${LangFileString} lng_it "Olasz (it)" +${LangFileString} lng_ja "Japán (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Koreai (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani latin Ãrással (kok@latin)" +${LangFileString} lng_ks@aran "KasmÃr perzsa-arab Ãrással (ks@aran)" +${LangFileString} lng_ks@deva "KasmÃr dévanágari Ãrással (ks@deva)" +${LangFileString} lng_lt "Litván (lt)" +${LangFileString} lng_lv "Lett (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedón (mk)" +${LangFileString} lng_ml "Malajálam (ml)" +${LangFileString} lng_mn "Mongol (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri bengáli Ãrással (mni@beng)" +${LangFileString} lng_mr "Maráthi (mr)" +${LangFileString} lng_nb "Norvég bokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepáli (ne)" +${LangFileString} lng_nl "Holland (nl)" +${LangFileString} lng_nn "Norvég nynorsk (nn)" +${LangFileString} lng_or "Orija (or)" +${LangFileString} lng_pa "Pandzsábi (pa)" +${LangFileString} lng_pl "Lengyel (pl)" +${LangFileString} lng_pt "Portugál (pt)" +${LangFileString} lng_pt_BR "Portugál/BrazÃlia (pt_BR)" +${LangFileString} lng_ro "Román (ro)" +${LangFileString} lng_ru "Orosz (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Szanszkrit (sa)" +${LangFileString} lng_sat "Szantáli (sat)" +${LangFileString} lng_sat@deva "Szantáli dévanágari Ãrással (sat@deva)" +${LangFileString} lng_sd "Szindhi (sd)" +${LangFileString} lng_sd@deva "Szindhi dévanágari Ãrással (sd@deva)" +${LangFileString} lng_sk "Szlovák (sk)" +${LangFileString} lng_sl "Szlovén (sl)" +${LangFileString} lng_sq "Albán (sq)" +${LangFileString} lng_sr "Szerb (sr)" +${LangFileString} lng_sr@latin "Szerb - latin Ãrásmóddal (sr@latin)" +${LangFileString} lng_sv "Svéd (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Thai (th)" +${LangFileString} lng_tr "Török (tr)" +${LangFileString} lng_uk "Ukrán (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnami (vi)" +${LangFileString} lng_zh_CN "KÃnai/KÃna (zh_CN)" +${LangFileString} lng_zh_TW "KÃnai/Tajvan (zh_TW)" diff --git a/packaging/win32/languages/Icelandic.nsh b/packaging/win32/languages/Icelandic.nsh new file mode 100644 index 0000000..f5f3bb2 --- /dev/null +++ b/packaging/win32/languages/Icelandic.nsh @@ -0,0 +1,56 @@ +;Language: Icelandic (1039) +;By Adib Taraben <theadib@gmail.com> +;Translation by Sveinn à Felli <sv1@fellsnet.is> +${LangFileString} CaptionDescription "Opinð og frjálst teikniforrit fyrir vigramyndir (Scalable Vector Graphics)" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) er gefið út með GNU General Public License (GPL) notkunarleyfinu. Notkunarleyfið er haft hér með eingöngu til upplýsingar. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape hefur þegar verið sett upp af notandanum $0.$\r$\nEf þú heldur áfram gæti verið að uppsetningin heppnaðist ekki!$\r$\nSkráðu þig inn sem $0 og reyndu aftur." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 hefur þegar verið sett upp. $\nViltu fjarlægja fyrri útgáfuna áður en þú setur upp $(^Name)?" +${LangFileString} OK_CANCEL_DESC "$\n$\nÃttu á 'à lagi / OK' til að halda áfram eða á 'Hætta við / CANCEL' til að hætta við." +${LangFileString} NO_ADMIN "Þú ert ekki með kerfisstjóraréttindi.$\r$\nUppsetning Inkscape fyrir alla notendur er ekki lÃkleg til að heppnast.$\r$\nTaktu hakið úr 'Setja upp fyrir alla notendur' valkostinum." +${LangFileString} NOT_SUPPORTED "Inkscape keyrir ekki à Windows 95/98/ME!$\r$\nSkoðaðu opinberu heimasÃðuna til að sjá Ãtarlegri upplýsingar." +${LangFileString} Full "Full" +${LangFileString} Optimal "Bestuð" +${LangFileString} Minimal "Lágmarks" +${LangFileString} Core "Inkscape SVG ritillinn (krafist)" +${LangFileString} CoreDesc "Kjarni Inkscape skráa og dll aðgerðasöfn" +${LangFileString} GTKFiles "GTK+ keyrsluumhverfi (krafist)" +${LangFileString} GTKFilesDesc "Fjölkerfa myndrænt GUI tólasett, notað af Inkscape" +${LangFileString} Shortcuts "Flýtileiðir" +${LangFileString} ShortcutsDesc "Flýtileiðir til að ræsa Inkscape" +${LangFileString} Alluser "Setja upp fyrir alla notendur" +${LangFileString} AlluserDesc "Setja þetta forrit upp fyrir alla sem nota þessa tölvu (allir notendur)" +${LangFileString} Desktop "Skjáborð" +${LangFileString} DesktopDesc "Búa til flýtileið fyrir Inkscape á skjáborðinu (Desktop)" +${LangFileString} Startmenu "Aðalvalmynd" +${LangFileString} StartmenuDesc "Búa til færslu à aðalvalmynd (Start Menu) fyrir Inkscape" +${LangFileString} Quicklaunch "Flýtiræsing" +${LangFileString} QuicklaunchDesc "Búa til flýtileið fyrir Inkscape á flýtiræsistikunni (Quick Launch)" +${LangFileString} SVGWriter "Opna SVG skrár með Inkscape" +${LangFileString} SVGWriterDesc "Velja Inkscape sem sjálfgefið forrit til að vinna með SVG skrár" +${LangFileString} ContextMenu "Samhengisvalmynd" +${LangFileString} ContextMenuDesc "Bæta Inkscape inn à samhengisvalmynd (Context Menu) fyrir SVG skrár" +${LangFileString} DeletePrefs "Eyða persónulegum kjörstillingum" +${LangFileString} DeletePrefsDesc "Eyða persónulegum kjörstillingum sem hafa orðið eftir frá fyrri uppsetningum" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Viðbótarskrár" +${LangFileString} AddfilesDesc "Viðbótarskrár" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Sýnidæmi" +${LangFileString} ExamplesDesc "Sýnidæmi um notkun Inkscape" +${LangFileString} Tutorials "Kennsluefni" +${LangFileString} TutorialsDesc "Kennsluefni fyrir notkun Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Þýðingar" +${LangFileString} LanguagesDesc "Setja inn ýmsar þýðingar á Inkscape" +${LangFileString} UInstOpt "Valkostir við fjarlægingu" +${LangFileString} UInstOpt1 "Ãkveddu hvað þú vilt gera fyrir þessa aukavalkosti" +${LangFileString} PurgePrefs "Halda persónulegum kjörstillingum" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log fannst ekki!$\r$\nFjarlægðu forritið með þvà að hreinsa út úr möppunni $INSTDIR yourself!" +${LangFileString} FileChanged "Skráin $filename hefur breyst eftir uppsetningu.$\r$\nViltu samt eyða þessari skrá?" +${LangFileString} Yes "Já" +${LangFileString} AlwaysYes "alltaf svara Já" +${LangFileString} No "Nei" +${LangFileString} AlwaysNo "alltaf svara Nei" diff --git a/packaging/win32/languages/Icelandic_languageNames.nsh b/packaging/win32/languages/Icelandic_languageNames.nsh new file mode 100644 index 0000000..2fc25d4 --- /dev/null +++ b/packaging/win32/languages/Icelandic_languageNames.nsh @@ -0,0 +1,92 @@ +### Icelandic (is) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Icelandic.nsh' +${LangFileString} lng_ar "ArabÃska (ar)" +${LangFileString} lng_as "AssamÃska (as)" +${LangFileString} lng_az "Azerbaijanska (az)" +${LangFileString} lng_be "HvÃtrússneska (be)" +${LangFileString} lng_bg "Búlgarska (bg)" +${LangFileString} lng_bn "Bengalska (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "Bretónska (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Katalónska (ca)" +${LangFileString} lng_ca@valencia "ValensÃsk-katalónska (ca@valencia)" +${LangFileString} lng_cs "Tékkneska (cs)" +${LangFileString} lng_da "Danska (da)" +${LangFileString} lng_de "Þýska (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "GrÃska (el)" +${LangFileString} lng_en "Enska (en)" +${LangFileString} lng_en_AU "Enska/ÃstralÃa (en_AU)" +${LangFileString} lng_en_CA "Enska/Kanada (en_CA)" +${LangFileString} lng_en_GB "Enska/Stóra Bretland (en_GB)" +${LangFileString} lng_eo "Esperantó (eo)" +${LangFileString} lng_es "Spænska (es)" +${LangFileString} lng_es_MX "Spænska/MexÃkó (es_MX)" +${LangFileString} lng_et "Eistneska (et)" +${LangFileString} lng_eu "Baskneska (eu)" +${LangFileString} lng_fa "Farsà (fa)" +${LangFileString} lng_fi "Finnska (fi)" +${LangFileString} lng_fr "Franska (fr)" +${LangFileString} lng_ga "Ãrska (ga)" +${LangFileString} lng_gl "GalisÃska (gl)" +${LangFileString} lng_gu "Gújaratà (gu)" +${LangFileString} lng_he "Hebreska (he)" +${LangFileString} lng_hi "Hindà (hi)" +${LangFileString} lng_hr "KróatÃska (hr)" +${LangFileString} lng_hu "Ungverska (hu)" +${LangFileString} lng_hy "Armenska (hy)" +${LangFileString} lng_id "IndónesÃska (id)" +${LangFileString} lng_is "Ãslenska (is)" +${LangFileString} lng_it "Ãtalska (it)" +${LangFileString} lng_ja "Japanska (ja)" +${LangFileString} lng_km "KhmerÃska (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Kóreska (ko)" +${LangFileString} lng_kok "Konkanà (kok)" +${LangFileString} lng_kok@latin "Konkanà með latneskt letur (kok@latin)" +${LangFileString} lng_ks@aran "KashmÃrska með Peso-ArabÃsku letri (ks@aran)" +${LangFileString} lng_ks@deva "KashmÃrska með Devanagarà letur (ks@deva)" +${LangFileString} lng_lt "LitháÃska (lt)" +${LangFileString} lng_lv "Lettlenska (lv)" +${LangFileString} lng_mai "Maithilà (mai)" +${LangFileString} lng_mk "Makedónska (mk)" +${LangFileString} lng_ml "MalaÃalam (ml)" +${LangFileString} lng_mn "Mongólska (mn)" +${LangFileString} lng_mni "Manipurà (mni)" +${LangFileString} lng_mni@beng "Manipurà með Bengalà letri (mni@beng)" +${LangFileString} lng_mr "Marathà (mr)" +${LangFileString} lng_nb "Norskt bókmál (nb)" +${LangFileString} lng_ne "Nepalska (ne)" +${LangFileString} lng_nl "Hollenska (nl)" +${LangFileString} lng_nn "Nýnorska (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Pólska (pl)" +${LangFileString} lng_pt "Portúgalska (pt)" +${LangFileString} lng_pt_BR "Portúgalska/BrasilÃa (pt_BR)" +${LangFileString} lng_ro "Rúmenska (ro)" +${LangFileString} lng_ru "Rússneska (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "SanskrÃt (sa)" +${LangFileString} lng_sat "Santalà (sat)" +${LangFileString} lng_sat@deva "Santalà með Devanagarà letur (sd@deva)" +${LangFileString} lng_sd "Shindà (sd)" +${LangFileString} lng_sd@deva "Sindhà með Devanagarà letur (sd@deva)" +${LangFileString} lng_sk "SlóvakÃska (sk)" +${LangFileString} lng_sl "Slóvenska (sl)" +${LangFileString} lng_sq "Albanska (sq)" +${LangFileString} lng_sr "Serbneska (sr)" +${LangFileString} lng_sr@latin "Serbneska með latneskt letur (sr@latin)" +${LangFileString} lng_sv "Sænska (sv)" +${LangFileString} lng_ta "TamÃlska (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Tælenska (th)" +${LangFileString} lng_tr "Tyrkneska (tr)" +${LangFileString} lng_uk "ÚkraÃnska (uk)" +${LangFileString} lng_ur "Úrdú (ur)" +${LangFileString} lng_vi "VÃetnamska (vi)" +${LangFileString} lng_zh_CN "KÃnverska/KÃna (zh_CN)" +${LangFileString} lng_zh_TW "KÃnverska/TaÃvan (zh_TW)" diff --git a/packaging/win32/languages/Indonesian.nsh b/packaging/win32/languages/Indonesian.nsh new file mode 100644 index 0000000..55f577d --- /dev/null +++ b/packaging/win32/languages/Indonesian.nsh @@ -0,0 +1,55 @@ +;Language: English (1033) +;By Adib Taraben <theadib@gmail.com> +${LangFileString} CaptionDescription "Open Source Scalable Vector Graphics Editor" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) dilepas dibawah GNU General Public License (GPL). Lisensi ditampilkan disini hanya untuk keperluan informasi saja. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape telah dipasang oleh pengguna $0.$\r$\nIf jika anda melanjutkan, ada kemungkinan anda tidak bisa memasangnya dengan sukses!$\r$\nSilahkan masuk sebagai $0 dan mencoba lagi." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 sudah terpasang. $\nApakah anda ingin melepas versi sebelumnya sebelum memasang $(^Name)?" +${LangFileString} OK_CANCEL_DESC "$\n$\nTekan OK untuk melanjutkan atau tekan CANCEL untuk membatalkan." +${LangFileString} NO_ADMIN "Anda tidak memiliki hak Administrator.$\r$\nMemasang Inkscape untuk semua pengguna kemungkinan tidak berhasil.$\r$\nLepas centang pada pilihan 'Pasang untuk semua pengguna'." +${LangFileString} NOT_SUPPORTED "Inkscape tidak bisa dijalankan pada Windows 95/98/ME!$\r$\nSilahkan lihat situs resmi untuk informasi lebih detail." +${LangFileString} Full "Full" +${LangFileString} Optimal "Optimal" +${LangFileString} Minimal "Minimal" +${LangFileString} Core "Editor SVG Inkscape (dibutuhkan)" +${LangFileString} CoreDesc "Berkas inti Inkscape dan dllnya" +${LangFileString} GTKFiles "GTK+ Runtime Environment (dibutuhkan)" +${LangFileString} GTKFilesDesc "GUI toolkit multi-platform, digunakan oleh Inkscape" +${LangFileString} Shortcuts "Shortcut" +${LangFileString} ShortcutsDesc "Shortcut untuk memulai Inkscape" +${LangFileString} Alluser "Pasang untuk semua pengguna" +${LangFileString} AlluserDesc "Pasang aplikasi ini untuk semua pengguna komputer ini" +${LangFileString} Desktop "Desktop" +${LangFileString} DesktopDesc "Buat shortcut Inkscape di Desktop" +${LangFileString} Startmenu "Start Menu" +${LangFileString} StartmenuDesc "Buat pilihan Start Menu untuk Inkscape" +${LangFileString} Quicklaunch "Quick Launch" +${LangFileString} QuicklaunchDesc "Buat shortcut Inkscape di toolbar Quick Launch" +${LangFileString} SVGWriter "Buka berkas SVG menggunakan Inkscape" +${LangFileString} SVGWriterDesc "Pilih Inkscape sebagai editor utama berkas SVG" +${LangFileString} ContextMenu "Context Menu" +${LangFileString} ContextMenuDesc "Tambahkan Inkscape kedalam Context Menu untuk berkas SVG" +${LangFileString} DeletePrefs "Hapus preferensi personal" +${LangFileString} DeletePrefsDesc "Hapus preferensi personal dari pemasangan sebelumnya" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Berkas-berkas tambahan" +${LangFileString} AddfilesDesc "Berkas-berkas tambahan" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Contoh" +${LangFileString} ExamplesDesc "Contoh menggunakan Inkscape" +${LangFileString} Tutorials "Tutorial" +${LangFileString} TutorialsDesc "Tutorials menggunakan Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Terjemahan" +${LangFileString} LanguagesDesc "Pasang macam-macam terjemahan untuk Inkscape" +${LangFileString} UInstOpt "Pilihan Pelepasan" +${LangFileString} UInstOpt1 "Silahkan pilih pilihan tambahan" +${LangFileString} PurgePrefs "Simpal preferensi personal" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log tidak ditemukan!$\r$\nSilahkan melepas dengan menghapus direktori $INSTDIR!" +${LangFileString} FileChanged "Berkas $filename telah berubah setelah pemasangan.$\r$\nApa anda masih ingin menghapus berkas tersebut?" +${LangFileString} Yes "Ya" +${LangFileString} AlwaysYes "selalu pilih Ya" +${LangFileString} No "Tidak" +${LangFileString} AlwaysNo "selalu pilih Tidak" diff --git a/packaging/win32/languages/Indonesian_languageNames.nsh b/packaging/win32/languages/Indonesian_languageNames.nsh new file mode 100644 index 0000000..045b09b --- /dev/null +++ b/packaging/win32/languages/Indonesian_languageNames.nsh @@ -0,0 +1,92 @@ +### Indonesian (id) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Indonesian.nsh' +${LangFileString} lng_ar "Arab (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "Azerbaijan (az)" +${LangFileString} lng_be "Belarusia (be)" +${LangFileString} lng_bg "Bulgaria (bg)" +${LangFileString} lng_bn "Bengali (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "Breton (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Katalan (ca)" +${LangFileString} lng_ca@valencia "Katalan Valensia (ca@valencia)" +${LangFileString} lng_cs "Ceko (cs)" +${LangFileString} lng_da "Denmark (da)" +${LangFileString} lng_de "Jerman (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Yunani (el)" +${LangFileString} lng_en "Inggris (en)" +${LangFileString} lng_en_AU "Inggris/Australia (en_AU)" +${LangFileString} lng_en_CA "Inggris/Kanada (en_CA)" +${LangFileString} lng_en_GB "Inggris/Inggris Raya (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Spanyol (es)" +${LangFileString} lng_es_MX "Spanyol/Meksiko (es_MX)" +${LangFileString} lng_et "Estonia (et)" +${LangFileString} lng_eu "Basque (eu)" +${LangFileString} lng_fa "Persia (fa)" +${LangFileString} lng_fi "Finlandia (fi)" +${LangFileString} lng_fr "Perancis (fr)" +${LangFileString} lng_ga "Irlandia (ga)" +${LangFileString} lng_gl "Galisia (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Ibrani (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Kroasia (hr)" +${LangFileString} lng_hu "Hungaria (hu)" +${LangFileString} lng_hy "Armenia (hy)" +${LangFileString} lng_id "Indonesia (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "Italia (it)" +${LangFileString} lng_ja "Jepang (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Korea (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "Lituania (lt)" +${LangFileString} lng_lv "Latvian (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Makedonia (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongolia (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norwegia BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepal (ne)" +${LangFileString} lng_nl "Belanda (nl)" +${LangFileString} lng_nn "Norwegia Ninorski (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polandia (pl)" +${LangFileString} lng_pt "Portugis (pt)" +${LangFileString} lng_pt_BR "Portugis/Brasil (pt_BR)" +${LangFileString} lng_ro "Rumania (ro)" +${LangFileString} lng_ru "Rusia (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "Slovakia (sk)" +${LangFileString} lng_sl "Slovenia (sl)" +${LangFileString} lng_sq "Albania (sq)" +${LangFileString} lng_sr "Serbia (sr)" +${LangFileString} lng_sr@latin "Serbia dengan skrip Latin (sr@latin)" +${LangFileString} lng_sv "Swedia (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Thai (th)" +${LangFileString} lng_tr "Turki (tr)" +${LangFileString} lng_uk "Ukraina (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnam (vi)" +${LangFileString} lng_zh_CN "Cina/Cina (zh_CN)" +${LangFileString} lng_zh_TW "Cina/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Italian.nsh b/packaging/win32/languages/Italian.nsh new file mode 100644 index 0000000..9a38f8b --- /dev/null +++ b/packaging/win32/languages/Italian.nsh @@ -0,0 +1,55 @@ +;Language: Italian (1040) +;By Emanuele Mandola earween@gmail.com +${LangFileString} CaptionDescription "Editor di grafica vettoriale Open Source" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) è rilasciato sotto GNU General Public License (GPL). La licenza è fornita solo a scopo informativo. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape è stato installato dall'utente $0. Potrebbe non essere possibile portare a termine l'installazione. Accedere come $0 e riprovare." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 è già stata installata. $\nRimuovere la versione precedente prima di installare $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPremere OK per continuare o Annulla per uscire." +${LangFileString} NO_ADMIN "Non si posseggono i diritti di amministratore. Potrebbe non essere possibile installare Inkscape per tutti gli utenti. Non selezionare l'opzione 'Per Tutti Gli Utenti'" +${LangFileString} NOT_SUPPORTED "Inkscape non è compatibile con i sistemi operativi Windows 95/98/ME!\n\nPer ulteriori informazioni consultare il sito ufficiale." +${LangFileString} Full "Completa" +${LangFileString} Optimal "Consigliata" +${LangFileString} Minimal "Minima" +${LangFileString} Core "Inkscape SVG Editor (richiesto)" +${LangFileString} CoreDesc "Core Inkscape file e dll" +${LangFileString} GTKFiles "GTK+ Runtime Environment (richiesto)" +${LangFileString} GTKFilesDesc "Librerie grafiche multipiattaforma, usate da Inkscape" +${LangFileString} Shortcuts "Collegamenti" +${LangFileString} ShortcutsDesc "Collegamenti per l'avvio Inkscape" +${LangFileString} Alluser "Per tutti gli utenti" +${LangFileString} AlluserDesc "Installa questa applicazione per tutti coloro che usano questo computer (tutti gli utenti)" +${LangFileString} Desktop "Desktop" +${LangFileString} DesktopDesc "Crea un collegamento a Inkscape sul Desktop" +${LangFileString} Startmenu "Start Menu" +${LangFileString} StartmenuDesc "Crea una cartella in Start Menu per Inkscape" +${LangFileString} Quicklaunch "Avvio Rapido" +${LangFileString} QuicklaunchDesc "Crea un collegamento a Inkscape nella barra di Avvio Rapido" +${LangFileString} SVGWriter "Apre i file SVG con Inkscape" +${LangFileString} SVGWriterDesc "Imposta Inkscape come editor predefinito per i file SVG" +${LangFileString} ContextMenu "Menu Contestuale" +${LangFileString} ContextMenuDesc "Aggiunge Inkscape nel Menu Contestuale per i file SVG" +${LangFileString} DeletePrefs "Rimuovere impostazioni personali" +${LangFileString} DeletePrefsDesc "Rimuove le impostazioni personali lasciate da installazioni precedenti" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "Un interprete per il linguaggio Python e i moduli Python necessari per eseguire le estensioni di Inkscape" +${LangFileString} Addfiles "File Aggiuntivi" +${LangFileString} AddfilesDesc "File Aggiuntivi" +${LangFileString} Extensions "Estensioni" +${LangFileString} ExtensionsDesc "Estensioni di Inkscape (tra cui vari plugin di importazione ed esportazione)" +${LangFileString} Examples "Esempi" +${LangFileString} ExamplesDesc "Esempi d'uso di Inkscape" +${LangFileString} Tutorials "Tutorial" +${LangFileString} TutorialsDesc "Tutorial per l'uso di Inkscape" +${LangFileString} Dictionaries "Dizionari" +${LangFileString} DictionariesDesc "Dizionari di varie lingue utilizzati per il controllo ortografico in Inkscape" +${LangFileString} Languages "Traduzioni" +${LangFileString} LanguagesDesc "Installa altre traduzioni per Inkscape" +${LangFileString} UInstOpt "Opzioni di Disinstallazione" +${LangFileString} UInstOpt1 "Scegli ulteriori Opzioni" +${LangFileString} PurgePrefs "Mantieni le Impostazioni personali" +${LangFileString} UninstallLogNotFound "Impossibile trovare $INSTDIR\uninstall.log !$\r$\nPer continuare la rimozione, cancellare la cartella $INSTDIR a mano." +${LangFileString} FileChanged "Il file $filename è stato modificato rispetto all'ultima installazione.$\r$\nRimuoverlo comunque?" +${LangFileString} Yes "Sì" +${LangFileString} AlwaysYes "rispondere sempre Sì" +${LangFileString} No "No" +${LangFileString} AlwaysNo "rispondere sempre No" diff --git a/packaging/win32/languages/Italian_languageNames.nsh b/packaging/win32/languages/Italian_languageNames.nsh new file mode 100644 index 0000000..1669420 --- /dev/null +++ b/packaging/win32/languages/Italian_languageNames.nsh @@ -0,0 +1,92 @@ +### Italian (it) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Italian.nsh' +${LangFileString} lng_ar "Arabo (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "Azero (az)" +${LangFileString} lng_be "Bielorusso (be)" +${LangFileString} lng_bg "Bulgaro (bg)" +${LangFileString} lng_bn "Bengalese (bn)" +${LangFileString} lng_bn_BD "Bengalese/Bangladesh (bn_BD)" +${LangFileString} lng_br "Bretone (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalano (ca)" +${LangFileString} lng_ca@valencia "Catalano Valenziano (ca@valencia)" +${LangFileString} lng_cs "Ceco (cs)" +${LangFileString} lng_da "Danese (da)" +${LangFileString} lng_de "Tedesco (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Greco (el)" +${LangFileString} lng_en "Inglese (en)" +${LangFileString} lng_en_AU "Inglese/Australia (en_AU)" +${LangFileString} lng_en_CA "Inglese/Canada (en_CA)" +${LangFileString} lng_en_GB "Inglese/Gran Bretagna (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Spagnolo (es)" +${LangFileString} lng_es_MX "Spagnolo/Messicano (es_MX)" +${LangFileString} lng_et "Estone (et)" +${LangFileString} lng_eu "Basco (eu)" +${LangFileString} lng_fa "Persiano (fa)" +${LangFileString} lng_fi "Finlandese (fi)" +${LangFileString} lng_fr "Francese (fr)" +${LangFileString} lng_ga "Irlandese (ga)" +${LangFileString} lng_gl "Galiziona (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Ebreo (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croato (hr)" +${LangFileString} lng_hu "Ungherese (hu)" +${LangFileString} lng_hy "Armeno (hy)" +${LangFileString} lng_id "Indonesiano (id)" +${LangFileString} lng_is "Islandese (is)" +${LangFileString} lng_it "Italiano (it)" +${LangFileString} lng_ja "Giapponese (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Koreano (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in caratteri latini (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in caratteri devanagari (ks@deva)" +${LangFileString} lng_lt "Lituano (lt)" +${LangFileString} lng_lv "Lettone (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedone (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongolo (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in caratteri bengalesi (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norvegese BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepalese (ne)" +${LangFileString} lng_nl "Olandese (nl)" +${LangFileString} lng_nn "Norvegese Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polacco (pl)" +${LangFileString} lng_pt "Portoghese (pt)" +${LangFileString} lng_pt_BR "Portoghese/Brasiliano (pt_BR)" +${LangFileString} lng_ro "Rumeno (ro)" +${LangFileString} lng_ru "Russo (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sanscrito (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in caratteri devanagari (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in caratteri devanagari (sd@deva)" +${LangFileString} lng_sk "Slovacco (sk)" +${LangFileString} lng_sl "Sloveno (sl)" +${LangFileString} lng_sq "Albanese (sq)" +${LangFileString} lng_sr "Serbo (sr)" +${LangFileString} lng_sr@latin "Serbo in caratteri latini (sr@latin)" +${LangFileString} lng_sv "Svedese (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Tailandese (th)" +${LangFileString} lng_tr "Turco (tr)" +${LangFileString} lng_uk "Ucraino (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamita (vi)" +${LangFileString} lng_zh_CN "Cinese/Cina (zh_CN)" +${LangFileString} lng_zh_TW "Cinese/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Japanese.nsh b/packaging/win32/languages/Japanese.nsh new file mode 100644 index 0000000..0c8f28a --- /dev/null +++ b/packaging/win32/languages/Japanese.nsh @@ -0,0 +1,55 @@ +;Language: Japanese (1041) +;By Kenji Inoue <kenz@oct.zaq.ne.jp>, Masato Hashimoto <cabezon.hashimoto@gmail.com> +${LangFileString} CaptionDescription "Open Source Scalable Vector Graphics Editor" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) 㯠GNU General Public License (GPL) ã®ä¸‹ã§ãƒªãƒªãƒ¼ã‚¹ã•ã‚Œã¾ã™ã€‚å‚考ã«å½“該ライセンスをã“ã“ã«è¡¨ç¤ºã—ã¾ã™ã€‚$_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape ã¯ãƒ¦ãƒ¼ã‚¶ãƒ¼ $0 ã«ã‚ˆã£ã¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã™ã€‚$\r$\nã“ã®ã¾ã¾ç¶šã‘ã‚‹ã¨æ£å¸¸ã«å®Œäº†ã—ãªã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。$\r$\n$0 ã§ãƒã‚°ã‚¤ãƒ³ã—ã¦ã‹ã‚‰å†åº¦è©¦ã¿ã¦ãã ã•ã„。" +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 ã¯æ—¢ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã™ã€‚$\n$(^Name) をインストールã™ã‚‹å‰ã«ä»¥å‰ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’削除ã—ã¾ã™ã‹?" +${LangFileString} OK_CANCEL_DESC "$\n$\nOK を押ã—ã¦ç¶™ç¶šã™ã‚‹ã‹ CANCEL を押ã—ã¦ä¸æ¢ã—ã¦ãã ã•ã„。" +${LangFileString} NO_ADMIN "管ç†è€…権é™ãŒã‚ã‚Šã¾ã›ã‚“。$\r$\nã™ã¹ã¦ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã«å¯¾ã™ã‚‹ Inkscape ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¯æ£å¸¸ã«å®Œäº†ã—ãªã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。$\r$\n'ã™ã¹ã¦ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼' オプションã®ãƒã‚§ãƒƒã‚¯ãƒžãƒ¼ã‚¯ã‚’外ã—ã¦ãã ã•ã„。" +${LangFileString} NOT_SUPPORTED "Inkscape 㯠Windows 95/98/ME 上ã§ã¯å‹•ä½œã—ã¾ã›ã‚“!$\r$\n詳ã—ãã¯ã‚ªãƒ•ã‚£ã‚·ãƒ£ãƒ«ã‚¦ã‚§ãƒ–サイトをã”覧ãã ã•ã„。" +${LangFileString} Full "完全" +${LangFileString} Optimal "最é©" +${LangFileString} Minimal "最å°" +${LangFileString} Core "Inkscape SVG Editor (å¿…é ˆ)" +${LangFileString} CoreDesc "Inkscape ã®ã‚³ã‚¢ãƒ•ã‚¡ã‚¤ãƒ«ã¨DLL" +${LangFileString} GTKFiles "GTK+ ランタイム環境 (å¿…é ˆ)" +${LangFileString} GTKFilesDesc "マルãƒãƒ—ラットフォーム対応 GUI ツールã‚ット (Inkscape ãŒä½¿ç”¨)" +${LangFileString} Shortcuts "ショートカット" +${LangFileString} ShortcutsDesc "Inkscape を開始ã™ã‚‹ãŸã‚ã®ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆ" +${LangFileString} Alluser "ã™ã¹ã¦ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼" +${LangFileString} AlluserDesc "ã“ã®ã‚³ãƒ³ãƒ”ューターを使ã†ã™ã¹ã¦ã®äººã«ã“ã®ã‚¢ãƒ—リケーションをインストール (ã™ã¹ã¦ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼)" +${LangFileString} Desktop "デスクトップ" +${LangFileString} DesktopDesc "Inkscape ã¸ã®ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’デスクトップã«ä½œæˆ" +${LangFileString} Startmenu "スタートメニュー" +${LangFileString} StartmenuDesc "スタートメニュー㫠Inkscape ã®é …目を作æˆ" +${LangFileString} Quicklaunch "クイック起動" +${LangFileString} QuicklaunchDesc "Inkscape ã¸ã®ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’クイック起動ツールãƒãƒ¼ã«ä½œæˆ" +${LangFileString} SVGWriter "SVG ファイルを Inkscape ã§é–‹ã" +${LangFileString} SVGWriterDesc "SVG ファイルã®æ¨™æº–エディター㫠Inkscape ã‚’è¨å®š" +${LangFileString} ContextMenu "コンテã‚ストメニュー" +${LangFileString} ContextMenuDesc "SVG ファイルã®ã‚³ãƒ³ãƒ†ã‚ストメニュー㫠Inkscape ã‚’è¿½åŠ " +${LangFileString} DeletePrefs "個人è¨å®šã‚’削除" +${LangFileString} DeletePrefsDesc "以å‰ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«æ™‚ã‹ã‚‰å¼•ã継ã„ã 個人è¨å®šã‚’削除" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "è¿½åŠ ãƒ•ã‚¡ã‚¤ãƒ«" +${LangFileString} AddfilesDesc "è¿½åŠ ãƒ•ã‚¡ã‚¤ãƒ«" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "サンプルファイル" +${LangFileString} ExamplesDesc "Inkscape ã®ã‚µãƒ³ãƒ—ルファイル" +${LangFileString} Tutorials "ãƒãƒ¥ãƒ¼ãƒˆãƒªã‚¢ãƒ«" +${LangFileString} TutorialsDesc "Inkscape ã®ãƒãƒ¥ãƒ¼ãƒˆãƒªã‚¢ãƒ«" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "言語" +${LangFileString} LanguagesDesc "Inkscape ã®ã•ã¾ã–ã¾ãªè¨€èªžãƒ•ã‚¡ã‚¤ãƒ«ã‚’インストール" +${LangFileString} UInstOpt "アンインストールオプション" +${LangFileString} UInstOpt1 "å¿…è¦ã§ã‚ã‚Œã°ä»¥ä¸‹ã®ã‚ªãƒ—ションをé¸æŠžã—ã¦ãã ã•ã„" +${LangFileString} PurgePrefs "個人è¨å®šã‚’残ã™" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“!$\r$\nディレクトリ $INSTDIR を手動ã§å‰Šé™¤ã—ã¦ã‚¢ãƒ³ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ã¦ãã ã•ã„!" +${LangFileString} FileChanged "ファイル $filename ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«å¾Œã«å¤‰æ›´ã•ã‚Œã¦ã„ã¾ã™ã€‚$\r$\nã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’削除ã—ã¾ã™ã‹?" +${LangFileString} Yes "ã¯ã„" +${LangFileString} AlwaysYes "ã™ã¹ã¦ã¯ã„" +${LangFileString} No "ã„ã„ãˆ" +${LangFileString} AlwaysNo "ã™ã¹ã¦ã„ã„ãˆ" diff --git a/packaging/win32/languages/Japanese_languageNames.nsh b/packaging/win32/languages/Japanese_languageNames.nsh new file mode 100644 index 0000000..0c0e3f4 --- /dev/null +++ b/packaging/win32/languages/Japanese_languageNames.nsh @@ -0,0 +1,92 @@ +### Japanese (ja) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Japanese.nsh' +${LangFileString} lng_ar "アラビア語 (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "アゼルãƒã‚¤ã‚¸ãƒ£ãƒ³èªž (az)" +${LangFileString} lng_be "ベラルーシ語 (be)" +${LangFileString} lng_bg "ブルガリア語 (bg)" +${LangFileString} lng_bn "ベンガル語 (bn)" +${LangFileString} lng_bn_BD "ベンガル語/ãƒãƒ³ã‚°ãƒ©ãƒ‡ã‚·ãƒ¥ (bn_BD)" +${LangFileString} lng_br "ブルトン語 (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "カタルーニャ語 (ca)" +${LangFileString} lng_ca@valencia "ãƒãƒ¬ãƒ³ã‚·ã‚¢èªž (ca@valencia)" +${LangFileString} lng_cs "ãƒã‚§ã‚³èªž (cs)" +${LangFileString} lng_da "デンマーク語 (da)" +${LangFileString} lng_de "ドイツ語 (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "ゾンカ語 (dz)" +${LangFileString} lng_el "ギリシャ語 (el)" +${LangFileString} lng_en "英語 (en)" +${LangFileString} lng_en_AU "英語/オーストラリア (en_AU)" +${LangFileString} lng_en_CA "英語/カナダ (en_CA)" +${LangFileString} lng_en_GB "英語/イギリス (en_GB)" +${LangFileString} lng_eo "エスペラント語 (eo)" +${LangFileString} lng_es "スペイン語 (es)" +${LangFileString} lng_es_MX "スペイン語/メã‚シコ (es_MX)" +${LangFileString} lng_et "エストニア語 (et)" +${LangFileString} lng_eu "ãƒã‚¹ã‚¯èªž (eu)" +${LangFileString} lng_fa "ファルシ語 (fa)" +${LangFileString} lng_fi "フィンランド語 (fi)" +${LangFileString} lng_fr "フランス語 (fr)" +${LangFileString} lng_ga "アイルランド語 (ga)" +${LangFileString} lng_gl "ガリシア語 (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "ヘブライ語 (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "クãƒã‚¢ãƒã‚¢èªž (hr)" +${LangFileString} lng_hu "ãƒãƒ³ã‚¬ãƒªãƒ¼èªž (hu)" +${LangFileString} lng_hy "アルメニア語 (hy)" +${LangFileString} lng_id "インドãƒã‚·ã‚¢èªž (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "イタリア語 (it)" +${LangFileString} lng_ja "日本語 (ja)" +${LangFileString} lng_km "クメール語 (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "韓国語 (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "リトアニア語 (lt)" +${LangFileString} lng_lv "ラトビア語 (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "マケドニア語 (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "モンゴル語 (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "ノルウェー語ブークモール (nb)" +${LangFileString} lng_ne "ãƒãƒ‘ール語 (ne)" +${LangFileString} lng_nl "オランダ語 (nl)" +${LangFileString} lng_nn "ノルウェー語ニーノシュク (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "パンジャブ語 (pa)" +${LangFileString} lng_pl "ãƒãƒ¼ãƒ©ãƒ³ãƒ‰èªž (pl)" +${LangFileString} lng_pt "ãƒãƒ«ãƒˆã‚¬ãƒ«èªž (pt)" +${LangFileString} lng_pt_BR "ãƒãƒ«ãƒˆã‚¬ãƒ«èªž/ブラジル (pt_BR)" +${LangFileString} lng_ro "ルーマニア語 (ro)" +${LangFileString} lng_ru "ãƒã‚·ã‚¢èªž (ru)" +${LangFileString} lng_rw "ã‚ニヤルワンダ語 (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "スãƒãƒã‚ア語 (sk)" +${LangFileString} lng_sl "スãƒãƒ™ãƒ‹ã‚¢èªž (sl)" +${LangFileString} lng_sq "アルãƒãƒ‹ã‚¢èªž (sq)" +${LangFileString} lng_sr "セルビア語 (sr)" +${LangFileString} lng_sr@latin "ã‚»ãƒ«ãƒ“ã‚¢èªžãƒ©ãƒ†ãƒ³æ–‡å— (sr@latin)" +${LangFileString} lng_sv "スウェーデン語 (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "タイ語 (th)" +${LangFileString} lng_tr "トルコ語 (tr)" +${LangFileString} lng_uk "ウクライナ語 (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "ベトナム語 (vi)" +${LangFileString} lng_zh_CN "ä¸å›½èªž/ä¸å›½ (zh_CN)" +${LangFileString} lng_zh_TW "ä¸å›½èªž/å°æ¹¾ (zh_TW)" diff --git a/packaging/win32/languages/Korean.nsh b/packaging/win32/languages/Korean.nsh new file mode 100644 index 0000000..72eff6d --- /dev/null +++ b/packaging/win32/languages/Korean.nsh @@ -0,0 +1,55 @@ +;Language: Korean (1042) +;By Sensu Iun <cieltero@gmail.com> +${LangFileString} CaptionDescription "오픈 소스 SVG(스케ì¼ëŸ¬ë¸” 벡터 그래픽) 편집기" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name)ì€ GNU ì¼ë°˜ 공중 ë¼ì´ì„ 스(GPL)ë¡œ 릴리스ë©ë‹ˆë‹¤. ì—¬ê¸°ì— í‘œì‹œëœ ë¼ì´ì„ 스는 ì°¸ê³ ìš©ìœ¼ë¡œë§Œ ì œê³µë ë¿ìž…니다. $_CLICK" +${LangFileString} DIFFERENT_USER "잉í¬ìŠ¤ì¼€ì´í”„ê°€ ì‚¬ìš©ìž $0 ì— ì˜í•´ 설치ë˜ì—ˆìŠµë‹ˆë‹¤.$\r$\nì´ëŒ€ë¡œ 계ì†í•˜ë©´ ì •ìƒì 으로 완료ë˜ì§€ ì•Šì„ ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤!$\r$\n $0 (으)ë¡œ ë¡œê·¸ì¸ í•˜ê³ ë‹¤ì‹œ ì‹œë„í•´ 주ì‹ì‹œì˜¤." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 ì´(ê°€) ì´ë¯¸ 설치ë˜ì—ˆìŠµë‹ˆë‹¤. $\n$(^Name) ì„(를) 설치하기 ì „ì— ì´ì „ ë²„ì „ì„ ì œê±°í• ê¹Œìš”?" +${LangFileString} OK_CANCEL_DESC "$\n$\n계ì†í•˜ë ¤ë©´ [확ì¸]ì„, ì¤‘ë‹¨í•˜ë ¤ë©´ [취소]를 누르ì‹ì‹œì˜¤." +${LangFileString} NO_ADMIN "ê´€ë¦¬ìž ê¶Œí•œì´ ì—†ìŠµë‹ˆë‹¤.$\r$\n잉í¬ìŠ¤ì¼€ì´í”„를 ëª¨ë“ ì‚¬ìš©ìžìš©ìœ¼ë¡œ 설치하기가 ì •ìƒì 으로 완료ë˜ì§€ ì•Šì„ ìˆ˜ 있습니다.$\r$\nâ€˜ëª¨ë“ ì‚¬ìš©ìžìš©ìœ¼ë¡œ 설치’ ì˜µì…˜ì„ ì²´í¬ í•´ì œ 하ì‹ì‹œì˜¤." +${LangFileString} NOT_SUPPORTED "잉í¬ìŠ¤ì¼€ì´í”„는 Windows 95/98/MEì—서는 실행ë˜ì§€ 않는 것으로 ì•Œë ¤ì ¸ 있습니다!$\r$\nìžì„¸í•œ ì •ë³´ëŠ” ê³µì‹ ì›¹ì‚¬ì´íŠ¸ì—ì„œ 확ì¸í•˜ì‹ì‹œì˜¤." +${LangFileString} Full "ì „ë¶€" +${LangFileString} Optimal "최ì " +${LangFileString} Minimal "최소" +${LangFileString} Core "잉í¬ìŠ¤ì¼€ì´í”„ SVG 편집기 (필수)" +${LangFileString} CoreDesc "잉í¬ìŠ¤ì¼€ì´í”„ 핵심 파ì¼ë“¤ê³¼ DLL들" +${LangFileString} GTKFiles "GTK+ 런타임 환경 (필수)" +${LangFileString} GTKFilesDesc "다중-í”Œëž«í¼ GUI 툴킷 (잉í¬ìŠ¤ì¼€ì´í”„ê°€ 사용함)" +${LangFileString} Shortcuts "바로 가기" +${LangFileString} ShortcutsDesc "잉í¬ìŠ¤ì¼€ì´í”„ 시작 바로 가기" +${LangFileString} Alluser "ëª¨ë“ ì‚¬ìš©ìžìš©ìœ¼ë¡œ 설치" +${LangFileString} AlluserDesc "ì´ ì»´í“¨í„°ë¥¼ 사용하는 ëª¨ë“ ì‚¬ìš©ìžë¥¼ 위해 ì´ ì• í”Œë¦¬ì¼€ì´ì…˜ì„ 설치 (ëª¨ë“ ì‚¬ìš©ìž)" +${LangFileString} Desktop "바탕 화면" +${LangFileString} DesktopDesc "잉í¬ìŠ¤ì¼€ì´í”„ 바로 가기를 바탕 í™”ë©´ì— ìž‘ì„±" +${LangFileString} Startmenu "시작 메뉴" +${LangFileString} StartmenuDesc "시작 ë©”ë‰´ì— ìž‰í¬ìŠ¤ì¼€ì´í”„ìš© í•ëª© 작성" +${LangFileString} Quicklaunch "ë¹ ë¥¸ 실행" +${LangFileString} QuicklaunchDesc "ë¹ ë¥¸ 실행 ë„êµ¬ë°”ì— ìž‰í¬ìŠ¤ì¼€ì´í”„ 바로 가기 작성" +${LangFileString} SVGWriter "SVG 파ì¼ì„ 잉í¬ìŠ¤ì¼€ì´í”„ë¡œ 열기" +${LangFileString} SVGWriterDesc "잉í¬ìŠ¤ì¼€ì´í”„를 SVG 파ì¼ìš© 기본 편집기로 ì„ íƒ" +${LangFileString} ContextMenu "문맥 메뉴" +${LangFileString} ContextMenuDesc "잉í¬ìŠ¤ì¼€ì´í”„를 SVG 파ì¼ìš© 문맥 ë©”ë‰´ì— ì¶”ê°€" +${LangFileString} DeletePrefs "ì‚¬ìš©ìž ê¸°ë³¸ ì„¤ì • ì‚ì œ" +${LangFileString} DeletePrefsDesc "ì´ì „ì˜ ì„¤ì¹˜í•œ ë²„ì „ë“¤ì—ì„œ 남겨 ë†“ì€ ì‚¬ìš©ìž ê¸°ë³¸ ì„¤ì •ì„ ì‚ì œ" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "잉í¬ìŠ¤ì¼€ì´í”„ 확장 기능 ì‹¤í–‰ì— í•„ìš”í•œ Python í”„ë¡œê·¸ëž˜ë° ì–¸ì–´ìš© ì¸í„°í”„리터 ë° Python 모듈" +${LangFileString} Addfiles "추가 파ì¼" +${LangFileString} AddfilesDesc "추가 파ì¼" +${LangFileString} Extensions "확장 기능" +${LangFileString} ExtensionsDesc "잉í¬ìŠ¤ì¼€ì´í”„ 확장 기능 (여러 가지 들여 오기 ë° ë‚´ë³´ë‚´ê¸° 플러그ì¸ì„ í¬í•¨)" +${LangFileString} Examples "ì˜ˆì œ" +${LangFileString} ExamplesDesc "잉í¬ìŠ¤ì¼€ì´í”„를 ì´ìš©í•œ ì˜ˆì œ" +${LangFileString} Tutorials "ìžìŠµì„œ" +${LangFileString} TutorialsDesc "잉í¬ìŠ¤ì¼€ì´í”„를 ì´ìš©í•œ ìžìŠµì„œ" +${LangFileString} Dictionaries "ì‚¬ì „" +${LangFileString} DictionariesDesc "잉í¬ìŠ¤ì¼€ì´í”„ 안ì—ì„œ ì² ìž ê²€ì‚¬ì— ì´ìš©í• 몇 ê°œì˜ ì¼ë°˜ì 언어용 ì‚¬ì „" +${LangFileString} Languages "번ì—" +${LangFileString} LanguagesDesc "잉í¬ìŠ¤ì¼€ì´í”„ìš© ë²ˆì— ë° ì§€ì—ì— ë§žì¶˜ ë‚´ìš©" +${LangFileString} UInstOpt "설치 ì œê±° 옵션" +${LangFileString} UInstOpt1 "추가 ì˜µì…˜ì„ ì„ íƒí•˜ì‹ì‹œì˜¤" +${LangFileString} PurgePrefs "ì‚¬ìš©ìž ê¸°ë³¸ì„¤ì • ìœ ì§€" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log ê°€ 없습니다!$\r$\n$INSTDIR ë””ë ‰í„°ë¦¬ë¥¼ ì§ì ‘ 지워서 설치 ì œê±°ë¥¼ 하ì‹ì‹œì˜¤!" +${LangFileString} FileChanged "$filename 파ì¼ì´ 설치 í›„ì— ë³€ê²½ë˜ì—ˆìŠµë‹ˆë‹¤.$\r$\nê·¸ëž˜ë„ ì´ íŒŒì¼ì„ ì œê±°í• ê¹Œìš”?" +${LangFileString} Yes "예" +${LangFileString} AlwaysYes "ì–¸ì œë‚˜ [예]ë¡œ 대답" +${LangFileString} No "아니요" +${LangFileString} AlwaysNo "ì–¸ì œë‚˜ [아니요]ë¡œ 대답" diff --git a/packaging/win32/languages/Korean_languageNames.nsh b/packaging/win32/languages/Korean_languageNames.nsh new file mode 100644 index 0000000..92a2168 --- /dev/null +++ b/packaging/win32/languages/Korean_languageNames.nsh @@ -0,0 +1,92 @@ +### Korean (ko) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Korean.nsh' +${LangFileString} lng_ar "ì•„ë¼ë¹„ì•„ ì–´ (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "ì•„ì œë¥´ë°”ì´ìž” ì–´ (az)" +${LangFileString} lng_be "벨ë¼ë£¨ì‹œ ì–´ (be)" +${LangFileString} lng_bg "불가리아 ì–´ (bg)" +${LangFileString} lng_bn "ì¸ë„ì–´ (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "ë¸Œë ˆíŠ¼ ì–´ (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "카탈로니아 ì–´ (ca)" +${LangFileString} lng_ca@valencia "ë°œë Œì‹œì•„ 카탈로니아어 (ca@vlencia)" +${LangFileString} lng_cs "ì²´ì½” ì–´ (cs)" +${LangFileString} lng_da "ë´ë§ˆí¬ ì–´ (da)" +${LangFileString} lng_de "ë…ì¼ì–´ (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "종카 ì–´ (dz)" +${LangFileString} lng_el "그리스 ì–´ (el)" +${LangFileString} lng_en "ì˜ì–´ (en)" +${LangFileString} lng_en_AU "ì˜ì–´/호주 (en_AU)" +${LangFileString} lng_en_CA "ì˜ì–´/ìºë‚˜ë‹¤ (en_CA)" +${LangFileString} lng_en_GB "ì˜ì–´/ê·¸ë ˆì´íŠ¸ 브리튼 (en_GB)" +${LangFileString} lng_eo "ì—ìŠ¤íŽ˜ëž€í† ì–´ (eo)" +${LangFileString} lng_es "ìŠ¤íŽ˜ì¸ ì–´ (es)" +${LangFileString} lng_es_MX "ìŠ¤íŽ˜ì¸ ì–´/멕시코 (es_MX)" +${LangFileString} lng_et "ì—ìŠ¤í† ë‹ˆì•„ ì–´ (et)" +${LangFileString} lng_eu "ë°”ìŠ¤í¬ ì–´ (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "핀란드 ì–´ (fi)" +${LangFileString} lng_fr "프랑스 ì–´ (fr)" +${LangFileString} lng_ga "ì•„ì¼ëžœë“œ ì–´ (ga)" +${LangFileString} lng_gl "ê°ˆë¼ì‹œì•„ ì–´ (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "히브리 ì–´ (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "í¬ë¡œì•„í‹°ì•„ ì–´ (hr)" +${LangFileString} lng_hu "í—가리 ì–´ (hu)" +${LangFileString} lng_hy "아르메니아 ì–´ (hy)" +${LangFileString} lng_id "ì¸ë„네시아 ì–´ (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "ì´íƒˆë¦¬ì•„ ì–´ (it)" +${LangFileString} lng_ja "ì¼ë³¸ì–´ (ja)" +${LangFileString} lng_km "í¬ë©”르 ì–´ (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "í•œêµì–´ (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "리투아니아 ì–´ (lt)" +${LangFileString} lng_lv "Latvian (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "마케ë„니아 ì–´ (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "몽골 ì–´ (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "ë…¸ë¥´ì›¨ì´ ë³´í¬ëª° ì–´ (nb)" +${LangFileString} lng_ne "네팔 ì–´ (ne)" +${LangFileString} lng_nl "네ë¸ëž€ë“œ ì–´ (nl)" +${LangFileString} lng_nn "ë…¸ë¥´ì›¨ì´ ë‰˜ë…¸ë¥´ìŠ¤í¬ (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "펀잡 ì–´ (pa)" +${LangFileString} lng_pl "í´ëž€ë“œ ì–´ (pl)" +${LangFileString} lng_pt "í¬ë¥´íˆ¬ê°ˆ ì–´ (pt)" +${LangFileString} lng_pt_BR "브ë¼ì§ˆ ì–´ (pt_BR)" +${LangFileString} lng_ro "로마 ì–´ (ro)" +${LangFileString} lng_ru "러시아 ì–´ (ru)" +${LangFileString} lng_rw "킨야르완다 (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "슬로바키아 ì–´ (sk)" +${LangFileString} lng_sl "ìŠ¬ë¡œë² ë‹ˆì•„ ì–´ (sl)" +${LangFileString} lng_sq "알바니아 ì–´ (sq)" +${LangFileString} lng_sr "세르비아 ì–´ (sr)" +${LangFileString} lng_sr@latin "세르비아 ì–´ ë¼í‹´ìŠ¤í¬ë¦½íŠ¸ (sr@latin)" +${LangFileString} lng_sv "ìŠ¤ì›¨ë´ ì–´ (sv)" +${LangFileString} lng_ta "타밀 ì–´ (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "태êµì–´ (th)" +${LangFileString} lng_tr "터키 ì–´ (tr)" +${LangFileString} lng_uk "ìš°í¬ë¼ì´ë‚˜ ì–´ (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "ë² íŠ¸ë‚¨ ì–´ (vi)" +${LangFileString} lng_zh_CN "중êµì–´/ì¤‘êµ (zh_CN)" +${LangFileString} lng_zh_TW "중êµì–´/타ì´ì™„ (zh_TW)" diff --git a/packaging/win32/languages/Polish.nsh b/packaging/win32/languages/Polish.nsh new file mode 100644 index 0000000..a0ade97 --- /dev/null +++ b/packaging/win32/languages/Polish.nsh @@ -0,0 +1,55 @@ +;Language: Polish (1045) +;By PrzemysÅ‚aw Loesch <p_loesch@poczta.onet.pl>, Marcin Floryan <marcin.floryan@gmail.com>, Leszek(teo)Å»yczkowski <leszekz@gmail.com> +${LangFileString} CaptionDescription "otwarte oprogramowanie do grafiki wektorowej SVG" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) jest udostÄ™pniony na licencji GNU General Public License (GPL). Tekst licencji jest doÅ‚Ä…czony jedynie w celach informacyjnych. $_CLICK" +${LangFileString} DIFFERENT_USER "Program Inkscape zostaÅ‚ zainstalowany przez użytkownika $0.$\r$\nJeÅ›li instalacja bÄ™dzie kontynuowana, może zakoÅ„czyć siÄ™ niepowodzeniem!$\r$\nProszÄ™ zalogować siÄ™ jako $0 i spróbować ponownie." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 jest już zainstalowany. $\nCzy chcesz przed zainstalowaniem programu $(^Name) usunąć jego poprzedniÄ… wersjÄ™?" +${LangFileString} OK_CANCEL_DESC "$\n$\nAby kontynuować instalacjÄ™, naciÅ›nij przycisk OK, aby przerwać – Anuluj." +${LangFileString} NO_ADMIN "Nie masz uprawnieÅ„ administratora.$\r$\nInstalacja programu Inkscape dla wszystkich użytkowników może zakoÅ„czyć siÄ™ niepowodzeniem.$\r$\nProszÄ™ wyÅ‚Ä…czyć opcjÄ™ „Dla wszystkich użytkownikówâ€." +${LangFileString} NOT_SUPPORTED "Program Inkscape nie dziaÅ‚a w systemach Windows 95/98/ME!$\r$\nProszÄ™ zapoznać siÄ™ z informacjami na ten temat na oficjalnej stronie internetowej programu." +${LangFileString} Full "PeÅ‚na" +${LangFileString} Optimal "Optymalna" +${LangFileString} Minimal "Minimalna" +${LangFileString} Core "Inkscape Edytor SVG (wymagane)" +${LangFileString} CoreDesc "Podstawowe pliki i biblioteki dll dla programu Inkscape" +${LangFileString} GTKFiles "Åšrodowisko pracy GTK+ (wymagane)" +${LangFileString} GTKFilesDesc "Wieloplatformowe Å›rodowisko graficzne, z którego korzysta Inkscape" +${LangFileString} Shortcuts "Skróty" +${LangFileString} ShortcutsDesc "Skróty do uruchamiania programu Inkscape" +${LangFileString} Alluser "dla wszystkich użytkowników" +${LangFileString} AlluserDesc "Program Inkscape zostanie zainstalowany dla wszystkich użytkowników tego komputera" +${LangFileString} Desktop "Pulpit" +${LangFileString} DesktopDesc "Na pulpicie zostanie utworzony skrót do uruchamiania programu Inkscape" +${LangFileString} Startmenu "Menu Start" +${LangFileString} StartmenuDesc "W menu Start zostanie utworzony skrót do uruchamiania programu Inkscape" +${LangFileString} Quicklaunch "Pasek szybkiego uruchamiania" +${LangFileString} QuicklaunchDesc "Na pasku szybkiego uruchamiania zostanie utworzony skrót do uruchamiania programu Inkscape" +${LangFileString} SVGWriter "Otwieraj pliki SVG za pomocÄ… programu Inkscape" +${LangFileString} SVGWriterDesc "Program Inkscape bÄ™dzie domyÅ›lnym edytorem plików SVG" +${LangFileString} ContextMenu "Menu kontekstowe" +${LangFileString} ContextMenuDesc "Do systemowego menu kontekstowego zostanie dodany program Inkscape" +${LangFileString} DeletePrefs "UsuÅ„ ustawienia użytkownika" +${LangFileString} DeletePrefsDesc "ZostanÄ… usuniÄ™te ustawienia użytkownika pozostawione przez poprzednie instalacje" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Pliki dodatkowe" +${LangFileString} AddfilesDesc "ZostanÄ… dodane wybrane poniżej dodatkowe pliki" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "PrzykÅ‚ady" +${LangFileString} ExamplesDesc "PrzykÅ‚ady użycia programu Inkscape" +${LangFileString} Tutorials "Poradniki" +${LangFileString} TutorialsDesc "Poradniki jak korzystać z programu Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "JÄ™zyki interfejsu" +${LangFileString} LanguagesDesc "DostÄ™pne jÄ™zyki interfejsu dla programu Inkscape" +${LangFileString} UInstOpt "Opcje dezinstalacji" +${LangFileString} UInstOpt1 "Dokonaj wyboru spoÅ›ród dodatkowych opcji" +${LangFileString} PurgePrefs "Zachowaj ustawienia użytkownika" +${LangFileString} UninstallLogNotFound "Nie znaleziono $INSTDIR\uninstall.log!$\r$\nProszÄ™ wykonać dezinstalacjÄ™ rÄ™cznie poprzez usuniÄ™cie katalogu $INSTDIR!" +${LangFileString} FileChanged "Plik $filename zostaÅ‚ zmieniony po zainstalowaniu.$\r$\nCzy nadal chcesz usunąć ten plik?" +${LangFileString} Yes "Tak" +${LangFileString} AlwaysYes "Tak dla wszystkich" +${LangFileString} No "Nie" +${LangFileString} AlwaysNo "Nie dla wszystkich" diff --git a/packaging/win32/languages/Polish_languageNames.nsh b/packaging/win32/languages/Polish_languageNames.nsh new file mode 100644 index 0000000..eee35e8 --- /dev/null +++ b/packaging/win32/languages/Polish_languageNames.nsh @@ -0,0 +1,92 @@ +### Polish (pl) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Polish.nsh' +${LangFileString} lng_ar "arabski (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "azerski (az)" +${LangFileString} lng_be "biaÅ‚oruski (ba)" +${LangFileString} lng_bg "buÅ‚garski (bg)" +${LangFileString} lng_bn "bengalski (bn)" +${LangFileString} lng_bn_BD "bengalski/Bangladesz (bn_BD)" +${LangFileString} lng_br "bretoÅ„ski (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "kataloÅ„ski (ca)" +${LangFileString} lng_ca@valencia "kataloÅ„ski waloÅ„ski (ca@valencia)" +${LangFileString} lng_cs "czeski (cs)" +${LangFileString} lng_da "duÅ„ski (da)" +${LangFileString} lng_de "niemiecki (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "dzongkha (dz)" +${LangFileString} lng_el "grecki (el)" +${LangFileString} lng_en "angielski (en)" +${LangFileString} lng_en_AU "angielski/Australia (en-AU)" +${LangFileString} lng_en_CA "angielski/Kanada (en_CA)" +${LangFileString} lng_en_GB "angielski/Wlk.Brytania (en_GB)" +${LangFileString} lng_eo "esperanto (eo)" +${LangFileString} lng_es "hiszpaÅ„ski (es)" +${LangFileString} lng_es_MX "hiszpaÅ„ski/Meksyk (es_MX)" +${LangFileString} lng_et "estoÅ„ski (et)" +${LangFileString} lng_eu "baskijski (eu)" +${LangFileString} lng_fa "perski (fa)" +${LangFileString} lng_fi "fiÅ„ski (fi)" +${LangFileString} lng_fr "francuski (fr)" +${LangFileString} lng_ga "irlandzki (ga)" +${LangFileString} lng_gl "galicyjski (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "hebrajski (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "chorwacki (hr)" +${LangFileString} lng_hu "wÄ™gierski (hu)" +${LangFileString} lng_hy "armeÅ„ski (hy)" +${LangFileString} lng_id "indonezyjski (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "wÅ‚oski (it)" +${LangFileString} lng_ja "japoÅ„ski (ja)" +${LangFileString} lng_km "kmerski (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "koreaÅ„ski (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "litewski (lt)" +${LangFileString} lng_lv "Å‚otewski (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "macedoÅ„ski (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "mongolski (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "norweski BokmÃ¥l (nb)" +${LangFileString} lng_ne "nepalski (ne)" +${LangFileString} lng_nl "holenderski (nl)" +${LangFileString} lng_nn "norweski Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "pendżabski (pa)" +${LangFileString} lng_pl "polski (pl)" +${LangFileString} lng_pt "portugalski (pt)" +${LangFileString} lng_pt_BR "portugalski/Brazylia (pt_BR)" +${LangFileString} lng_ro "rumuÅ„ski (ro)" +${LangFileString} lng_ru "rosyjski (ru)" +${LangFileString} lng_rw "ruanda-rundi (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "sÅ‚owacki (sk)" +${LangFileString} lng_sl "sÅ‚oweÅ„ski (sl)" +${LangFileString} lng_sq "albaÅ„ski (sq)" +${LangFileString} lng_sr "serbski (sr)" +${LangFileString} lng_sr@latin "serbski, skrypt Å‚aciÅ„ski (sr@latin)" +${LangFileString} lng_sv "szwedzki (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "tajski (th)" +${LangFileString} lng_tr "turecki (tr)" +${LangFileString} lng_uk "ukraiÅ„ski (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "wietnamski (vi)" +${LangFileString} lng_zh_CN "chiÅ„ski/Chiny (zh_CN)" +${LangFileString} lng_zh_TW "chiÅ„ski/Tajwan (zh_TW)" diff --git a/packaging/win32/languages/Portuguese.nsh b/packaging/win32/languages/Portuguese.nsh new file mode 100644 index 0000000..b0f7453 --- /dev/null +++ b/packaging/win32/languages/Portuguese.nsh @@ -0,0 +1,55 @@ +;Language: Portuguese (2070) +;By Rui <xande6ruz@yandex.com> +${LangFileString} CaptionDescription "Editor de Gráficos Vetoriais Escaláveis de Código Aberto" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) é disponibilizado sob a GNU General Public License (GPL). A licença é disponibilizada aqui apenas para fins informativos. $_CLICK" +${LangFileString} DIFFERENT_USER "O Inkscape já foi instalado pelo utilizador $0.$\r$\nSe continuar, poderá não conseguir instalar por completo!$\r$\nPor favor entre na conta de $0 e tente de novo." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 já foi instalado. $\nPretende remover a versão anterior antes de instalar o $(^Name)?" +${LangFileString} OK_CANCEL_DESC "$\n$\nClique em OK para continuar ou clique em CANCELAR para abortar." +${LangFileString} NO_ADMIN "A sua conta não tem privilégios de administrador.$\r$\nPoderá não conseguir instalar o Inkscape em todas as contas.$\r$\nDesmarque a opção 'Instalar em todas as contas'." +${LangFileString} NOT_SUPPORTED "O Inkscape não corre nos sistemas operativos Windows 95/98/ME!$\r$\nPor favor consulte o site oficial para mais informações." +${LangFileString} Full "Completo" +${LangFileString} Optimal "Opcional" +${LangFileString} Minimal "MÃnimo" +${LangFileString} Core "Inkscape - Editor SVG (necessário)" +${LangFileString} CoreDesc "Ficheiros do núcleo e dlls do Inkscape" +${LangFileString} GTKFiles "GTK+ Runtime Environment (necessário)" +${LangFileString} GTKFilesDesc "Uma biblioteca de GUI multi-plataforma, usada pelo Inkscape" +${LangFileString} Shortcuts "Atalhos" +${LangFileString} ShortcutsDesc "Atalhos para abrir o Inkscape" +${LangFileString} Alluser "Instalar em todas as contas" +${LangFileString} AlluserDesc "Instalar esta aplicação para todos os utilizadores que usem este computador (todas as contas)" +${LangFileString} Desktop "Ambiente de Trabalho" +${LangFileString} DesktopDesc "Criar um atalho do Inkscape no Ambiente de Trabalho" +${LangFileString} Startmenu "Menu de InÃcio" +${LangFileString} StartmenuDesc "Criar um atalho do Inkscape no Menu de InÃcio" +${LangFileString} Quicklaunch "Lançamento Rápido" +${LangFileString} QuicklaunchDesc "Criar um atalho do Inkscape na barra de Lançamento Rápido" +${LangFileString} SVGWriter "Abrir ficheiros SVG com o Inkscape" +${LangFileString} SVGWriterDesc "Selecionar o Inkscape como o editor padrão para ficheiros SVG" +${LangFileString} ContextMenu "Menu de Contexto" +${LangFileString} ContextMenuDesc "Adicionar o Inkscape no Menu de Contexto para ficheiros SVG" +${LangFileString} DeletePrefs "Eliminar preferências" +${LangFileString} DeletePrefsDesc "Eliminar preferências de versões anteriormente instaladas do Inkscape" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "Um interpretador para a linguagem de programação Python e módulos Python necessários para correr extensões Inkscape." +${LangFileString} Addfiles "Ficheiros Adicionais" +${LangFileString} AddfilesDesc "Ficheiros Adicionais" +${LangFileString} Extensions "Extensões" +${LangFileString} ExtensionsDesc "Extensões Inkscape extensions (incluindo muitos plugins de importação e exportação)" +${LangFileString} Examples "Exemplos" +${LangFileString} ExamplesDesc "Exemplos de utilização do Inkscape" +${LangFileString} Tutorials "Tutoriais" +${LangFileString} TutorialsDesc "Tutoriais para aprender a usar o Inkscape" +${LangFileString} Dictionaries "Dicionários" +${LangFileString} DictionariesDesc "Dicionários para algumas linguagens comuns para correcção ortográfica no Inkscape" +${LangFileString} Languages "Traduções" +${LangFileString} LanguagesDesc "Instalar várias traduções do Inkscape" +${LangFileString} UInstOpt "Opções de Desinstalação" +${LangFileString} UInstOpt1 "Por favor faça as suas escolhas para opções adicionais" +${LangFileString} PurgePrefs "Manter Preferências" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log não foi encontrado!$\r$\nPor favor desinstale manualmente eliminado a pasta $INSTDIR!" +${LangFileString} FileChanged "O ficheiro $filename foi alterado depois de instalado.$\r$\nQuer mesmo eliminar o ficheiro?" +${LangFileString} Yes "Sim" +${LangFileString} AlwaysYes "responder sempre Sim" +${LangFileString} No "Não" +${LangFileString} AlwaysNo "responder sempre Não" diff --git a/packaging/win32/languages/PortugueseBR.nsh b/packaging/win32/languages/PortugueseBR.nsh new file mode 100644 index 0000000..3225743 --- /dev/null +++ b/packaging/win32/languages/PortugueseBR.nsh @@ -0,0 +1,55 @@ +;Language: Brazilian Portuguese (1046) +;By Rodrigo Padula de Oliveira contato@rodrigopadula.com +${LangFileString} CaptionDescription "Editor Software Livre de gráficos vetoriais" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) é publicado sob GNU General Public License (GPL). A licença é fornecida aqui apenas para caráter informativo. $_CLICK" +${LangFileString} DIFFERENT_USER "O Inkscape já foi instalado pelo usuário $0. Se você continuar a instalação poderá não ser concluÃda com sucesso. Acesse como $0 e tente novamente." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 já está instalado. $\nVocê deseja remover a instalação anterior antes de instalar novamente $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPressione OK para continuar ou pressiona CANCELAR para abortar." +${LangFileString} NO_ADMIN "Você não tem privilégios de administrador. A instalação do Inkscape para todos os usuários pode não ser finalizada com sucesso. Desmarque a opção 'Instalar para todos os usuários'" +${LangFileString} NOT_SUPPORTED "Inkscape não é compatÃvel com Windows 95/98/ME!\n\nPor favor visite o site oficial do Inkscape para mariores informações." +${LangFileString} Full "Completa" +${LangFileString} Optimal "Opcional" +${LangFileString} Minimal "MÃnima" +${LangFileString} Core "Inkscape SVG Editor (requerido)" +${LangFileString} CoreDesc "Arquivos Core Inkscape e DLLs" +${LangFileString} GTKFiles "GTK+ Runtime Environment (requerido)" +${LangFileString} GTKFilesDesc "Bibliotecas gráficas multi-plataforma, usadas pelo inkscape" +${LangFileString} Shortcuts "Atalhos" +${LangFileString} ShortcutsDesc "Atalhos para iniciar o Inkscape" +${LangFileString} Alluser "Instalar para todos os usuários" +${LangFileString} AlluserDesc "Instalar esta aplicação para todas as pessoas que usam este computador (todos usuários)" +${LangFileString} Desktop "Desktop" +${LangFileString} DesktopDesc "Cria um atalho para o Inkscape em seu Desktop" +${LangFileString} Startmenu "Menu Iniciar" +${LangFileString} StartmenuDesc "Cria atalhos para o Inkscape no Menu Iniciar" +${LangFileString} Quicklaunch "Inicialização Rápida" +${LangFileString} QuicklaunchDesc "Cria uma atalho para o Inkscape na barra de Inicialização Rápida" +${LangFileString} SVGWriter "Abrir arquivos SVG com Inkscape" +${LangFileString} SVGWriterDesc "Seleciona o Inkscape como editor padrão de arquivos SVG" +${LangFileString} ContextMenu "Menu de Contexto" +${LangFileString} ContextMenuDesc "Adiciona o Inkscape no Menu de Contexto para arquivos SVG" +${LangFileString} DeletePrefs "Remover preferências pessoais" +${LangFileString} DeletePrefsDesc "Remover preferências pessoais deixadas por instalações anteriores" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Arquivos Adicionais" +${LangFileString} AddfilesDesc "Arquivos Adicionais" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Examples" +${LangFileString} ExamplesDesc "Examples de uso do Inkscape" +${LangFileString} Tutorials "Tutorial" +${LangFileString} TutorialsDesc "Tutorial para o uso Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Traduções" +${LangFileString} LanguagesDesc "Instala várias traduçoes do Inkscape" +${LangFileString} UInstOpt "Opções de Desinstalação" +${LangFileString} UInstOpt1 "Determine suas opções adicionais" +${LangFileString} PurgePrefs "Manter Preferências pessoais" +${LangFileString} UninstallLogNotFound "ImpossÃvel encontrar $INSTDIR\uninstall.log !$\r$\nPara continuar a desinstalação, remova o diretório $INSTDIR manualmente!" +${LangFileString} FileChanged "O arquivo $filename foi modificado após a instalação.$\r$\nDeseja removê-lo?" +${LangFileString} Yes "Sim" +${LangFileString} AlwaysYes "Sempre responda Sim" +${LangFileString} No "Não" +${LangFileString} AlwaysNo "Sempre responda Não" diff --git a/packaging/win32/languages/PortugueseBR_languageNames.nsh b/packaging/win32/languages/PortugueseBR_languageNames.nsh new file mode 100644 index 0000000..718636e --- /dev/null +++ b/packaging/win32/languages/PortugueseBR_languageNames.nsh @@ -0,0 +1,92 @@ +### Portuguese/Brazil (pt_BR) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'PortugueseBR.nsh' +${LangFileString} lng_ar "Ãrabe (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "Azerbaijano (az)" +${LangFileString} lng_be "Bielo-russo (be)" +${LangFileString} lng_bg "Búlgaro (bg)" +${LangFileString} lng_bn "Bengali (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "Bretão (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalã (ca)" +${LangFileString} lng_ca@valencia "Catalã Valenciano (ca@valencia)" +${LangFileString} lng_cs "Tcheco (cs)" +${LangFileString} lng_da "Dinamarquês (da)" +${LangFileString} lng_de "Alemão (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzonga (dz)" +${LangFileString} lng_el "Grego (el)" +${LangFileString} lng_en "Inglês (en)" +${LangFileString} lng_en_AU "Inglês/Austrália (en_AU)" +${LangFileString} lng_en_CA "Inglês/Canadá (en_CA)" +${LangFileString} lng_en_GB "Inglês/Grã-Bretanha (en_AU)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Espanhol (es)" +${LangFileString} lng_es_MX "Espanhol / México (es_MX)" +${LangFileString} lng_et "Estoniano (et)" +${LangFileString} lng_eu "Basco (eu)" +${LangFileString} lng_fa "Persa (fa)" +${LangFileString} lng_fi "Finlandês (fi)" +${LangFileString} lng_fr "Francês (fr)" +${LangFileString} lng_ga "Irlandês (ga)" +${LangFileString} lng_gl "Galego (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hebraico (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croácio (hr)" +${LangFileString} lng_hu "Húngaro (hu)" +${LangFileString} lng_hy "Armênio (hy)" +${LangFileString} lng_id "Indonésio (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "Italiano (it)" +${LangFileString} lng_ja "Japonês (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Coreano (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "Lituano (lt)" +${LangFileString} lng_lv "Letão (lt)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedônio (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongol (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Dano-norueguesa (nb)" +${LangFileString} lng_ne "Nepalês (ne)" +${LangFileString} lng_nl "Holandês (nl)" +${LangFileString} lng_nn "Novo norueguês (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polonês (pl)" +${LangFileString} lng_pt "Português (pt)" +${LangFileString} lng_pt_BR "Português / Brasil (pt_BR)" +${LangFileString} lng_ro "Romeno (ro)" +${LangFileString} lng_ru "Russo (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "Eslovaco (sk)" +${LangFileString} lng_sl "Esloveno (sl)" +${LangFileString} lng_sq "Albanês (sq)" +${LangFileString} lng_sr "Sérvio (sr)" +${LangFileString} lng_sr@latin "Sérvio latino (sr@latin)" +${LangFileString} lng_sv "Sueco (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Tailandês (th)" +${LangFileString} lng_tr "Turco (tr)" +${LangFileString} lng_uk "Ucraniano (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamita (vi)" +${LangFileString} lng_zh_CN "Chinês/China (zh_CN)" +${LangFileString} lng_zh_TW "Chinês/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Portuguese_languageNames.nsh b/packaging/win32/languages/Portuguese_languageNames.nsh new file mode 100644 index 0000000..ec92d79 --- /dev/null +++ b/packaging/win32/languages/Portuguese_languageNames.nsh @@ -0,0 +1,92 @@ +### Portuguese (pt) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Portuguese.nsh' +${LangFileString} lng_ar "Arábico (ar)" +${LangFileString} lng_as "Assamês (as)" +${LangFileString} lng_az "Azerbaijano (az)" +${LangFileString} lng_be "Bielorrusso (be)" +${LangFileString} lng_bg "Búlgaro (bg)" +${LangFileString} lng_bn "Bengali (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladeche (bn_BD)" +${LangFileString} lng_br "Bretão (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalão (ca)" +${LangFileString} lng_ca@valencia "Catalão Valenciano (ca@valencia)" +${LangFileString} lng_cs "Checo (cs)" +${LangFileString} lng_da "Dinamarquês (da)" +${LangFileString} lng_de "Alemão (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Butanês (dz)" +${LangFileString} lng_el "Grego (el)" +${LangFileString} lng_en "Inglês (en)" +${LangFileString} lng_en_AU "Inglês/Austrália (en_AU)" +${LangFileString} lng_en_CA "Inglês/Canadá (en_CA)" +${LangFileString} lng_en_GB "Inglês/Grâ-Bretanha (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Espanhol (es)" +${LangFileString} lng_es_MX "Espanhol/México (es_MX)" +${LangFileString} lng_et "Estónio (et)" +${LangFileString} lng_eu "Basco (eu)" +${LangFileString} lng_fa "Persa (fa)" +${LangFileString} lng_fi "Finlandês (fi)" +${LangFileString} lng_fr "Francês (fr)" +${LangFileString} lng_ga "Irlandês (ga)" +${LangFileString} lng_gl "Galego (gl)" +${LangFileString} lng_gu "Gujaráti (gu)" +${LangFileString} lng_he "Hebraico (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croata (hr)" +${LangFileString} lng_hu "Húngaro (hu)" +${LangFileString} lng_hy "Arménio (hy)" +${LangFileString} lng_id "Indonésio (id)" +${LangFileString} lng_is "Islandês (is)" +${LangFileString} lng_it "Italiano (it)" +${LangFileString} lng_ja "Japonês (ja)" +${LangFileString} lng_km "Cambojano (km)" +${LangFileString} lng_kn "Canarês (kn)" +${LangFileString} lng_ko "Coreano (ko)" +${LangFileString} lng_kok "Concani (kok)" +${LangFileString} lng_kok@latin "Concani no alfabeto Latino (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Caxemiriano no alfabeto Devanágari (ks@deva)" +${LangFileString} lng_lt "Lituano (lt)" +${LangFileString} lng_lv "Letão (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedónio (mk)" +${LangFileString} lng_ml "Malaiala (ml)" +${LangFileString} lng_mn "Mongol (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri no alfabeto Bengali (mni@beng)" +${LangFileString} lng_mr "Marata (mr)" +${LangFileString} lng_nb "BokmÃ¥l Norueguês (nb)" +${LangFileString} lng_ne "Nepalês (ne)" +${LangFileString} lng_nl "Neerlandês (nl)" +${LangFileString} lng_nn "Novo Norueguês (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Polaco (pl)" +${LangFileString} lng_pt "Português (pt)" +${LangFileString} lng_pt_BR "Português/Brasil (pt_BR)" +${LangFileString} lng_ro "Romeno (ro)" +${LangFileString} lng_ru "Russo (ru)" +${LangFileString} lng_rw "Quiniaruanda (rw)" +${LangFileString} lng_sa "Sânscrito (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali no alfabeto Devanágari (sat@deva)" +${LangFileString} lng_sd "Sindi (sd)" +${LangFileString} lng_sd@deva "Sindi no alfabeto Devanágari (sd@deva)" +${LangFileString} lng_sk "Eslovaco (sk)" +${LangFileString} lng_sl "Esloveno (sl)" +${LangFileString} lng_sq "Albanês (sq)" +${LangFileString} lng_sr "Sérvio (sr)" +${LangFileString} lng_sr@latin "Sérvio no alfabeto Latino (sr@latin)" +${LangFileString} lng_sv "Sueco (sv)" +${LangFileString} lng_ta "Tâmil (ta)" +${LangFileString} lng_te "Telugo (te)" +${LangFileString} lng_th "Tailandês (th)" +${LangFileString} lng_tr "Turco (tr)" +${LangFileString} lng_uk "Ucraniano (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamita (vi)" +${LangFileString} lng_zh_CN "Chinês/China (zh_CN)" +${LangFileString} lng_zh_TW "Chinese/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Romanian.nsh b/packaging/win32/languages/Romanian.nsh new file mode 100644 index 0000000..d7b0efd --- /dev/null +++ b/packaging/win32/languages/Romanian.nsh @@ -0,0 +1,55 @@ +;Language: Romanian (1048) +;By Cristian Secară <cristi AT secarica DOT ro> +${LangFileString} CaptionDescription "Editor Open Source pentru grafică vectorială scalabilă (SVG)" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) este publicat sub licenÅ£a publică generală GNU (GPL). LicenÅ£a este furnizată aici numai cu scop informativ. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape a fost deja instalat de utilizatorul $0.$\r$\nDacă veÅ£i continua, s-ar putea să nu terminaÅ£i instalarea cu succes !$\r$\nAutentificaÅ£i-vă ca $0 ÅŸi încercaÅ£i din nou." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 a fost deja instalat. $\nVreÅ£i să dezinstalaÅ£i versiunea precedentă înainde de a instala $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nApăsaÅ£i butonul OK pentru a continua, sau butonul RENUNŢĂ pentru a opri instalarea." +${LangFileString} NO_ADMIN "Nu aveÅ£i privilegii de administrator.$\r$\nInstalarea Inkscape pentru toÅ£i utilizatorii ar putea să nu se termine cu succes.$\r$\nDebifaÅ£i opÅ£iunea „Pentru toÅ£i utilizatoriiâ€." +${LangFileString} NOT_SUPPORTED "Este ÅŸtiut faptul că Inkscape nu rulează sub Windows 95/98/ME !$\r$\nVerificaÅ£i saitul web oficial pentru informaÅ£ii detaliate." +${LangFileString} Full "Complet" +${LangFileString} Optimal "Optim" +${LangFileString} Minimal "Minim" +${LangFileString} Core "Editorul SVG Inkscape (necesar)" +${LangFileString} CoreDesc "FiÅŸiere ÅŸi dll-uri indispensabile pentru Inkscape" +${LangFileString} GTKFiles "Mediul GTK+ Runtime (necesar)" +${LangFileString} GTKFilesDesc "Kit de instrumente multiplatformă pentru interfeÅ£e grafice, folosit de Inkscape" +${LangFileString} Shortcuts "Scurtături" +${LangFileString} ShortcutsDesc "Scurtături pentru pornirea Inkscape" +${LangFileString} Alluser "Pentru toÅ£i utilizatorii" +${LangFileString} AlluserDesc "Instalează această aplicaÅ£ie pentru oricine foloseÅŸte acest calculator (toÅ£i utilizatorii)" +${LangFileString} Desktop "Desktop" +${LangFileString} DesktopDesc "Creează o scurtătură către Inkscape pe Desktop" +${LangFileString} Startmenu "Meniul Start" +${LangFileString} StartmenuDesc "Creează o intrare pentru Inkscape în meniul Start" +${LangFileString} Quicklaunch "Lansare rapidă" +${LangFileString} QuicklaunchDesc "Creează o scurtătură către Inkscape pe bara de lansare rapidă" +${LangFileString} SVGWriter "Deschidere fiÅŸiere SVG cu Inkscape" +${LangFileString} SVGWriterDesc "Selectează Inkscape ca editor implicit pentru fiÅŸiere SVG" +${LangFileString} ContextMenu "Meniu contextual" +${LangFileString} ContextMenuDesc "Adaugă Inkscape în meniul contextual pentru fiÅŸiere SVG" +${LangFileString} DeletePrefs "Åžtergere preferinÅ£ele personale" +${LangFileString} DeletePrefsDesc "Åžterge preferinÅ£ele personale rămase de la instalări precedente" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "FiÅŸiere adiÅ£ionale" +${LangFileString} AddfilesDesc "FiÅŸiere adiÅ£ionale" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Exemple" +${LangFileString} ExamplesDesc "Exemple folosind Inkscape" +${LangFileString} Tutorials "Ghiduri practice" +${LangFileString} TutorialsDesc "Ghiduri practice pentru utilizarea Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Traduceri" +${LangFileString} LanguagesDesc "Instalează diverse traduceri ale interfeÅ£ei pentru Inkscape" +${LangFileString} UInstOpt "OpÅ£iuni de dezinstalare" +${LangFileString} UInstOpt1 "AlegeÅ£i dintre opÅ£iunile adiÅ£ionale" +${LangFileString} PurgePrefs "Păstrează preferinÅ£ele personale" +${LangFileString} UninstallLogNotFound "FiÅŸierul $INSTDIR\uninstall.log nu a fost găsit !$\r$\nDezinstalaÅ£i prin golirea manuală a $INSTDIR !" +${LangFileString} FileChanged "FiÅŸierul $filename a fost modificat după instalare.$\r$\nTot vreÅ£i să ÅŸtergeÅ£i acel fiÅŸier ?" +${LangFileString} Yes "Da" +${LangFileString} AlwaysYes "Da întotdeauna" +${LangFileString} No "Nu" +${LangFileString} AlwaysNo "Nu întotdeauna" diff --git a/packaging/win32/languages/Romanian_languageNames.nsh b/packaging/win32/languages/Romanian_languageNames.nsh new file mode 100644 index 0000000..3223601 --- /dev/null +++ b/packaging/win32/languages/Romanian_languageNames.nsh @@ -0,0 +1,92 @@ +### Romanian (ro) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Romanian.nsh' +${LangFileString} lng_ar "Arabă (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "Azerbaijani (az)" +${LangFileString} lng_be "Belarusă (be)" +${LangFileString} lng_bg "Bulgară (bg)" +${LangFileString} lng_bn "Bengaleză (bn)" +${LangFileString} lng_bn_BD "Bengaleză/Bangladesh (bn_BD)" +${LangFileString} lng_br "Bretonă (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalană (ca)" +${LangFileString} lng_ca@valencia "Catalană Valencia (ca@valencia)" +${LangFileString} lng_cs "Cehă (cs)" +${LangFileString} lng_da "Daneză (da)" +${LangFileString} lng_de "Germană (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Greacă (el)" +${LangFileString} lng_en "Engleză (en)" +${LangFileString} lng_en_AU "Engleză/Australia (en_AU)" +${LangFileString} lng_en_CA "Engleză/Canada (en_CA)" +${LangFileString} lng_en_GB "Engleză/Marea Britanie (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Spaniolă (es)" +${LangFileString} lng_es_MX "Spaniolă/Mexic (es_MX)" +${LangFileString} lng_et "Estoniană (et)" +${LangFileString} lng_eu "Bască (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "Finlandeză (fi)" +${LangFileString} lng_fr "Franceză (fr)" +${LangFileString} lng_ga "Irlandeză (ga)" +${LangFileString} lng_gl "Galeză (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Ebraică (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croată (hr)" +${LangFileString} lng_hu "Maghiară (hu)" +${LangFileString} lng_hy "Armenă (hy)" +${LangFileString} lng_id "Indoneză (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "Italiană (it)" +${LangFileString} lng_ja "Japoneză (ja)" +${LangFileString} lng_km "Khmer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Koreană (ko)" +${LangFileString} lng_kok "(ko)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "Lituaniană (lt)" +${LangFileString} lng_lv "Letonă (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedoneană (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongolă (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Norwegiană BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepaleză (ne)" +${LangFileString} lng_nl "Olandeză (nl)" +${LangFileString} lng_nn "Norwegiană Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabi (pa)" +${LangFileString} lng_pl "Poloneză (pl)" +${LangFileString} lng_pt "Portugheză (pt)" +${LangFileString} lng_pt_BR "Portugheză/Brazilia (pt_BR)" +${LangFileString} lng_ro "Română (ro)" +${LangFileString} lng_ru "Rusă (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali în script Devanagari (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi în script Devanagari (sd@deva)" +${LangFileString} lng_sk "Slovacă (sk)" +${LangFileString} lng_sl "Slovenă (sl)" +${LangFileString} lng_sq "Albaniană (sq)" +${LangFileString} lng_sr "Sârbă (sr)" +${LangFileString} lng_sr@latin "Sârbă în alfabet latin (sr@latin)" +${LangFileString} lng_sv "Suedeză (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Tailandeză (th)" +${LangFileString} lng_tr "Turcă (tr)" +${LangFileString} lng_uk "Ucraineană (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnameză (vi)" +${LangFileString} lng_zh_CN "Chineză/China (zh_CN)" +${LangFileString} lng_zh_TW "Chineză/Taiwan (zh_TW)" diff --git a/packaging/win32/languages/Russian.nsh b/packaging/win32/languages/Russian.nsh new file mode 100644 index 0000000..539e958 --- /dev/null +++ b/packaging/win32/languages/Russian.nsh @@ -0,0 +1,55 @@ +;Language: Russian (1049) +;By Alexandre Prokoudine <alexandre.prokoudine@gmail.com> +${LangFileString} CaptionDescription "Редактор векторной графики Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ñ‹Ð¼ иÑходным кодом" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) выпущен на уÑловиÑÑ… GNU General Public License (GPL). Ð›Ð¸Ñ†ÐµÐ½Ð·Ð¸Ñ Ð¿Ñ€ÐµÐ´Ð»Ð°Ð³Ð°ÐµÑ‚ÑÑ Ð´Ð»Ñ Ð¾Ð·Ð½Ð°ÐºÐ¾Ð¼Ð»ÐµÐ½Ð¸Ñ. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape уÑтановлен пользователем $0.$\r$\nЕÑли вы продолжите, уÑтановка может не завершитьÑÑ ÑƒÑпешно!$\r$\nВойдите в ÑиÑтему как пользователь $0 и попробуйте Ñнова." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 уже уÑтановлена. $\nÐ’Ñ‹ хотите удалить предыдущую верÑию перед уÑтановкой $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nÐажмите «OK» Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð´Ð¾Ð»Ð¶ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ «Отмена» Ð´Ð»Ñ Ð¿Ñ€ÐµÑ€Ñ‹Ð²Ð°Ð½Ð¸Ñ ÑƒÑтановки." +${LangFileString} NO_ADMIN "У Ð²Ð°Ñ Ð½ÐµÑ‚ прав админиÑтратора.$\r$\nУÑтановка Inkscape Ð´Ð»Ñ Ð²Ñех пользователей может не завершитьÑÑ ÑƒÑпешно.$\r$\nÐе иÑпользуйте параметр Â«Ð”Ð»Ñ Ð²Ñех пользователей»." +${LangFileString} NOT_SUPPORTED "Inkscape не работает в Windows 95/98/ME!$\r$\nПодробноÑти изложены на Ñайте программы." +${LangFileString} Full "ПолнаÑ" +${LangFileString} Optimal "ОптимальнаÑ" +${LangFileString} Minimal "МинимальнаÑ" +${LangFileString} Core "Inkscape, редактор SVG (требуетÑÑ)" +${LangFileString} CoreDesc "ОÑновные файлы и библиотеки Inkscape" +${LangFileString} GTKFiles "Среда иÑÐ¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ GTK+ (требуетÑÑ)" +${LangFileString} GTKFilesDesc "Многоплатформенные ÑредÑтва разработки, необходимые Ð´Ð»Ñ Inkscape" +${LangFileString} Shortcuts "Ярлыки" +${LangFileString} ShortcutsDesc "Ярлыки Ð´Ð»Ñ Ð·Ð°Ð¿ÑƒÑка Inkscape" +${LangFileString} Alluser "Ð”Ð»Ñ Ð²Ñех пользователей" +${LangFileString} AlluserDesc "УÑтановить программу Ð´Ð»Ñ Ð²Ñех пользователей Ñтого компьютера" +${LangFileString} Desktop "Рабочий Ñтол" +${LangFileString} DesktopDesc "Создать Ñрлык Ð´Ð»Ñ Inkscape на Рабочем Ñтоле" +${LangFileString} Startmenu "Меню «ПуÑк»" +${LangFileString} StartmenuDesc "Создать группу Inkscape в меню «ПуÑк»" +${LangFileString} Quicklaunch "Панель быÑтрого запуÑка" +${LangFileString} QuicklaunchDesc "Создать Ñрлык Ð´Ð»Ñ Inkscape в панели быÑтрого запуÑка" +${LangFileString} SVGWriter "Открывать файлы SVG в Inkscape" +${LangFileString} SVGWriterDesc "Выбрать Inkscape редактором файлов SVG по умолчанию" +${LangFileString} ContextMenu "КонтекÑтное меню" +${LangFileString} ContextMenuDesc "Добавить Inkscape в контекÑтное меню Ð´Ð»Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð² SVG" +${LangFileString} DeletePrefs "Удалить личные наÑтройки" +${LangFileString} DeletePrefsDesc "Удалить личные наÑтройки, оÑтавшиеÑÑ Ð¾Ñ‚ предыдущих верÑий программы" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "Интерпретатор Ð´Ð»Ñ Ñзыка Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¼Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Python и модули Python Ð´Ð»Ñ Ð·Ð°Ð¿ÑƒÑка раÑширений Inkscape." +${LangFileString} Addfiles "Дополнительные файлы" +${LangFileString} AddfilesDesc "Дополнительные файлы" +${LangFileString} Extensions "РаÑширениÑ" +${LangFileString} ExtensionsDesc "РаÑÑˆÐ¸Ñ€ÐµÐ½Ð¸Ñ Inkscape (в том чиÑле, Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð° и ÑкÑпорта файлов)" +${LangFileString} Examples "Примеры" +${LangFileString} ExamplesDesc "Примеры файлов, Ñозданных в Inkscape" +${LangFileString} Tutorials "Уроки" +${LangFileString} TutorialsDesc "Уроки по иÑпользованию Inkscape" +${LangFileString} Dictionaries "Словари" +${LangFileString} DictionariesDesc "Словари Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ правопиÑÐ°Ð½Ð¸Ñ Ð² текÑтах на некоторых раÑпроÑтраненных Ñзыках" +${LangFileString} Languages "Переводы" +${LangFileString} LanguagesDesc "УÑтановка переводов Inkscape на разные Ñзыки" +${LangFileString} UInstOpt "Параметры ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¼Ñ‹ из ÑиÑтемы" +${LangFileString} UInstOpt1 "УбедитеÑÑŒ в том, что указали дополнительные параметры" +${LangFileString} PurgePrefs "Сохранить личные наÑтройки" +${LangFileString} UninstallLogNotFound "Файл $INSTDIR\uninstall.log не обнаружен!$\r$\nВыполните деинÑталлÑцию очиÑткой каталога $INSTDIR!" +${LangFileString} FileChanged "Файл $filename был изменён поÑле уÑтановки.$\r$\nÐ’Ñ‹ дейÑтвительно хотите удалить его?" +${LangFileString} Yes "Да" +${LangFileString} AlwaysYes "Ð’Ñегда отвечать «Да»" +${LangFileString} No "Ðет" +${LangFileString} AlwaysNo "Ð’Ñегда отвечать «Ðет»" diff --git a/packaging/win32/languages/Russian_languageNames.nsh b/packaging/win32/languages/Russian_languageNames.nsh new file mode 100644 index 0000000..3d1f1f2 --- /dev/null +++ b/packaging/win32/languages/Russian_languageNames.nsh @@ -0,0 +1,92 @@ +### Russian (ru) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Russian.nsh' +${LangFileString} lng_ar "ÐрабÑкий (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "ÐзербайджанÑкий (az)" +${LangFileString} lng_be "БелоруÑÑкий (be)" +${LangFileString} lng_bg "БолгарÑкий (bg)" +${LangFileString} lng_bn "БенгальÑкий (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "БретонÑкий (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "КаталонÑкий (ca)" +${LangFileString} lng_ca@valencia "КаталонÑкий, ВаленÑÐ¸Ñ (ca@valencia)" +${LangFileString} lng_cs "ЧешÑкий (cs)" +${LangFileString} lng_da "ДатÑкий (da)" +${LangFileString} lng_de "Ðемецкий (de)" +${LangFileString} lng_doi "Догри (doi)" +${LangFileString} lng_dz "Дзонг-ÐºÑ (dz)" +${LangFileString} lng_el "ГречеÑкий (el)" +${LangFileString} lng_en "ÐнглийÑкий (en)" +${LangFileString} lng_en_AU "ÐнглийÑкий, ÐвÑÑ‚Ñ€Ð°Ð»Ð¸Ñ (en_AU)" +${LangFileString} lng_en_CA "ÐнглийÑкий, Канада (en_CA)" +${LangFileString} lng_en_GB "ÐнглийÑкий, Ð’ÐµÐ»Ð¸ÐºÐ¾Ð±Ñ€Ð¸Ñ‚Ð°Ð½Ð¸Ñ (en_GB)" +${LangFileString} lng_eo "ÐÑперанто (eo)" +${LangFileString} lng_es "ИÑпанÑкий (es)" +${LangFileString} lng_es_MX "ИÑпанÑкий, МекÑика (es_MX)" +${LangFileString} lng_et "ÐÑтонÑкий (et)" +${LangFileString} lng_eu "БаÑкÑкий (eu)" +${LangFileString} lng_fa "ФарÑи (fa)" +${LangFileString} lng_fi "ФинÑкий (fi)" +${LangFileString} lng_fr "ФранцузÑкий (fr)" +${LangFileString} lng_ga "ИрландÑкий (ga)" +${LangFileString} lng_gl "ГалицийÑкий (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Иврит (he)" +${LangFileString} lng_hi "Хинди (hi)" +${LangFileString} lng_hr "ХорватÑкий (hr)" +${LangFileString} lng_hu "ВенгерÑкий (hu)" +${LangFileString} lng_hy "ÐрмÑнÑкий (hy)" +${LangFileString} lng_id "ИндонезийÑкий (id)" +${LangFileString} lng_is "ИÑландÑкий (is)" +${LangFileString} lng_it "ИтальÑнÑкий (it)" +${LangFileString} lng_ja "ЯпонÑкий (ja)" +${LangFileString} lng_km "КхмерÑкий (km)" +${LangFileString} lng_kn "Канада (kn)" +${LangFileString} lng_ko "КорейÑкий (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "КашмирÑкий перÑо-арабÑкий Ñкрипт (ks@aran)" +${LangFileString} lng_ks@deva "КашмирÑкий Девангари Ñкрипт (ks@deva)" +${LangFileString} lng_lt "ЛитовÑкий (lt)" +${LangFileString} lng_lv "ЛатвийÑкий (lv)" +${LangFileString} lng_mai "Майтхили (mai)" +${LangFileString} lng_mk "МакедонÑкий (mk)" +${LangFileString} lng_ml "МалаÑлам (ml)" +${LangFileString} lng_mn "МонгольÑкий (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Манипури бенгальÑкий Ñкрипт (mni@beng)" +${LangFileString} lng_mr "Марати (mr)" +${LangFileString} lng_nb "ÐорвежÑкий, бокмол (nb)" +${LangFileString} lng_ne "ÐепальÑкий (ne)" +${LangFileString} lng_nl "ГолландÑкий (nl)" +${LangFileString} lng_nn "ÐорвежÑкий, нюнорÑк (nn)" +${LangFileString} lng_or "ÐžÐ´ÑŒÑ (or)" +${LangFileString} lng_pa "Пенджаби (pa)" +${LangFileString} lng_pl "ПольÑкий (pl)" +${LangFileString} lng_pt "ПортугальÑкий (pt)" +${LangFileString} lng_pt_BR "ПортугальÑкий, Ð‘Ñ€Ð°Ð·Ð¸Ð»Ð¸Ñ (pt_BR)" +${LangFileString} lng_ro "РумынÑкий (ro)" +${LangFileString} lng_ru "РуÑÑкий (ru)" +${LangFileString} lng_rw "Руанда (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Синдхи (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "Словацкий (sk)" +${LangFileString} lng_sl "СловенÑкий (sl)" +${LangFileString} lng_sq "ÐлбанÑкий (sq)" +${LangFileString} lng_sr "СербÑкий, кириллица (sr)" +${LangFileString} lng_sr@latin "СербÑкий, латиница (sr@latin)" +${LangFileString} lng_sv "ШведÑкий (sv)" +${LangFileString} lng_ta "ТамильÑкий (ta)" +${LangFileString} lng_te "Телугу (te)" +${LangFileString} lng_th "ТайÑкий (th)" +${LangFileString} lng_tr "Турецкий (tr)" +${LangFileString} lng_uk "УкраинÑкий (uk)" +${LangFileString} lng_ur "Урду (ur)" +${LangFileString} lng_vi "ВьетнамÑкий (vi)" +${LangFileString} lng_zh_CN "КитайÑкий, Китай (zh_CN)" +${LangFileString} lng_zh_TW "КитайÑкий, Тайвань (zh_TW)" diff --git a/packaging/win32/languages/SimpChinese.nsh b/packaging/win32/languages/SimpChinese.nsh new file mode 100644 index 0000000..48a2a3a --- /dev/null +++ b/packaging/win32/languages/SimpChinese.nsh @@ -0,0 +1,55 @@ +;Language: Simplified Chinese (2052) +;By Liang Wang <fabienow@gmail.com> +${LangFileString} CaptionDescription "å¼€æºå‘é‡ç»˜å›¾è½¯ä»¶" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) 以GNU通用公共许å¯è¯å‘行。 在些æ供许å¯è¯å†…容以供å‚考。 $_CLICK" +${LangFileString} DIFFERENT_USER "使用者 $0 å·²ç»å®‰è£… Inkscape。$\r$\n如果继ç»ä½ å¯èƒ½æ— 法æˆåŠŸå®Œæˆï¼$\r$\n请以 $0 身份登入åŽå†è¯•ä¸€æ¬¡ã€‚" +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 å·²ç»å®‰è£…。 $\nä½ è¦åœ¨å®‰è£… $(^Name) 之å‰ç§»é™¤ä¸Šä¸€ä¸ªç‰ˆæœ¬ï¼Ÿ" +${LangFileString} OK_CANCEL_DESC "$\n$\n按“确定â€ç»§ç»æˆ–者按“å–消â€ä¸æ¢ã€‚" +${LangFileString} NO_ADMIN "ä½ æ²¡æœ‰ç³»ç»Ÿç®¡ç†å‘˜æƒé™ã€‚$\r$\n安装 Inkscape 到所有使用者å¯èƒ½æ— 法æˆåŠŸå®Œæˆã€‚$\r$\nå–消勾选“安装给所有使用者â€é€‰é¡¹." +${LangFileString} NOT_SUPPORTED "Inkscape æ— æ³•äºŽ Windows 95/98/ME 下è¿è¡Œ!$\r$\n请查看官方网站的详细信æ¯ã€‚" +${LangFileString} Full "完整" +${LangFileString} Optimal "ç†æƒ³" +${LangFileString} Minimal "最å°" +${LangFileString} Core "Inkscape SVG 编辑程åº(å¿…é¡»)" +${LangFileString} CoreDesc "Inkscape æ ¸å¿ƒåº“å’Œ DLL " +${LangFileString} GTKFiles "GTK+ 执行环境(å¿…é¡»)" +${LangFileString} GTKFilesDesc "Inkscape ä½¿ç”¨çš„è·¨å¹³å° GUI 工具组" +${LangFileString} Shortcuts "å¿«æ·æ–¹å¼" +${LangFileString} ShortcutsDesc "å¯åŠ¨ Inkscape çš„å¿«æ·æ–¹å¼" +${LangFileString} Alluser "安装给所有使用者" +${LangFileString} AlluserDesc "安装这个应用程åºç»™ä»»ä½•ä½¿ç”¨è¿™å°ç”µè„‘的人(所有使用者)" +${LangFileString} Desktop "æ¡Œé¢" +${LangFileString} DesktopDesc "于桌é¢ä¸Šå»ºç«‹ Inkscape å¿«æ·æ–¹å¼" +${LangFileString} Startmenu "开始èœå•" +${LangFileString} StartmenuDesc "于开始èœå•å»ºç«‹ Inkscape 项目" +${LangFileString} Quicklaunch "快速å¯åŠ¨æ " +${LangFileString} QuicklaunchDesc "于快速å¯åŠ¨æ 建立 Inkscape å¿«æ·æ–¹å¼" +${LangFileString} SVGWriter "用 Inkscape 打开 SVG 文档" +${LangFileString} SVGWriterDesc "选择 Inkscape 作为 SVG 文件类型的首选编辑程åº" +${LangFileString} ContextMenu "å³é”®èœå•" +${LangFileString} ContextMenuDesc "新增 Inkscape 到 SVG 文件类型的å³é”®èœå•" +${LangFileString} DeletePrefs "åˆ é™¤ä¸ªäººå好设定" +${LangFileString} DeletePrefsDesc "åˆ é™¤ä¸Šä¸€æ¬¡å®‰è£…é—留的个人å好设定" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "其他文件类型" +${LangFileString} AddfilesDesc "其他文件类型" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "范例" +${LangFileString} ExamplesDesc "Inkscape 使用范例" +${LangFileString} Tutorials "指导手册" +${LangFileString} TutorialsDesc "Inkscape 使用说明" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "è¯è¨€" +${LangFileString} LanguagesDesc "安装 Inkscape å„ç§è¯è¨€ç¿»è¯‘" +${LangFileString} UInstOpt "å安装选项" +${LangFileString} UInstOpt1 "请选择其他选项" +${LangFileString} PurgePrefs "ä¿ç•™ä¸ªäººå好设定" +${LangFileString} UninstallLogNotFound "没有找到 $INSTDIR\uninstall.log ï¼$\r$\n请自行清除 $INSTDIR 文件夹來å安装ï¼" +${LangFileString} FileChanged "å®‰è£…åŽ $filename 文件类型已å˜æ›´ã€‚$\r$\nä½ æ˜¯å¦ä»ç„¶è¦åˆ 除那个文件类型?" +${LangFileString} Yes "是" +${LangFileString} AlwaysYes "全部皆是" +${LangFileString} No "å¦" +${LangFileString} AlwaysNo "全部皆å¦" diff --git a/packaging/win32/languages/SimpChinese_languageNames.nsh b/packaging/win32/languages/SimpChinese_languageNames.nsh new file mode 100644 index 0000000..e17468c --- /dev/null +++ b/packaging/win32/languages/SimpChinese_languageNames.nsh @@ -0,0 +1,92 @@ +### Chinese/China (zh_CN) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'SimpChinese.nsh' +${LangFileString} lng_ar "阿拉伯è¯(ar)" +${LangFileString} lng_as "阿è¨å§†è¯(as)" +${LangFileString} lng_az "阿塞拜疆è¯(az)" +${LangFileString} lng_be "白俄罗斯è¯(be)" +${LangFileString} lng_bg "ä¿åŠ 利亚è¯(bg)" +${LangFileString} lng_bn "åŸåŠ 拉è¯(bn)" +${LangFileString} lng_bn_BD "åŸåŠ 拉è¯/西åŸåŠ 拉 (bn_BD)" +${LangFileString} lng_br "布利托尼è¯(br)" +${LangFileString} lng_brx "åšå¤šè¯(brx)" +${LangFileString} lng_ca "åŠ æ³°ç½—å°¼äºšè¯(ca)" +${LangFileString} lng_ca@valencia "ç“¦ä¼¦è¥¿äºšåŠ æ³°ç½—å°¼äºšè¯(ca@valencia)" +${LangFileString} lng_cs "æ·å…‹è¯(cs)" +${LangFileString} lng_da "丹麦è¯(da)" +${LangFileString} lng_de "å¾·è¯(de)" +${LangFileString} lng_doi "å¤šæ ¼æ‹‰è¯(doi)" +${LangFileString} lng_dz "ä¸ä¸¹è¯(dz)" +${LangFileString} lng_el "希腊è¯(el)" +${LangFileString} lng_en "英è¯(en)" +${LangFileString} lng_en_AU "英è¯/澳大利亚(en_AU)" +${LangFileString} lng_en_CA "英è¯/åŠ æ‹¿å¤§(en_CA)" +${LangFileString} lng_en_GB "英è¯/英国(en_GB)" +${LangFileString} lng_eo "世界è¯(eo)" +${LangFileString} lng_es "西ç牙è¯(es)" +${LangFileString} lng_es_MX "西ç牙è¯/墨西哥(es_MX)" +${LangFileString} lng_et "爱沙尼亚è¯(et)" +${LangFileString} lng_eu "巴斯克è¯(eu)" +${LangFileString} lng_fa "波斯è¯(fa)" +${LangFileString} lng_fi "芬兰è¯(fi)" +${LangFileString} lng_fr "法è¯(fr)" +${LangFileString} lng_ga "爱尔兰è¯(ga)" +${LangFileString} lng_gl "åŠ åˆ©è¥¿äºšè¯(gl)" +${LangFileString} lng_gu "å¤å‰æ‹‰ç‰¹è¯(gu)" +${LangFileString} lng_he "希伯æ¥è¯(he)" +${LangFileString} lng_hi "å°åœ°è¯(hi)" +${LangFileString} lng_hr "克罗地亚è¯(hr)" +${LangFileString} lng_hu "匈牙利è¯(hu)" +${LangFileString} lng_hy "亚美尼亚è¯(hy)" +${LangFileString} lng_id "å°åº¦å°¼è¥¿äºšè¯(id)" +${LangFileString} lng_is "冰岛è¯(is)" +${LangFileString} lng_it "æ„大利è¯(it)" +${LangFileString} lng_ja "æ—¥è¯(ja)" +${LangFileString} lng_km "柬埔寨è¯(km)" +${LangFileString} lng_kn "åŽé‚£è¾¾æ–‡ (kn)" +${LangFileString} lng_ko "韩è¯(ko)" +${LangFileString} lng_kok "å”å¡å°¼è¯(kok)" +${LangFileString} lng_kok@latin "å”å¡å°¼è¯ï¼Œæ‹‰ä¸å—书写(sr@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "立陶宛è¯(lt)" +${LangFileString} lng_lv "拉脱维亚è¯(lv)" +${LangFileString} lng_mai "迈蒂利è¯(mai)" +${LangFileString} lng_mk "马其顿è¯(mk)" +${LangFileString} lng_ml "马拉雅拉姆è¯(ml)" +${LangFileString} lng_mn "è’™å¤è¯(mn)" +${LangFileString} lng_mni "曼尼普尔è¯(mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "马拉地è¯(mr)" +${LangFileString} lng_nb "挪å¨å·´å…‹æ‘©è¯(nb)" +${LangFileString} lng_ne "尼泊尔è¯(ne)" +${LangFileString} lng_nl "è·å…°è¯(nl)" +${LangFileString} lng_nn "挪å¨å°¼è¯ºæ–¯å…‹è¯(nn)" +${LangFileString} lng_or "奥里亚è¯(or)" +${LangFileString} lng_pa "潘贾比è¯(pa)" +${LangFileString} lng_pl "波兰è¯(pl)" +${LangFileString} lng_pt "è‘¡è„牙è¯(pt)" +${LangFileString} lng_pt_BR "è‘¡è„牙è¯/巴西(pt_BR)" +${LangFileString} lng_ro "罗马尼亚è¯(ro)" +${LangFileString} lng_ru "ä¿„è¯(ru)" +${LangFileString} lng_rw "å¢æ—ºè¾¾è¯(rw)" +${LangFileString} lng_sa "梵è¯(sa)" +${LangFileString} lng_sat "桑塔尔è¯(sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "ä¿¡å¾·è¯(sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "斯洛ä¼å…‹è¯(sk)" +${LangFileString} lng_sl "斯洛文尼亚è¯(sl)" +${LangFileString} lng_sq "阿尔巴尼亚è¯(sq)" +${LangFileString} lng_sr "塞尔维亚è¯(sr)" +${LangFileString} lng_sr@latin "塞尔维亚è¯ï¼Œæ‹‰ä¸å—书写(sr@latin)" +${LangFileString} lng_sv "ç‘žå…¸è¯(sv)" +${LangFileString} lng_ta "泰米尔è¯(ta)" +${LangFileString} lng_te "æ³°å¢å›ºè¯(te)" +${LangFileString} lng_th "æ³°è¯(th)" +${LangFileString} lng_tr "土耳其è¯(tr)" +${LangFileString} lng_uk "乌克兰è¯(uk)" +${LangFileString} lng_ur "乌尔都è¯(ur)" +${LangFileString} lng_vi "越å—è¯(vi)" +${LangFileString} lng_zh_CN "ä¸æ–‡/ä¸å›½(zh_CN)" +${LangFileString} lng_zh_TW "ä¸æ–‡/å°æ¹¾(zh_TW)" diff --git a/packaging/win32/languages/Slovak.nsh b/packaging/win32/languages/Slovak.nsh new file mode 100644 index 0000000..befe7f4 --- /dev/null +++ b/packaging/win32/languages/Slovak.nsh @@ -0,0 +1,55 @@ +;Language: Slovak (1051) +;By Ivan Masár <helix84@centrum.sk> +${LangFileString} CaptionDescription "Open source editor SVG grafiky" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) je možné Å¡ÃriÅ¥ za podmienok General Public License (GPL). LicenÄná zmluva je tu len pre informaÄné úÄely. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape nainÅ¡taloval použÃvateľ $0.$\r$\nInÅ¡talácia nemusà správne skonÄiÅ¥, ak v nej budete pokraÄovaÅ¥!$\r$\nProsÃm, prihláste sa ako $0 a spustite inÅ¡taláciu znova." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 už je nainÅ¡talovaný. $\nChcete odstrániÅ¥ predchádzajúcu verziu predtým, než nainÅ¡talujete $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPokraÄujte stlaÄenÃm OK alebo zruÅ¡te inÅ¡taláciu stlaÄenÃm ZruÅ¡iÅ¥." +${LangFileString} NO_ADMIN "Nemáte práva správcu.$\r$\nInÅ¡talácia Inkscape pre vÅ¡etkých použÃvateľov nemusà skonÄiÅ¥ úspeÅ¡ne.$\r$\nZruÅ¡te oznaÄenie voľby „Pre vÅ¡etkých použÃvateľov“." +${LangFileString} NOT_SUPPORTED "Inkscape nebežà na Windows 95/98/ME!$\r$\nPodrobnejÅ¡ie informácie nájdete na oficiálnom webe." +${LangFileString} Full "Plná" +${LangFileString} Optimal "Optimálna" +${LangFileString} Minimal "Minimálna" +${LangFileString} Core "Inkscape SVG editor (povinné)" +${LangFileString} CoreDesc "Súbory a knižnice Inkscape" +${LangFileString} GTKFiles "GTK+ runtime environment (povinné)" +${LangFileString} GTKFilesDesc "Multiplatformová sada použÃvateľského rozhrania použitého v Inkscape" +${LangFileString} Shortcuts "Zástupcovia" +${LangFileString} ShortcutsDesc "Zástupcovia pre Å¡tart Inkscape" +${LangFileString} Alluser "pre vÅ¡etkých použÃvateľov" +${LangFileString} AlluserDesc "InÅ¡talovaÅ¥ aplikáciu pre kohokoľvek, kto použÃva tento poÄÃtaÄ. (vÅ¡etci použÃvatelia)" +${LangFileString} Desktop "Plocha" +${LangFileString} DesktopDesc "VytvoÅ™it zástupcu Inkscape na ploche" +${LangFileString} Startmenu "Ponuka Å tart" +${LangFileString} StartmenuDesc "VytvoriÅ¥ pre Inkscape položku ve ponuke Å tart" +${LangFileString} Quicklaunch "Panel rýchleho spustenia" +${LangFileString} QuicklaunchDesc "VytvoriÅ¥ pre Inkscape zástupcu v paneli rýchleho spustenia" +${LangFileString} SVGWriter "OtváraÅ¥ SVG súbory v Inkscape" +${LangFileString} SVGWriterDesc "VybraÅ¥ Inkscape ako Å¡tandardný editor pre SVG súbory" +${LangFileString} ContextMenu "Kontextová ponuka" +${LangFileString} ContextMenuDesc "PridaÅ¥ Inkscape do kontextového menu pre SVG súbory" +${LangFileString} DeletePrefs "ZmazaÅ¥ osobné nastavenia" +${LangFileString} DeletePrefsDesc "ZmazaÅ¥ osobné nastavenia ponechané z predchádzajúcich inÅ¡taláciÃ" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "ÄŽalÅ¡ie súbory" +${LangFileString} AddfilesDesc "ÄŽalÅ¡ie súbory" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "PrÃklady" +${LangFileString} ExamplesDesc "PrÃklady použÃvania Inkscape" +${LangFileString} Tutorials "Sprievodcovia" +${LangFileString} TutorialsDesc "Sprievodcovia funkciami Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Jazykové sady" +${LangFileString} LanguagesDesc "NainÅ¡talovaÅ¥ ÄalÅ¡ie jazykové sady Inkscape" +${LangFileString} UInstOpt "Možnosti deinÅ¡talácie" +${LangFileString} UInstOpt1 "Zvoľte prosÃm ÄalÅ¡ie možnosti" +${LangFileString} PurgePrefs "PonechaÅ¥ osobné nastavenia" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log nebol nájdený!$\r$\nProsÃm, odinÅ¡talujte ruÄným vyÄistenÃm adresára $INSTDIR !" +${LangFileString} FileChanged "Súbor $filename sa po inÅ¡talácii zmenil.$\r$\nChcete ho napriek tomu vymazaÅ¥?" +${LangFileString} Yes "Ãno" +${LangFileString} AlwaysYes "Ãno vÅ¡etky" +${LangFileString} No "Nie" +${LangFileString} AlwaysNo "Nie vÅ¡etky" diff --git a/packaging/win32/languages/Slovak_languageNames.nsh b/packaging/win32/languages/Slovak_languageNames.nsh new file mode 100644 index 0000000..9206cf8 --- /dev/null +++ b/packaging/win32/languages/Slovak_languageNames.nsh @@ -0,0 +1,92 @@ +### Slovak (sk) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Slovak.nsh' +${LangFileString} lng_ar "arabÄina (ar)" +${LangFileString} lng_as "ásámÄina (as)" +${LangFileString} lng_az "azerbajdžanÄina (az)" +${LangFileString} lng_be "bieloruÅ¡tina (be)" +${LangFileString} lng_bg "bulharÄina (bg)" +${LangFileString} lng_bn "bengálÄina (bn)" +${LangFileString} lng_bn_BD "bengálÄina (Bangladéš) (bn)" +${LangFileString} lng_br "bretónÄina (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "katalánÄina (ca)" +${LangFileString} lng_ca@valencia "valencijÄina (ca@valencia)" +${LangFileString} lng_cs "ÄeÅ¡tina (cs)" +${LangFileString} lng_da "dánÄina (da)" +${LangFileString} lng_de "nemÄina (de)" +${LangFileString} lng_doi "dógrà (doi)" +${LangFileString} lng_dz "dzongkä (dz)" +${LangFileString} lng_el "gréÄtina (el)" +${LangFileString} lng_en "angliÄtina (en)" +${LangFileString} lng_en_AU "angliÄtina (Austrália) (en_AU)" +${LangFileString} lng_en_CA "angliÄtina (Kanada) (en_CA)" +${LangFileString} lng_en_GB "angliÄtina (Spojené kráľovstvo) (en_GB)" +${LangFileString} lng_eo "esperanto (eo)" +${LangFileString} lng_es "Å¡panielÄina (es)" +${LangFileString} lng_es_MX "Å¡panielÄina (Mexiko) (es_MX)" +${LangFileString} lng_et "estónÄina (et)" +${LangFileString} lng_eu "baskiÄtina (eu)" +${LangFileString} lng_fa "perzÅ¡tina (fa)" +${LangFileString} lng_fi "fÃnÄina (fi)" +${LangFileString} lng_fr "francúzÅ¡tina (fr)" +${LangFileString} lng_ga "ÃrÄina (ga)" +${LangFileString} lng_gl "galÃcijÄina (gl)" +${LangFileString} lng_gu "gudžarátÄina (gu)" +${LangFileString} lng_he "hebrejÄina (he)" +${LangFileString} lng_hi "hindÄina (hi)" +${LangFileString} lng_hr "chorvátÄina (hr)" +${LangFileString} lng_hu "maÄarÄina (hu)" +${LangFileString} lng_hy "arménÄina (hy)" +${LangFileString} lng_id "indonézÅ¡tina (id)" +${LangFileString} lng_is "islandÄina (is)" +${LangFileString} lng_it "talianÄina (it)" +${LangFileString} lng_ja "japonÄina (ja)" +${LangFileString} lng_km "khmérÄina (km)" +${LangFileString} lng_kn "kannadÄina (kn)" +${LangFileString} lng_ko "kórejÄina (ko)" +${LangFileString} lng_kok "konkánÄina (kok)" +${LangFileString} lng_kok@latin "konkánÄina v latinke (kok@latin)" +${LangFileString} lng_ks@aran "kaÅ¡mÃrÄina v perzsko-arabskom skripte (ks@aran)" +${LangFileString} lng_ks@deva "kaÅ¡mÃrÄina v skripte Devanagari (ks@deva)" +${LangFileString} lng_lt "litovÄina (lt)" +${LangFileString} lng_lv "lotyÅ¡tina (lv)" +${LangFileString} lng_mai "maithilÄina (mai)" +${LangFileString} lng_mk "macedónÄina (mk)" +${LangFileString} lng_ml "malajálamÄina (ml)" +${LangFileString} lng_mn "mongolÄina (mn)" +${LangFileString} lng_mni "manÃpurÄina (mni)" +${LangFileString} lng_mni@beng "manÃpurÄina v bengálskom skripte (mni@beng)" +${LangFileString} lng_mr "maráthÄina (mr)" +${LangFileString} lng_nb "nórsky bokmÃ¥l (nb)" +${LangFileString} lng_ne "nepálÄina (ne)" +${LangFileString} lng_nl "holandÄina (nl)" +${LangFileString} lng_nn "nórsky nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "pandžábÄina (pa)" +${LangFileString} lng_pl "poľština (pl)" +${LangFileString} lng_pt "portugalÄina (pt)" +${LangFileString} lng_pt_BR "portugalÄina (BrazÃlia) (pt_BR)" +${LangFileString} lng_ro "rumunÄina (ro)" +${LangFileString} lng_ru "ruÅ¡tina (ru)" +${LangFileString} lng_rw "rwandÄina (rw)" +${LangFileString} lng_sa "sanskrit (sa)" +${LangFileString} lng_sat "santalÄina (sat)" +${LangFileString} lng_sat@deva "santalÄina v skripte Devanagari (sat@deva)" +${LangFileString} lng_sd "sindhÄina (sd)" +${LangFileString} lng_sd@deva "sindhÄina v skripte Devanagari (sd@deva)" +${LangFileString} lng_sk "slovenÄina (sk)" +${LangFileString} lng_sl "slovinÄina (sl)" +${LangFileString} lng_sq "albánÄina (sq)" +${LangFileString} lng_sr "srbÄina (sr)" +${LangFileString} lng_sr@latin "srbÄina v latinke (sr@latin)" +${LangFileString} lng_sv "Å¡védÄina (sv)" +${LangFileString} lng_ta "tamilÄina (ta)" +${LangFileString} lng_te "telugÄina (te)" +${LangFileString} lng_th "thajÄina (th)" +${LangFileString} lng_tr "tureÄtina (tr)" +${LangFileString} lng_uk "ukrajinÄina (uk)" +${LangFileString} lng_ur "urdÄina (ur)" +${LangFileString} lng_vi "vietnamÄina (vi)" +${LangFileString} lng_zh_CN "ÄÃnÅ¡tina (ÄŒÃna) (zh_CN)" +${LangFileString} lng_zh_TW "ÄÃnÅ¡tina (Taiwan) (zh_TW)" diff --git a/packaging/win32/languages/Slovenian.nsh b/packaging/win32/languages/Slovenian.nsh new file mode 100644 index 0000000..fd50222 --- /dev/null +++ b/packaging/win32/languages/Slovenian.nsh @@ -0,0 +1,55 @@ +;Language: Slovenian (1060) +;By Martin Srebotnjak +${LangFileString} CaptionDescription "Odprtokodni urejevalnik vektorskih slik" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) je izdan pod licenco GNU General Public License (GPL). Priložena licenca služi le v informativne namene. $_CLICK" +${LangFileString} DIFFERENT_USER "Uporabnik $0 je že namestil Inkscape.$\r$\nÄŒe nadaljujete, namestitev morda ne bo uspeÅ¡no dokonÄana!$\r$\nPonovno se prijavite kot $0 in poskusite znova." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 je že nameÅ¡Äen. $\nŽelite odstraniti predhodno razliÄico, preden namestite $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPritisnite V redu za nadaljevanje ali PrekliÄi za preklic." +${LangFileString} NO_ADMIN "Nimate skrbniÅ¡kih pravic.$\r$\nNameÅ¡Äanje programa Inkscape za vse uporabnike se morda ne bo konÄala uspeÅ¡no.$\r$\nIzklopite možnost 'za vse uporabnike'." +${LangFileString} NOT_SUPPORTED "Za Inkscape velja, da ne teÄe v okoljih Windows 95/98/ME!$\r$\nProsim, oglejte si uradno spletno stran za podrobnejÅ¡e informacije." +${LangFileString} Full "Polna" +${LangFileString} Optimal "Optimalna" +${LangFileString} Minimal "Minimalna" +${LangFileString} Core "Urejevalnik SVG Inkscape (obvezno)" +${LangFileString} CoreDesc "Osnovne datoteke in dll-ji Inkscape" +${LangFileString} GTKFiles "Izvajalno okolje GTK+ (obvezno)" +${LangFileString} GTKFilesDesc "VeÄplatformna osnova za uporabniÅ¡ki vmesnik, ki ga uporablja tudi Inkscape" +${LangFileString} Shortcuts "Bližnjice" +${LangFileString} ShortcutsDesc "Bližnjice za zagon Inkscape" +${LangFileString} Alluser "Za vse uporabnike" +${LangFileString} AlluserDesc "Namesti program za vse, ki uporabljajo ta raÄunalnik (vsi uporabniki)" +${LangFileString} Desktop "Namizje" +${LangFileString} DesktopDesc "Ustvari bližnjico do Inkscape na namizju" +${LangFileString} Startmenu "Meni Start" +${LangFileString} StartmenuDesc "Ustvari vnos Inkscape v meniju Start" +${LangFileString} Quicklaunch "Hitri zagon" +${LangFileString} QuicklaunchDesc "Ustvari bližnjico Inkscape na orodni vrstici Hitri zagon" +${LangFileString} SVGWriter "Odpiraj datoteke SVG z Inkscape-om" +${LangFileString} SVGWriterDesc "Izbere Inkscape kot privzeti urejevalnik za datoteke SVG" +${LangFileString} ContextMenu "Pojavni meni" +${LangFileString} ContextMenuDesc "Doda Inkscape v pojavni meni za datoteke SVG" +${LangFileString} DeletePrefs "IzbriÅ¡i osebne nastavitve" +${LangFileString} DeletePrefsDesc "IzbriÅ¡i osebne nastavitve, ki so ostale od predhodno nameÅ¡Äene razliÄice" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Dodatne datoteke" +${LangFileString} AddfilesDesc "Dodatne datoteke" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Primeri" +${LangFileString} ExamplesDesc "Primeri uporabe Inkscape" +${LangFileString} Tutorials "VodiÄi s primeri" +${LangFileString} TutorialsDesc "VodiÄi s primeri uporabe Inkscape-a" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Prevodi" +${LangFileString} LanguagesDesc "Namesti razliÄne prevode za Inkscape" +${LangFileString} UInstOpt "Možnosti odstranitve" +${LangFileString} UInstOpt1 "Izberite dodatne možnosti" +${LangFileString} PurgePrefs "Ohrani osebne nastavitve" +${LangFileString} UninstallLogNotFound "$INSTDIR\uninstall.log ni mogoÄe najti!$\r$\nNamestitev odstranite tako, da sami poÄistite mapo $INSTDIR!" +${LangFileString} FileChanged "Datoteka $filename je bila spremenjena po namestitvi.$\r$\nJo kljub temu želite izbrisati?" +${LangFileString} Yes "Da" +${LangFileString} AlwaysYes "vedno odgovori z Da" +${LangFileString} No "Ne" +${LangFileString} AlwaysNo "vedno odgovori z Ne" diff --git a/packaging/win32/languages/Slovenian_languageNames.nsh b/packaging/win32/languages/Slovenian_languageNames.nsh new file mode 100644 index 0000000..de2601e --- /dev/null +++ b/packaging/win32/languages/Slovenian_languageNames.nsh @@ -0,0 +1,92 @@ +### Slovenian (sl) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Slovenian.nsh' +${LangFileString} lng_ar "arabski (ar)" +${LangFileString} lng_as "Assamese (as)" +${LangFileString} lng_az "azerbajdžanski (az)" +${LangFileString} lng_be "beloruski (be)" +${LangFileString} lng_bg "bolgarski (bg)" +${LangFileString} lng_bn "bengalski (bn)" +${LangFileString} lng_bn_BD "Bengali/Bangladesh (bn_BD)" +${LangFileString} lng_br "bretonski (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "katalonski (ca)" +${LangFileString} lng_ca@valencia "katalonski, Valencia (ca@valencia)" +${LangFileString} lng_cs "ÄeÅ¡ki (cs)" +${LangFileString} lng_da "danski (da)" +${LangFileString} lng_de "nemÅ¡ki (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "džonkÅ¡ki (dz)" +${LangFileString} lng_el "grÅ¡ki (el)" +${LangFileString} lng_en "angleÅ¡ki (en)" +${LangFileString} lng_en_AU "angleÅ¡ki/Avstralija (en_AU)" +${LangFileString} lng_en_CA "angleÅ¡ki/Kanada (en_CA)" +${LangFileString} lng_en_GB "angleÅ¡ki/Velika Britanija (en_GB)" +${LangFileString} lng_eo "esperanto (eo)" +${LangFileString} lng_es "Å¡panski (es)" +${LangFileString} lng_es_MX "Å¡panski/Mehika (es_MX)" +${LangFileString} lng_et "estonski (et)" +${LangFileString} lng_eu "baskovski (eu)" +${LangFileString} lng_fa "farsi (fa)" +${LangFileString} lng_fi "finski (fi)" +${LangFileString} lng_fr "francoski (fr)" +${LangFileString} lng_ga "irski (ga)" +${LangFileString} lng_gl "galicijski (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "hebrejski (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "hrvaÅ¡ki (hr)" +${LangFileString} lng_hu "madžarski (hu)" +${LangFileString} lng_hy "armenski (hy)" +${LangFileString} lng_id "indonezijski (id)" +${LangFileString} lng_is "Icelandic (is)" +${LangFileString} lng_it "italijanski (it)" +${LangFileString} lng_ja "japonski (ja)" +${LangFileString} lng_km "kmerski (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "korejski (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani in Latin script (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "Kashmiri in Devanagari script (ks@deva)" +${LangFileString} lng_lt "litovski (lt)" +${LangFileString} lng_lv "latvijski (lt)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "makedonski (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "mongolski (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri in Bengali script (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "norveÅ¡ki, BokmÃ¥l (nb)" +${LangFileString} lng_ne "nepalski (ne)" +${LangFileString} lng_nl "nizozemski (nl)" +${LangFileString} lng_nn "norveÅ¡ki, Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "pandžabski (pa)" +${LangFileString} lng_pl "poljski (pl)" +${LangFileString} lng_pt "portugalski (pt)" +${LangFileString} lng_pt_BR "portugalski/Brazilija (pt_BR)" +${LangFileString} lng_ro "romunski (ro)" +${LangFileString} lng_ru "ruski (ru)" +${LangFileString} lng_rw "kinjarvandski (rw)" +${LangFileString} lng_sa "Sanskrit (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali in Devanagari script (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi in Devanagari script (sd@deva)" +${LangFileString} lng_sk "slovaÅ¡ki (sk)" +${LangFileString} lng_sl "slovenski (sl)" +${LangFileString} lng_sq "albanski (sq)" +${LangFileString} lng_sr "srbski (sr)" +${LangFileString} lng_sr@latin "srbski, latinica (sr@latin)" +${LangFileString} lng_sv "Å¡vedski (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "tajski (th)" +${LangFileString} lng_tr "turÅ¡ki (tr)" +${LangFileString} lng_uk "ukrajinski (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "vietnamski (vi)" +${LangFileString} lng_zh_CN "kitajski/Kitajska (zh_CN)" +${LangFileString} lng_zh_TW "kitajski/Tajvan (zh_TW)" diff --git a/packaging/win32/languages/Spanish.nsh b/packaging/win32/languages/Spanish.nsh new file mode 100644 index 0000000..c28d294 --- /dev/null +++ b/packaging/win32/languages/Spanish.nsh @@ -0,0 +1,55 @@ +;Language: Spanish (1034) +;By Lucas Vieites <lucas@codexion.com> +${LangFileString} CaptionDescription "Editor de gráficos vectoriales escalables (SVG) de código abierto" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) se publica bajo la Licencia Pública General GNU (GPL). Esta licencia se muestra aquà solamente como información. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape ha sido instalado por el usuario $0.$\r$\nSi continúa, la operación podrÃa finalizar sin éxito.$\r$\nInicie sesión como $0 y vuelva a intentarlo." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 ya ha sido instalado. $\n¿Desea eliminar la versión anterior antes de instalar $(^Name) ?" +${LangFileString} OK_CANCEL_DESC "$\n$\nPulse Aceptar para continuar o Cancelar para terminar." +${LangFileString} NO_ADMIN "No dispone de privilegios de administrador.$\r$\nLa instalación de Inkscape para todos los usuarios podrÃa terminar sin éxito.$\r$\ndesmarque la casilla «para todos los usuarios»." +${LangFileString} NOT_SUPPORTED "Inkscape no se ejecuta correctamente en Windows 95/98/ME$\r$\nAcceda a la página web oficial si desea obtener más información." +${LangFileString} Full "Completa" +${LangFileString} Optimal "Óptima" +${LangFileString} Minimal "MÃnima" +${LangFileString} Core "Inkscape Editor SVG (requerido)" +${LangFileString} CoreDesc "Archivos Inkscape básicos y dlls" +${LangFileString} GTKFiles "GTK+ Runtime Environment (requerido)" +${LangFileString} GTKFilesDesc "Un conjunto de herramientas GUI, utilizado por Inkscape" +${LangFileString} Shortcuts "Acceso directo" +${LangFileString} ShortcutsDesc "Accesos directos para iniciar Inkscape" +${LangFileString} Alluser "para todos los usuarios" +${LangFileString} AlluserDesc "Instalar esta aplicación para todos los que utilizan este equipo (todos los usuarios)" +${LangFileString} Desktop "Escritorio" +${LangFileString} DesktopDesc "Crear un acceso directo a Inkscape en el escritorio" +${LangFileString} Startmenu "Menú Inicio" +${LangFileString} StartmenuDesc "Crear una entrada en el menú Inicio para Inkscape" +${LangFileString} Quicklaunch "Acceso rápido" +${LangFileString} QuicklaunchDesc "Crear un acceso directo a Inkscape en la barra de acceso rápido" +${LangFileString} SVGWriter "Abrir archivos SVG con Inkscape" +${LangFileString} SVGWriterDesc "Seleccionar Inkscape como editor predeterminado para archivos" +${LangFileString} ContextMenu "Menú contextual" +${LangFileString} ContextMenuDesc "Añadir Inkscape al menú contextual para archivos SVG" +${LangFileString} DeletePrefs "Eliminar preferencias personales" +${LangFileString} DeletePrefsDesc "Eliminar las preferencias personales restantes de instalaciones anteriores." +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "Archivos adicionales" +${LangFileString} AddfilesDesc "Archivos adicionales" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "Ejemplos" +${LangFileString} ExamplesDesc "Ejemplos de uso de Inkscape" +${LangFileString} Tutorials "Tutoriales" +${LangFileString} TutorialsDesc "Tutoriales del uso de Inkscape" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "Traducciones" +${LangFileString} LanguagesDesc "Instalar varias traducciones para Inkscape" +${LangFileString} UInstOpt "Opciones de desinstalación" +${LangFileString} UInstOpt1 "Elija sus opciones adicionales" +${LangFileString} PurgePrefs "Guardar las preferencias personales" +${LangFileString} UninstallLogNotFound "No se ha encontrado $INSTDIR\uninstall.log.$\r$\nDesinstale limpiando el directorio $INSTDIR." +${LangFileString} FileChanged "El archivo $filename ha sido cambiado después de la instalación.$\r$\n¿Está seguro de que desea eliminar este archivo?" +${LangFileString} Yes "SÃ" +${LangFileString} AlwaysYes "siempre responder SÃ" +${LangFileString} No "No" +${LangFileString} AlwaysNo "siempre responder No" diff --git a/packaging/win32/languages/Spanish_languageNames.nsh b/packaging/win32/languages/Spanish_languageNames.nsh new file mode 100644 index 0000000..9296d86 --- /dev/null +++ b/packaging/win32/languages/Spanish_languageNames.nsh @@ -0,0 +1,92 @@ +### Spanish (es) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Spanish.nsh' +${LangFileString} lng_ar "Ãrabe (ar)" +${LangFileString} lng_as "Asamés (as)" +${LangFileString} lng_az "Azerbayano (az)" +${LangFileString} lng_be "Bielorruso (be) " +${LangFileString} lng_bg "Búlgaro (bg)" +${LangFileString} lng_bn "Bengalà (bn)" +${LangFileString} lng_bn_BD "BengalÃ/Bangladesh (bn_BD)" +${LangFileString} lng_br "Bretón (br)" +${LangFileString} lng_brx "Bodo (brx)" +${LangFileString} lng_ca "Catalán (ca)" +${LangFileString} lng_ca@valencia "Valenciano (ca@valencia)" +${LangFileString} lng_cs "Checo (cs)" +${LangFileString} lng_da "Danés (da)" +${LangFileString} lng_de "Alemán (de)" +${LangFileString} lng_doi "Dogri (doi)" +${LangFileString} lng_dz "Dzongkha (dz)" +${LangFileString} lng_el "Griego (el)" +${LangFileString} lng_en "Inglés (en)" +${LangFileString} lng_en_AU "Inglés/Australia (en_AU)" +${LangFileString} lng_en_CA "Inglés/Canada (en_CA)" +${LangFileString} lng_en_GB "Inglés/Gran Bretaña (en_GB)" +${LangFileString} lng_eo "Esperanto (eo)" +${LangFileString} lng_es "Español (es)" +${LangFileString} lng_es_MX "Español/México (es_MX)" +${LangFileString} lng_et "Estonio (et)" +${LangFileString} lng_eu "Euskera (eu)" +${LangFileString} lng_fa "Farsi (fa)" +${LangFileString} lng_fi "Finés (fi)" +${LangFileString} lng_fr "Francés (fr)" +${LangFileString} lng_ga "Irlandés (ga)" +${LangFileString} lng_gl "Gallego (gl)" +${LangFileString} lng_gu "Gujarati (gu)" +${LangFileString} lng_he "Hebreo (he)" +${LangFileString} lng_hi "Hindi (hi)" +${LangFileString} lng_hr "Croata (hr)" +${LangFileString} lng_hu "Húngaro (hu)" +${LangFileString} lng_hy "Armenio (hy)" +${LangFileString} lng_id "Indonesio (id)" +${LangFileString} lng_is "Islandés (is)" +${LangFileString} lng_it "Italiano (it)" +${LangFileString} lng_ja "Japonés (ja)" +${LangFileString} lng_km "Jemer (km)" +${LangFileString} lng_kn "Kannada (kn)" +${LangFileString} lng_ko "Coreano (ko)" +${LangFileString} lng_kok "Konkani (kok)" +${LangFileString} lng_kok@latin "Konkani en escritura latina (kok@latin)" +${LangFileString} lng_ks@aran "Cachemiro en escritura Perso-Arábica (ks@aran)" +${LangFileString} lng_ks@deva "Cachemiro en escritura Devanagari (ks@deva)" +${LangFileString} lng_lt "Lituano (lt)" +${LangFileString} lng_lv "Letón (lv)" +${LangFileString} lng_mai "Maithili (mai)" +${LangFileString} lng_mk "Macedonio (mk)" +${LangFileString} lng_ml "Malayalam (ml)" +${LangFileString} lng_mn "Mongol (mn)" +${LangFileString} lng_mni "Manipuri (mni)" +${LangFileString} lng_mni@beng "Manipuri en escritura Bengalà (mni@beng)" +${LangFileString} lng_mr "Marathi (mr)" +${LangFileString} lng_nb "Noruego BokmÃ¥l (nb)" +${LangFileString} lng_ne "Nepalà (ne)" +${LangFileString} lng_nl "Holandés (nl)" +${LangFileString} lng_nn "Noruego Nynorsk (nn)" +${LangFileString} lng_or "Odia (or)" +${LangFileString} lng_pa "Panjabà (pa)" +${LangFileString} lng_pl "Polaco (pl)" +${LangFileString} lng_pt "Portugués (pt)" +${LangFileString} lng_pt_BR "Portugués brasileño (pt_BR)" +${LangFileString} lng_ro "Rumano (ro)" +${LangFileString} lng_ru "Ruso (ru)" +${LangFileString} lng_rw "Kinyarwanda (rw)" +${LangFileString} lng_sa "Sánscrito (sa)" +${LangFileString} lng_sat "Santali (sat)" +${LangFileString} lng_sat@deva "Santali en escritura Devanagari (sat@deva)" +${LangFileString} lng_sd "Sindhi (sd)" +${LangFileString} lng_sd@deva "Sindhi en escritura Devanagari (sd@deva)" +${LangFileString} lng_sk "Eslovaco (sk)" +${LangFileString} lng_sl "Esloveno (sl)" +${LangFileString} lng_sq "Albanés (sq)" +${LangFileString} lng_sr "Serbio (sr)" +${LangFileString} lng_sr@latin "Serbio en escritura latina (sr@latin)" +${LangFileString} lng_sv "Sueco (sv)" +${LangFileString} lng_ta "Tamil (ta)" +${LangFileString} lng_te "Telugu (te)" +${LangFileString} lng_th "Thai (th)" +${LangFileString} lng_tr "Turco (tr)" +${LangFileString} lng_uk "Ukranio (uk)" +${LangFileString} lng_ur "Urdu (ur)" +${LangFileString} lng_vi "Vietnamita (vi)" +${LangFileString} lng_zh_CN "Chino/China (zh_CN)" +${LangFileString} lng_zh_TW "Chino/Taiwán (zh_TW)" diff --git a/packaging/win32/languages/TradChinese.nsh b/packaging/win32/languages/TradChinese.nsh new file mode 100644 index 0000000..38d0179 --- /dev/null +++ b/packaging/win32/languages/TradChinese.nsh @@ -0,0 +1,55 @@ +;Language: Traditional Chinese (1028) +;By Dong-Jun Wu <ziyawu@gmail.com> +${LangFileString} CaptionDescription "開放原始碼å‘é‡ç¹ªåœ–軟體" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) 是以 GNU 通用公共許å¯è‰ (GPL) 發行。 這裡æ供的許å¯è‰åƒ…為åƒè€ƒè¨Šæ¯ã€‚ $_CLICK" +${LangFileString} DIFFERENT_USER "使用者 $0 å·²ç¶“å®‰è£ Inkscape。$\r$\nå¦‚æžœç¹¼çºŒä½ å¯èƒ½ç„¡æ³•æˆåŠŸå®Œæˆï¼$\r$\n請以 $0 身份登入後å†è©¦ä¸€æ¬¡ã€‚" +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 已經安è£ã€‚ $\nä½ è¦åœ¨å®‰è£ $(^Name) 之å‰ç§»é™¤ä¸Šä¸€å€‹ç‰ˆæœ¬ï¼Ÿ" +${LangFileString} OK_CANCEL_DESC "$\n$\n按「確定ã€ç¹¼çºŒæˆ–者按「å–消ã€ä¸æ¢ã€‚" +${LangFileString} NO_ADMIN "ä½ æ²’æœ‰ç³»çµ±ç®¡ç†å“¡æ¬Šé™ã€‚$\r$\nå®‰è£ Inkscape 到所有使用者å¯èƒ½ç„¡æ³•æˆåŠŸå®Œæˆã€‚$\r$\nå–消勾é¸ã€Œå®‰è£çµ¦æ‰€æœ‰ä½¿ç”¨è€…ã€é¸é …." +${LangFileString} NOT_SUPPORTED "Inkscape 無法於 Windows 95/98/ME 下é‹è¡Œ!$\r$\n請查看官方網站的詳細信æ¯ã€‚" +${LangFileString} Full "完整" +${LangFileString} Optimal "ç†æƒ³" +${LangFileString} Minimal "最å°" +${LangFileString} Core "Inkscape SVG 編輯程å¼(å¿…é ˆ)" +${LangFileString} CoreDesc "Inkscape æ ¸å¿ƒæª”æ¡ˆå’Œ DLL 檔" +${LangFileString} GTKFiles "GTK+ 執行環境(å¿…é ˆ)" +${LangFileString} GTKFilesDesc "Inkscape ä½¿ç”¨çš„è·¨å¹³å° GUI 工具組" +${LangFileString} Shortcuts "æ·å¾‘" +${LangFileString} ShortcutsDesc "å•Ÿå‹• Inkscape çš„æ·å¾‘" +${LangFileString} Alluser "安è£çµ¦æ‰€æœ‰ä½¿ç”¨è€…" +${LangFileString} AlluserDesc "安è£é€™å€‹æ‡‰ç”¨ç¨‹å¼çµ¦ä»»ä½•ä½¿ç”¨é€™å°é›»è…¦çš„人(所有使用者)" +${LangFileString} Desktop "æ¡Œé¢" +${LangFileString} DesktopDesc "於桌é¢ä¸Šå»ºç«‹ Inkscape æ·å¾‘" +${LangFileString} Startmenu "開始功能表" +${LangFileString} StartmenuDesc "於開始功能表建立 Inkscape é …ç›®" +${LangFileString} Quicklaunch "快速啟動" +${LangFileString} QuicklaunchDesc "於快速啟動列建立 Inkscape æ·å¾‘" +${LangFileString} SVGWriter "用 Inkscape é–‹å•Ÿ SVG 檔" +${LangFileString} SVGWriterDesc "é¸æ“‡ Inkscape 作為 SVG 檔的é è¨ç·¨è¼¯ç¨‹å¼" +${LangFileString} ContextMenu "å³éµåŠŸèƒ½è¡¨" +${LangFileString} ContextMenuDesc "新增 Inkscape 到 SVG 檔的å³éµåŠŸèƒ½è¡¨" +${LangFileString} DeletePrefs "刪除個人å好è¨å®š" +${LangFileString} DeletePrefsDesc "刪除上一次安è£éºç•™çš„個人å好è¨å®š" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "An interpreter for the Python programming language and Python modules required to run Inkscape extensions." +${LangFileString} Addfiles "其他檔案" +${LangFileString} AddfilesDesc "其他檔案" +${LangFileString} Extensions "Extensions" +${LangFileString} ExtensionsDesc "Inkscape extensions (including many import and export plugins)" +${LangFileString} Examples "範例" +${LangFileString} ExamplesDesc "Inkscape 使用範例" +${LangFileString} Tutorials "指導手冊" +${LangFileString} TutorialsDesc "Inkscape 使用教å¸" +${LangFileString} Dictionaries "Dictionaries" +${LangFileString} DictionariesDesc "Dictionaries for some common languages for spell checking in Inkscape" +${LangFileString} Languages "語言" +${LangFileString} LanguagesDesc "å®‰è£ Inkscape å„種語言翻è¯" +${LangFileString} UInstOpt "å安è£é¸é …" +${LangFileString} UInstOpt1 "è«‹é¸æ“‡å…¶ä»–é¸é …" +${LangFileString} PurgePrefs "ä¿ç•™å€‹äººå好è¨å®š" +${LangFileString} UninstallLogNotFound "沒有找到 $INSTDIR\uninstall.log ï¼$\r$\n請自行清除 $INSTDIR 資料夾來å安è£ï¼" +${LangFileString} FileChanged "安è£å¾Œ $filename 檔案已變更。$\r$\nä½ æ˜¯å¦ä»ç„¶è¦åˆªé™¤é‚£å€‹æª”案?" +${LangFileString} Yes "是" +${LangFileString} AlwaysYes "全部皆是" +${LangFileString} No "å¦" +${LangFileString} AlwaysNo "全部皆å¦" diff --git a/packaging/win32/languages/TradChinese_languageNames.nsh b/packaging/win32/languages/TradChinese_languageNames.nsh new file mode 100644 index 0000000..786c355 --- /dev/null +++ b/packaging/win32/languages/TradChinese_languageNames.nsh @@ -0,0 +1,92 @@ +### Chinese/Taiwan (zh_TW) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'TradChinese.nsh' +${LangFileString} lng_ar "阿拉伯語 (ar)" +${LangFileString} lng_as "阿薩姆語 (as)" +${LangFileString} lng_az "亞塞拜然語 (az)" +${LangFileString} lng_be "白俄羅斯語 (be)" +${LangFileString} lng_bg "ä¿åŠ 利亞語 (bg)" +${LangFileString} lng_bn "åŸåŠ 拉語 (bn)" +${LangFileString} lng_bn_BD "åŸåŠ 拉語 / 西åŸåŠ 拉 (bn)" +${LangFileString} lng_br "ä¸åˆ—塔尼語 (br)" +${LangFileString} lng_brx "åšå¤šèªž (brx)" +${LangFileString} lng_ca "åŠ é”朗語 (ca)" +${LangFileString} lng_ca@valencia "瓦倫西亞語 åŠ æ³°ç¾…å°¼äºžèªž (ca@valencia)" +${LangFileString} lng_cs "æ·å…‹èªž (cs)" +${LangFileString} lng_da "丹麥語 (da)" +${LangFileString} lng_de "德語 (de)" +${LangFileString} lng_doi "å¤šæ ¼èŠèªž (doi)" +${LangFileString} lng_dz "å®—å¡èªž (dz)" +${LangFileString} lng_el "希臘語 (el)" +${LangFileString} lng_en "英語 (en)" +${LangFileString} lng_en_AU "英語/澳大利亞 (en_AU)" +${LangFileString} lng_en_CA "英語 / åŠ æ‹¿å¤§ (en_CA)" +${LangFileString} lng_en_GB "英語 / 大ä¸åˆ—é¡› (en_GB)" +${LangFileString} lng_eo "世界語 (eo)" +${LangFileString} lng_es "西ç牙語 (es)" +${LangFileString} lng_es_MX "西ç牙語 / 墨西哥 (es_MX)" +${LangFileString} lng_et "愛沙尼亞語 (et)" +${LangFileString} lng_eu "巴斯克語 (eu)" +${LangFileString} lng_fa "波斯語 (fa)" +${LangFileString} lng_fi "芬è˜èªž (fi)" +${LangFileString} lng_fr "法語 (fr)" +${LangFileString} lng_ga "愛爾è˜èªž (ga)" +${LangFileString} lng_gl "åŠ è£¡è¥¿äºžèªž (gl)" +${LangFileString} lng_gu "å¤å‰æ‹‰ç‰¹èªž (qu)" +${LangFileString} lng_he "希伯來語 (he)" +${LangFileString} lng_hi "å°åœ°èªž (hi)" +${LangFileString} lng_hr "克羅埃西亞語 (hr)" +${LangFileString} lng_hu "匈牙利語 (hu)" +${LangFileString} lng_hy "亞美尼亞語 (hy)" +${LangFileString} lng_id "å°å°¼èªž (id)" +${LangFileString} lng_is "冰島語 (is)" +${LangFileString} lng_it "義大利語 (it)" +${LangFileString} lng_ja "日文 (ja)" +${LangFileString} lng_km "高棉語 (km)" +${LangFileString} lng_kn "åŽé‚£é”語 (kn)" +${LangFileString} lng_ko "韓語 (ko)" +${LangFileString} lng_kok "å”å¡å°¼èªž (kok)" +${LangFileString} lng_kok@latin "拉ä¸æ›¸å¯«é«”å”å¡å°¼èªž (kok@latin)" +${LangFileString} lng_ks@aran "Kashmiri in Perso-Arabic script (ks@aran)" +${LangFileString} lng_ks@deva "è¿ªç“¦é‚£æ ¼é‡Œæ›¸å¯«é«”å–€ä»€ç±³çˆ¾èªž (ks@deva)" +${LangFileString} lng_lt "立陶宛語 (lt)" +${LangFileString} lng_lv "拉脫ç¶äºžèªž (lv)" +${LangFileString} lng_mai "é‚蒂利語 (mai)" +${LangFileString} lng_mk "é¦¬å…¶é “èªž (mk)" +${LangFileString} lng_ml "馬拉雅拉姆語 (ml)" +${LangFileString} lng_mn "è’™å¤èªž (mn)" +${LangFileString} lng_mni "曼尼普爾語 (mni)" +${LangFileString} lng_mni@beng "åŸåŠ 拉書寫體曼尼普爾語 (mni@beng)" +${LangFileString} lng_mr "馬拉æ語 (mr)" +${LangFileString} lng_nb "æŒªå¨ BokmÃ¥l 語 (nb)" +${LangFileString} lng_ne "尼泊爾語 (ne)" +${LangFileString} lng_nl "è·è˜èªž (nl)" +${LangFileString} lng_nn "æŒªå¨ Nynorsk 語 (nn)" +${LangFileString} lng_or "æ利亞語 (or)" +${LangFileString} lng_pa "æ—é®æ™®èªž (pa)" +${LangFileString} lng_pl "æ³¢è˜èªž (pl)" +${LangFileString} lng_pt "è‘¡è„牙語 (pt)" +${LangFileString} lng_pt_BR "è‘¡è„牙語 / 巴西 (pt_BR)" +${LangFileString} lng_ro "羅馬尼亞語 (ro)" +${LangFileString} lng_ru "ä¿„æ–‡ (ru)" +${LangFileString} lng_rw "金亞盧安é”語 (rw)" +${LangFileString} lng_sa "梵語 (sa)" +${LangFileString} lng_sat "桑塔利語 (sat)" +${LangFileString} lng_sat@deva "è¿ªç“¦é‚£æ ¼é‡Œæ›¸å¯«é«”æ¡‘å¡”åˆ©èªž (sat@deva)" +${LangFileString} lng_sd "信德語 (sd)" +${LangFileString} lng_sd@deva "è¿ªç“¦é‚£æ ¼é‡Œæ›¸å¯«é«”ä¿¡å¾·èªž (sd@deva)" +${LangFileString} lng_sk "斯洛法克語 (sk)" +${LangFileString} lng_sl "斯洛凡尼亞語 (sl)" +${LangFileString} lng_sq "阿爾巴尼亞語 (sq)" +${LangFileString} lng_sr "賽爾ç¶äºžèªž (sr)" +${LangFileString} lng_sr@latin "塞爾ç¶äºžæ–‡ - æ‹‰ä¸ (sr@latin)" +${LangFileString} lng_sv "瑞典語 (sv)" +${LangFileString} lng_ta "å¦ç±³çˆ¾èªž (ta)" +${LangFileString} lng_te "泰盧固語 (te)" +${LangFileString} lng_th "泰語 (th)" +${LangFileString} lng_tr "土耳其語 (tr)" +${LangFileString} lng_uk "çƒå…‹è˜èªž (uk)" +${LangFileString} lng_ur "çƒçˆ¾éƒ½èªž (ur)" +${LangFileString} lng_vi "越å—話 (vi)" +${LangFileString} lng_zh_CN "ä¸æ–‡ / ä¸åœ‹ (zh_CN)" +${LangFileString} lng_zh_TW "ä¸æ–‡ / è‡ºç£ (zh_TW)" diff --git a/packaging/win32/languages/Ukrainian.nsh b/packaging/win32/languages/Ukrainian.nsh new file mode 100644 index 0000000..a1c6c1d --- /dev/null +++ b/packaging/win32/languages/Ukrainian.nsh @@ -0,0 +1,55 @@ +;Language: Ukrainian (1058) +;By Yuri Chornoivan <yurchor@ukr.net> +${LangFileString} CaptionDescription "Редактор векторної графіки з відкритими вихідними кодами" +${LangFileString} LICENSE_BOTTOM_TEXT "$(^Name) випущено за умов Ð´Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ GNU General Public License (GPL). Файл ліцензії наведено лише з довідковою метою. $_CLICK" +${LangFileString} DIFFERENT_USER "Inkscape було вÑтановлено кориÑтувачем $0.$\r$\nЯкщо ви продовжите Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ð´Ñ–Ñ—, можливі небажані наÑлідки!$\r$\nБудь лаÑка, увійдіть до ÑиÑтеми від імені $0 Ñ– повторіть Ñпробу." +${LangFileString} WANT_UNINSTALL_BEFORE "$R1 вже вÑтановлено. $\nБажаєте вилучити попередню верÑÑ–ÑŽ до вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ $(^Name)?" +${LangFileString} OK_CANCEL_DESC "$\n$\nÐатиÑніть «Гаразд», щоб продовжити або «СкаÑувати», щоб перервати дію." +${LangFileString} NO_ADMIN "У Ð²Ð°Ñ Ð½ÐµÐ¼Ð°Ñ” прав доÑтупу адмініÑтратора.$\r$\nМожливо, Inkscape не вдаÑÑ‚ÑŒÑÑ Ð²Ñтановити Ð´Ð»Ñ Ð²ÑÑ–Ñ… кориÑтувачів ÑиÑтеми.$\r$\nЗніміть позначку з пункту «ВÑтановити Ð´Ð»Ñ Ð²ÑÑ–Ñ… кориÑтувачів»." +${LangFileString} NOT_SUPPORTED "Inkscape не зможе працювати у Ñередовищі Windows 95/98/ME!$\r$\nДокладніші відомоÑÑ‚Ñ– можна знайти на офіційному вебÑайті." +${LangFileString} Full "Повне" +${LangFileString} Optimal "Оптимальне" +${LangFileString} Minimal "Мінімальне" +${LangFileString} Core "Редактор SVG Inkscape (необхідне)" +${LangFileString} CoreDesc "ОÑновні файли Ñ– бібліотеки Inkscape" +${LangFileString} GTKFiles "Середовище Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ GTK+ (необхідне)" +${LangFileString} GTKFilesDesc "Ðабір інÑтрументів побудови інтерфейÑу, що викориÑтовуєтьÑÑ Inkscape" +${LangFileString} Shortcuts "Піктограми" +${LangFileString} ShortcutsDesc "Піктограми Ð´Ð»Ñ Ð·Ð°Ð¿ÑƒÑку Inkscape" +${LangFileString} Alluser "Ð’Ñтановити Ð´Ð»Ñ Ð²ÑÑ–Ñ… кориÑтувачів" +${LangFileString} AlluserDesc "Ð’Ñтановити цю програму Ð´Ð»Ñ Ð²ÑÑ–Ñ…, хто кориÑтуєтьÑÑ Ñ†Ð¸Ð¼ комп’ютером (вÑÑ–Ñ… кориÑтувачів)" +${LangFileString} Desktop "СтільницÑ" +${LangFileString} DesktopDesc "Створити піктограму Inkscape на Ñтільниці" +${LangFileString} Startmenu "Меню «ПуÑк»" +${LangFileString} StartmenuDesc "Створити Ð·Ð°Ð¿Ð¸Ñ Inkscape у меню «ПуÑк»" +${LangFileString} Quicklaunch "Панель швидкого запуÑку" +${LangFileString} QuicklaunchDesc "Створити піктограму Inkscape на панелі швидкого запуÑку" +${LangFileString} SVGWriter "Відкривати файли SVG за допомогою Inkscape" +${LangFileString} SVGWriterDesc "Призначити Inkscape типовим редактором файлів SVG" +${LangFileString} ContextMenu "КонтекÑтне меню" +${LangFileString} ContextMenuDesc "Додати пункт Inkscape до контекÑтного меню файлів SVG" +${LangFileString} DeletePrefs "Вилучити оÑобиÑÑ‚Ñ– налаштуваннÑ" +${LangFileString} DeletePrefsDesc "Вилучити оÑобиÑÑ‚Ñ– налаштуваннÑ, Ñкі залишилиÑÑ Ð¿Ñ–ÑÐ»Ñ Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð½Ñ–Ñ… вÑтановлень" +${LangFileString} Python "Python 2.7" +${LangFileString} PythonDesc "Інтерпретатор мови Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼ÑƒÐ²Ð°Ð½Ð½Ñ Python та модулі Python, Ñкі знадоблÑÑ‚ÑŒÑÑ Ð´Ð»Ñ Ð·Ð°Ð¿ÑƒÑку розширень Inkscape." +${LangFileString} Addfiles "Додаткові файли" +${LangFileString} AddfilesDesc "Додаткові приклади" +${LangFileString} Extensions "РозширеннÑ" +${LangFileString} ExtensionsDesc "Ð Ð¾Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ Inkscape (зокрема багато додатків Ñ–Ð¼Ð¿Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° екÑÐ¿Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð°Ð½Ð¸Ñ…)" +${LangFileString} Examples "Приклади" +${LangFileString} ExamplesDesc "Приклади файлів, Ñтворених за допомогою Inkscape" +${LangFileString} Tutorials "Підручники" +${LangFileString} TutorialsDesc "Підручники з кориÑÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Inkscape" +${LangFileString} Dictionaries "Словники" +${LangFileString} DictionariesDesc "Словники Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¸ правопиÑу поширеними мовами у Inkscape" +${LangFileString} Languages "Переклади" +${LangFileString} LanguagesDesc "Ð’Ñтановити переклади Inkscape різними мовами" +${LangFileString} UInstOpt "Параметри Ð²Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¸" +${LangFileString} UInstOpt1 "Будь лаÑка, вкажіть додаткові параметри" +${LangFileString} PurgePrefs "Зберегти оÑобиÑÑ‚Ñ– налаштуваннÑ" +${LangFileString} UninstallLogNotFound "Ðе виÑвлено $INSTDIR\uninstall.log!$\r$\nБудь лаÑка, виконайте Ð²Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ ÑпорожненнÑм каталогу $INSTDIR вручну!" +${LangFileString} FileChanged "З чаÑу вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð» $filename було змінено.$\r$\nБажаєте вилучити цей файл?" +${LangFileString} Yes "Так" +${LangFileString} AlwaysYes "завжди відповідати «Так»" +${LangFileString} No "ÐÑ–" +${LangFileString} AlwaysNo "завжди відповідати «Ðі»" diff --git a/packaging/win32/languages/Ukrainian_languageNames.nsh b/packaging/win32/languages/Ukrainian_languageNames.nsh new file mode 100644 index 0000000..522186c --- /dev/null +++ b/packaging/win32/languages/Ukrainian_languageNames.nsh @@ -0,0 +1,92 @@ +### Ukrainian (uk) translations for language names +# This file has been automatically created by '_language_lists.py', do not edit it manually! +# Strings that should be translated are in 'Ukrainian.nsh' +${LangFileString} lng_ar "ÐрабÑька (ar)" +${LangFileString} lng_as "ÐÑÑамÑька (as)" +${LangFileString} lng_az "ÐзербайджанÑька (az)" +${LangFileString} lng_be "БілоруÑька (be)" +${LangFileString} lng_bg "БолгарÑька (bg)" +${LangFileString} lng_bn "БенгальÑька (bn)" +${LangFileString} lng_bn_BD "БенгальÑька, Бангладеш (bn_BD)" +${LangFileString} lng_br "БретонÑька (br)" +${LangFileString} lng_brx "Бодо (brx)" +${LangFileString} lng_ca "КаталанÑька (ca)" +${LangFileString} lng_ca@valencia "ВаленÑійÑка каталанÑька (ca@valencia)" +${LangFileString} lng_cs "ЧеÑька (cs)" +${LangFileString} lng_da "ДанÑька (da)" +${LangFileString} lng_de "Ðімецька (de)" +${LangFileString} lng_doi "Догрі (doi)" +${LangFileString} lng_dz "Джонка (dz)" +${LangFileString} lng_el "Грецька (el)" +${LangFileString} lng_en "ÐнглійÑька (en)" +${LangFileString} lng_en_AU "ÐнглійÑька/ÐвÑÑ‚Ñ€Ð°Ð»Ñ–Ñ (en_AU)" +${LangFileString} lng_en_CA "ÐнглійÑька/Канада (en_CA)" +${LangFileString} lng_en_GB "ÐнглійÑька/Ð’ÐµÐ»Ð¸ÐºÐ¾Ð±Ñ€Ð¸Ñ‚Ð°Ð½Ñ–Ñ (en_GB)" +${LangFileString} lng_eo "ЕÑперанто (eo)" +${LangFileString} lng_es "ІÑпанÑька (es)" +${LangFileString} lng_es_MX "ІÑпанÑька (МекÑика) (es_MX)" +${LangFileString} lng_et "ЕÑтонÑька (et)" +${LangFileString} lng_eu "БаÑкÑька (eu)" +${LangFileString} lng_fa "ФарÑÑ– (fa)" +${LangFileString} lng_fi "ФінÑька (fi)" +${LangFileString} lng_fr "Французька (fr)" +${LangFileString} lng_ga "ІрландÑька (ga)" +${LangFileString} lng_gl "ГаліÑійÑька (gl)" +${LangFileString} lng_gu "Гуджараті (gu)" +${LangFileString} lng_he "ЄврейÑька (he)" +${LangFileString} lng_hi "Хінді (hi)" +${LangFileString} lng_hr "ХорватÑька (hr)" +${LangFileString} lng_hu "УгорÑька (hu)" +${LangFileString} lng_hy "ВірменÑька (hy)" +${LangFileString} lng_id "ІндонезійÑька (id)" +${LangFileString} lng_is "Ñ–ÑландÑька (is)" +${LangFileString} lng_it "ІталійÑька (it)" +${LangFileString} lng_ja "ЯпонÑька (ja)" +${LangFileString} lng_km "КхмерÑька (km)" +${LangFileString} lng_kn "Каннада (kn)" +${LangFileString} lng_ko "КорейÑька (ko)" +${LangFileString} lng_kok "КонканÑька (kok)" +${LangFileString} lng_kok@latin "КонканÑька (латиницÑ) (sr@latin)" +${LangFileString} lng_ks@aran "КашмірÑька, запиÑана перÑько-арабÑькою пиÑемніÑÑ‚ÑŽ (ks@aran)" +${LangFileString} lng_ks@deva "КашмірÑька, запиÑана пиÑемніÑÑ‚ÑŽ деванагарі (ks@deva)" +${LangFileString} lng_lt "ЛитовÑька (lt)" +${LangFileString} lng_lv "ЛатвійÑька (lv)" +${LangFileString} lng_mai "Майтілі (mai)" +${LangFileString} lng_mk "МакедонÑька (mk)" +${LangFileString} lng_ml "МалаÑлам (ml)" +${LangFileString} lng_mn "МонгольÑька (mn)" +${LangFileString} lng_mni "Маніпурі (mni)" +${LangFileString} lng_mni@beng "Маніпурі, запиÑана бенгальÑькою пиÑемніÑÑ‚ÑŽ (mni@beng)" +${LangFileString} lng_mr "МаратійÑька (gu)" +${LangFileString} lng_nb "Ðорвезька (букмол) (nb)" +${LangFileString} lng_ne "ÐепальÑька (ne)" +${LangFileString} lng_nl "ГолландÑька (nl)" +${LangFileString} lng_nn "Ðорвезька (нюноршк) (nn)" +${LangFileString} lng_or "ÐžÑ€Ñ–Ñ (or)" +${LangFileString} lng_pa "Пенджабі (pa)" +${LangFileString} lng_pl "ПольÑька (pl)" +${LangFileString} lng_pt "ПортугальÑька (pt)" +${LangFileString} lng_pt_BR "ПортугальÑька бразильÑька (pt_BR)" +${LangFileString} lng_ro "РумунÑька (ro)" +${LangFileString} lng_ru "РоÑійÑька (ru)" +${LangFileString} lng_rw "РуандійÑька (rw)" +${LangFileString} lng_sa "СанÑкрит (sa)" +${LangFileString} lng_sat "Санталі (it)" +${LangFileString} lng_sat@deva "Санталі, запиÑана пиÑемніÑÑ‚ÑŽ деванагарі (sat@deva)" +${LangFileString} lng_sd "СіндхÑька (sd)" +${LangFileString} lng_sd@deva "СіндхÑька, запиÑана пиÑемніÑÑ‚ÑŽ деванагарі (sd@deva)" +${LangFileString} lng_sk "Словацька (sk)" +${LangFileString} lng_sl "СловенÑька (sl)" +${LangFileString} lng_sq "ÐлбанÑька (sq)" +${LangFileString} lng_sr "СербÑька (sr)" +${LangFileString} lng_sr@latin "СербÑька (латиницÑ) (sr@latin)" +${LangFileString} lng_sv "ШведÑька (sv)" +${LangFileString} lng_ta "ТамільÑька (ta)" +${LangFileString} lng_te "Телугу (te)" +${LangFileString} lng_th "ТайÑька (th)" +${LangFileString} lng_tr "Турецька (tr)" +${LangFileString} lng_uk "УкраїнÑька (uk)" +${LangFileString} lng_ur "Урду (ur)" +${LangFileString} lng_vi "Ð’'єтнамÑька (vi)" +${LangFileString} lng_zh_CN "КитайÑька/Китай (zh_CN)" +${LangFileString} lng_zh_TW "КитайÑька/Тайвань (zh_TW)" diff --git a/packaging/win32/languages/_language_lists.nsh b/packaging/win32/languages/_language_lists.nsh new file mode 100644 index 0000000..dd8b86f --- /dev/null +++ b/packaging/win32/languages/_language_lists.nsh @@ -0,0 +1,141 @@ +# This file contains a list of +# - available installer translations (*.nsh in this directory) +# - available Inkscape translations (*.po in /src/po) +# +# The list is formatted for use in the NSIS installer script +# and should be updated whenever new translations are added. + + +### List of available installer translations. +# Every entry should +# - have a name (e.g. "Breton") matching a header file in this directory (e.g. "Breton.nsh") +# that in addition should match the name of an available NSIS translation file (see "NSIS\Contrib\Language files") +# - include a valid locale ID (see https://msdn.microsoft.com/goglobal/bb964664.aspx) +!macro INSTALLER_TRANSLATIONS _MACRONAME + !insertmacro ${_MACRONAME} Breton 1150 + !insertmacro ${_MACRONAME} Catalan 1027 + !insertmacro ${_MACRONAME} Croatian 1050 + !insertmacro ${_MACRONAME} Czech 1029 + !insertmacro ${_MACRONAME} Danish 1030 + !insertmacro ${_MACRONAME} Dutch 1043 + !insertmacro ${_MACRONAME} Finnish 1035 + !insertmacro ${_MACRONAME} French 1036 + !insertmacro ${_MACRONAME} Galician 1110 + !insertmacro ${_MACRONAME} German 1031 + !insertmacro ${_MACRONAME} Greek 1032 + !insertmacro ${_MACRONAME} Hebrew 1037 + !insertmacro ${_MACRONAME} Hungarian 1038 + !insertmacro ${_MACRONAME} Icelandic 1039 + !insertmacro ${_MACRONAME} Indonesian 1057 + !insertmacro ${_MACRONAME} Italian 1040 + !insertmacro ${_MACRONAME} Japanese 1041 + !insertmacro ${_MACRONAME} Korean 1042 + !insertmacro ${_MACRONAME} Polish 1045 + !insertmacro ${_MACRONAME} Portuguese 2070 + !insertmacro ${_MACRONAME} PortugueseBR 1046 + !insertmacro ${_MACRONAME} Romanian 1048 + !insertmacro ${_MACRONAME} Russian 1049 + !insertmacro ${_MACRONAME} Slovak 1051 + !insertmacro ${_MACRONAME} Slovenian 1060 + !insertmacro ${_MACRONAME} Spanish 1034 + !insertmacro ${_MACRONAME} SimpChinese 2052 + !insertmacro ${_MACRONAME} TradChinese 1028 + !insertmacro ${_MACRONAME} Ukrainian 1058 +!macroend + + +### List of available Inkscape translations. +# Every entry should +# - specify a name (e.g. "Amharic") that matches the installer translation name above (if present) +# - specify a language code (e.g. "am") that has a matching PO file (e.g. "am.po") +# in the /po folder in the root of Inkscape source directory +!macro INKSCAPE_TRANSLATIONS _MACRONAME + !insertmacro ${_MACRONAME} Arabic ar + !insertmacro ${_MACRONAME} Assamese as + !insertmacro ${_MACRONAME} Azerbaijani az + !insertmacro ${_MACRONAME} Belarusian be + !insertmacro ${_MACRONAME} Bulgarian bg + !insertmacro ${_MACRONAME} Bengali bn + !insertmacro ${_MACRONAME} BengaliBangladesh bn_BD + !insertmacro ${_MACRONAME} Breton br + !insertmacro ${_MACRONAME} Bodo brx + !insertmacro ${_MACRONAME} Catalan ca + !insertmacro ${_MACRONAME} CatalanValencia ca@valencia + !insertmacro ${_MACRONAME} Czech cs + !insertmacro ${_MACRONAME} Danish da + !insertmacro ${_MACRONAME} German de + !insertmacro ${_MACRONAME} Dogri doi + !insertmacro ${_MACRONAME} Dzongkha dz + !insertmacro ${_MACRONAME} Greek el + !insertmacro ${_MACRONAME} EnglishAustralian en_AU + !insertmacro ${_MACRONAME} EnglishCanadian en_CA + !insertmacro ${_MACRONAME} EnglishBritain en_GB + !insertmacro ${_MACRONAME} Esperanto eo + !insertmacro ${_MACRONAME} Spanish es + !insertmacro ${_MACRONAME} SpanishMexico es_MX + !insertmacro ${_MACRONAME} Estonian et + !insertmacro ${_MACRONAME} Basque eu + !insertmacro ${_MACRONAME} Farsi fa + !insertmacro ${_MACRONAME} Finnish fi + !insertmacro ${_MACRONAME} French fr + !insertmacro ${_MACRONAME} Irish ga + !insertmacro ${_MACRONAME} Galician gl + !insertmacro ${_MACRONAME} Gujarati gu + !insertmacro ${_MACRONAME} Hebrew he + !insertmacro ${_MACRONAME} Hindi hi + !insertmacro ${_MACRONAME} Croatian hr + !insertmacro ${_MACRONAME} Hungarian hu + !insertmacro ${_MACRONAME} Armenian hy + !insertmacro ${_MACRONAME} Indonesian id + !insertmacro ${_MACRONAME} Icelandic is + !insertmacro ${_MACRONAME} Italian it + !insertmacro ${_MACRONAME} Japanese ja + !insertmacro ${_MACRONAME} Khmer km + !insertmacro ${_MACRONAME} Kannada kn + !insertmacro ${_MACRONAME} Korean ko + !insertmacro ${_MACRONAME} Konkani kok + !insertmacro ${_MACRONAME} KonkaniLatin kok@latin + !insertmacro ${_MACRONAME} KashmiriPersoArabic ks@aran + !insertmacro ${_MACRONAME} KashmiriDevanagari ks@deva + !insertmacro ${_MACRONAME} Lithuanian lt + !insertmacro ${_MACRONAME} Latvian lv + !insertmacro ${_MACRONAME} Maithili mai + !insertmacro ${_MACRONAME} Macedonian mk + !insertmacro ${_MACRONAME} Malayalam ml + !insertmacro ${_MACRONAME} Mongolian mn + !insertmacro ${_MACRONAME} Manipuri mni + !insertmacro ${_MACRONAME} ManipuriBengali mni@beng + !insertmacro ${_MACRONAME} Marathi mr + !insertmacro ${_MACRONAME} NorwegianBokmal nb + !insertmacro ${_MACRONAME} Nepali ne + !insertmacro ${_MACRONAME} Dutch nl + !insertmacro ${_MACRONAME} NorwegianNynorsk nn + !insertmacro ${_MACRONAME} Odia or + !insertmacro ${_MACRONAME} Panjabi pa + !insertmacro ${_MACRONAME} Polish pl + !insertmacro ${_MACRONAME} Portuguese pt + !insertmacro ${_MACRONAME} PortugueseBR pt_BR + !insertmacro ${_MACRONAME} Romanian ro + !insertmacro ${_MACRONAME} Russian ru + !insertmacro ${_MACRONAME} Kinyarwanda rw + !insertmacro ${_MACRONAME} Sanskrit sa + !insertmacro ${_MACRONAME} Santali sat + !insertmacro ${_MACRONAME} SantaliDevanagari sat@deva + !insertmacro ${_MACRONAME} Sindhi sd + !insertmacro ${_MACRONAME} SindhiDevanagari sd@deva + !insertmacro ${_MACRONAME} Slovak sk + !insertmacro ${_MACRONAME} Slovenian sl + !insertmacro ${_MACRONAME} Albanian sq + !insertmacro ${_MACRONAME} Serbian sr + !insertmacro ${_MACRONAME} SerbianLatin sr@latin + !insertmacro ${_MACRONAME} Swedish sv + !insertmacro ${_MACRONAME} Tamil ta + !insertmacro ${_MACRONAME} Telugu te + !insertmacro ${_MACRONAME} Thai th + !insertmacro ${_MACRONAME} Turkish tr + !insertmacro ${_MACRONAME} Ukrainian uk + !insertmacro ${_MACRONAME} Urdu ur + !insertmacro ${_MACRONAME} Vietnamese vi + !insertmacro ${_MACRONAME} SimpChinese zh_CN + !insertmacro ${_MACRONAME} TradChinese zh_TW +!macroend diff --git a/packaging/win32/languages/_language_lists.py b/packaging/win32/languages/_language_lists.py new file mode 100644 index 0000000..9ca0234 --- /dev/null +++ b/packaging/win32/languages/_language_lists.py @@ -0,0 +1,79 @@ +# use this to update the translated language strings in the *_languageNames.nsh files +# translated language names are extracted from the .po files in the /po directory + +from __future__ import print_function +from __future__ import unicode_literals # make all literals unicode strings by default (even in Python 2) + +import os +import re +import sys +from io import open # needed for support of encoding parameter in Python 2 + +from _polib import pofile + + +# get the list of available Inkscape UI translations (by parsing inkscape-preferences.cpp) +sys.path.append('../../wix/') +from helpers import get_inkscape_locales_and_names +inkscape_locales = get_inkscape_locales_and_names() + +# get the list of translations offered in the installer (by parsing _language_lists.nsh) +re_installer_locales = re.compile(r'!macro INKSCAPE_TRANSLATIONS _MACRONAME\n(.+?)!macroend', re.DOTALL) +re_installer_locale = re.compile(r'[ \t]+!insertmacro \${_MACRONAME}[ \t]+([\w]+)[ \t]+([\w@]+)\n') +with open('_language_lists.nsh', 'r') as f: + installer_locales = re.search(re_installer_locales, f.read()) +if installer_locales: + installer_locales = re.finditer(re_installer_locale, installer_locales.group(1)) + if installer_locales: + installer_locales = { + installer_locale.group(2): installer_locale.group(1) for installer_locale in installer_locales + } +if not installer_locales: + print("Could not get the list of Inkscape translations from _language_lists.nsh") + sys.exit(1) +installer_locales['en'] = 'English' + + +# check if the lists are in sync +for installer_locale in installer_locales: + if installer_locale not in inkscape_locales: + print( + "Error: Locale '" + installer_locale + + "' is present in '_language_lists.nsh' but is not a selectable Inkscape translation!" + ) + sys.exit(1) +for inkscape_locale in inkscape_locales: + if inkscape_locale not in installer_locales: + print( + "Warning: Locale '" + inkscape_locale + + "' is a selectable Inkscape translation but not present in '_language_lists.nsh'\n" + + " You should consider adding it." + ) + + +# extract translation names from .po files for locales offered in the installer +for locale in sorted(installer_locales): + if os.path.isfile(installer_locales[locale] + '.nsh'): + print("Getting translation names for " + inkscape_locales[locale]) + filename = installer_locales[locale] + '_languageNames.nsh' + with open(filename, 'w', encoding='utf-8', newline='\n') as f: + f.write( + "### " + inkscape_locales[locale] + " translations for language names\n" + + "# This file has been automatically created by '" + __file__ + "', do not edit it manually!\n" + "# Strings that should be translated are in '" + installer_locales[locale] + ".nsh'\n") + if locale is 'en': + for locale in sorted(installer_locales): + locale_name = inkscape_locales[locale] + f.write('${LangFileString} lng_' + locale + ' ') + f.write('"' + locale_name + '"\n') + else: + po_filename = '../../../po/' + locale + '.po' + po = pofile(po_filename) + for locale in sorted(installer_locales): + po_entry = po.find(inkscape_locales[locale]) + if po_entry.translated(): + locale_name = po_entry.msgstr + else: + locale_name = inkscape_locales[locale] + f.write('${LangFileString} lng_' + locale + ' ') + f.write('"' + locale_name + '"\n') diff --git a/packaging/win32/languages/_polib.py b/packaging/win32/languages/_polib.py new file mode 100644 index 0000000..5fc4d82 --- /dev/null +++ b/packaging/win32/languages/_polib.py @@ -0,0 +1,1870 @@ +# -* coding: utf-8 -*- +# +# License: MIT +# +# Copyright (c) 2006-2015 David Jean Louis. +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +# +# vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: + +""" +**polib** allows you to manipulate, create, modify gettext files (pot, po and +mo files). You can load existing files, iterate through it's entries, add, +modify entries, comments or metadata, etc. or create new po files from scratch. + +**polib** provides a simple and pythonic API via the :func:`~polib.pofile` and +:func:`~polib.mofile` convenience functions. +""" + +__author__ = 'David Jean Louis <izimobil@gmail.com>' +__version__ = '1.0.8' +__all__ = ['pofile', 'POFile', 'POEntry', 'mofile', 'MOFile', 'MOEntry', + 'default_encoding', 'escape', 'unescape', 'detect_encoding', ] + +import array +import codecs +import os +import re +import struct +import sys +import textwrap + +try: + import io +except ImportError: + # replacement of io.open() for python < 2.6 + # we use codecs instead + class io(object): + @staticmethod + def open(fpath, mode='r', encoding=None): + return codecs.open(fpath, mode, encoding) + + +# the default encoding to use when encoding cannot be detected +default_encoding = 'utf-8' + +# python 2/3 compatibility helpers {{{ + + +if sys.version_info[:2] < (3, 0): + PY3 = False + text_type = unicode + + def b(s): + return s + + def u(s): + return unicode(s, "unicode_escape") + +else: + PY3 = True + text_type = str + + def b(s): + return s.encode("latin-1") + + def u(s): + return s +# }}} +# _pofile_or_mofile {{{ + + +def _pofile_or_mofile(f, type, **kwargs): + """ + Internal function used by :func:`polib.pofile` and :func:`polib.mofile` to + honor the DRY concept. + """ + # get the file encoding + enc = kwargs.get('encoding') + if enc is None: + enc = detect_encoding(f, type == 'mofile') + + # parse the file + kls = type == 'pofile' and _POFileParser or _MOFileParser + parser = kls( + f, + encoding=enc, + check_for_duplicates=kwargs.get('check_for_duplicates', False), + klass=kwargs.get('klass') + ) + instance = parser.parse() + instance.wrapwidth = kwargs.get('wrapwidth', 78) + return instance +# }}} +# _is_file {{{ + + +def _is_file(filename_or_contents): + """ + Safely returns the value of os.path.exists(filename_or_contents). + + Arguments: + + ``filename_or_contents`` + either a filename, or a string holding the contents of some file. + In the latter case, this function will always return False. + """ + try: + return os.path.exists(filename_or_contents) + except (ValueError, UnicodeEncodeError): + return False +# }}} +# function pofile() {{{ + + +def pofile(pofile, **kwargs): + """ + Convenience function that parses the po or pot file ``pofile`` and returns + a :class:`~polib.POFile` instance. + + Arguments: + + ``pofile`` + string, full or relative path to the po/pot file or its content (data). + + ``wrapwidth`` + integer, the wrap width, only useful when the ``-w`` option was passed + to xgettext (optional, default: ``78``). + + ``encoding`` + string, the encoding to use (e.g. "utf-8") (default: ``None``, the + encoding will be auto-detected). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file (optional, default: ``False``). + + ``klass`` + class which is used to instantiate the return value (optional, + default: ``None``, the return value with be a :class:`~polib.POFile` + instance). + """ + return _pofile_or_mofile(pofile, 'pofile', **kwargs) +# }}} +# function mofile() {{{ + + +def mofile(mofile, **kwargs): + """ + Convenience function that parses the mo file ``mofile`` and returns a + :class:`~polib.MOFile` instance. + + Arguments: + + ``mofile`` + string, full or relative path to the mo file or its content (data). + + ``wrapwidth`` + integer, the wrap width, only useful when the ``-w`` option was passed + to xgettext to generate the po file that was used to format the mo file + (optional, default: ``78``). + + ``encoding`` + string, the encoding to use (e.g. "utf-8") (default: ``None``, the + encoding will be auto-detected). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file (optional, default: ``False``). + + ``klass`` + class which is used to instantiate the return value (optional, + default: ``None``, the return value with be a :class:`~polib.POFile` + instance). + """ + return _pofile_or_mofile(mofile, 'mofile', **kwargs) +# }}} +# function detect_encoding() {{{ + + +def detect_encoding(file, binary_mode=False): + """ + Try to detect the encoding used by the ``file``. The ``file`` argument can + be a PO or MO file path or a string containing the contents of the file. + If the encoding cannot be detected, the function will return the value of + ``default_encoding``. + + Arguments: + + ``file`` + string, full or relative path to the po/mo file or its content. + + ``binary_mode`` + boolean, set this to True if ``file`` is a mo file. + """ + PATTERN = r'"?Content-Type:.+? charset=([\w_\-:\.]+)' + rxt = re.compile(u(PATTERN)) + rxb = re.compile(b(PATTERN)) + + def charset_exists(charset): + """Check whether ``charset`` is valid or not.""" + try: + codecs.lookup(charset) + except LookupError: + return False + return True + + if not _is_file(file): + match = rxt.search(file) + if match: + enc = match.group(1).strip() + if charset_exists(enc): + return enc + else: + # For PY3, always treat as binary + if binary_mode or PY3: + mode = 'rb' + rx = rxb + else: + mode = 'r' + rx = rxt + f = open(file, mode) + for l in f.readlines(): + match = rx.search(l) + if match: + f.close() + enc = match.group(1).strip() + if not isinstance(enc, text_type): + enc = enc.decode('utf-8') + if charset_exists(enc): + return enc + f.close() + return default_encoding +# }}} +# function escape() {{{ + + +def escape(st): + """ + Escapes the characters ``\\\\``, ``\\t``, ``\\n``, ``\\r`` and ``"`` in + the given string ``st`` and returns it. + """ + return st.replace('\\', r'\\')\ + .replace('\t', r'\t')\ + .replace('\r', r'\r')\ + .replace('\n', r'\n')\ + .replace('\"', r'\"') +# }}} +# function unescape() {{{ + + +def unescape(st): + """ + Unescapes the characters ``\\\\``, ``\\t``, ``\\n``, ``\\r`` and ``"`` in + the given string ``st`` and returns it. + """ + def unescape_repl(m): + m = m.group(1) + if m == 'n': + return '\n' + if m == 't': + return '\t' + if m == 'r': + return '\r' + if m == '\\': + return '\\' + return m # handles escaped double quote + return re.sub(r'\\(\\|n|t|r|")', unescape_repl, st) +# }}} +# function natural_sort() {{{ + + +def natural_sort(lst): + """ + Sort naturally the given list. + Credits: http://stackoverflow.com/a/4836734 + """ + convert = lambda text: int(text) if text.isdigit() else text.lower() + alphanum_key = lambda key: [ convert(c) for c in re.split('([0-9]+)', key) ] + return sorted(lst, key = alphanum_key) +# }}} +# class _BaseFile {{{ + + +class _BaseFile(list): + """ + Common base class for the :class:`~polib.POFile` and :class:`~polib.MOFile` + classes. This class should **not** be instantiated directly. + """ + + def __init__(self, *args, **kwargs): + """ + Constructor, accepts the following keyword arguments: + + ``pofile`` + string, the path to the po or mo file, or its content as a string. + + ``wrapwidth`` + integer, the wrap width, only useful when the ``-w`` option was + passed to xgettext (optional, default: ``78``). + + ``encoding`` + string, the encoding to use, defaults to ``default_encoding`` + global variable (optional). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file, (optional, default: ``False``). + """ + list.__init__(self) + # the opened file handle + pofile = kwargs.get('pofile', None) + if pofile and _is_file(pofile): + self.fpath = pofile + else: + self.fpath = kwargs.get('fpath') + # the width at which lines should be wrapped + self.wrapwidth = kwargs.get('wrapwidth', 78) + # the file encoding + self.encoding = kwargs.get('encoding', default_encoding) + # whether to check for duplicate entries or not + self.check_for_duplicates = kwargs.get('check_for_duplicates', False) + # header + self.header = '' + # both po and mo files have metadata + self.metadata = {} + self.metadata_is_fuzzy = 0 + + def __unicode__(self): + """ + Returns the unicode representation of the file. + """ + ret = [] + entries = [self.metadata_as_entry()] + \ + [e for e in self if not e.obsolete] + for entry in entries: + ret.append(entry.__unicode__(self.wrapwidth)) + for entry in self.obsolete_entries(): + ret.append(entry.__unicode__(self.wrapwidth)) + ret = u('\n').join(ret) + + assert isinstance(ret, text_type) + #if type(ret) != text_type: + # return unicode(ret, self.encoding) + return ret + + if PY3: + def __str__(self): + return self.__unicode__() + else: + def __str__(self): + """ + Returns the string representation of the file. + """ + return unicode(self).encode(self.encoding) + + def __contains__(self, entry): + """ + Overridden ``list`` method to implement the membership test (in and + not in). + The method considers that an entry is in the file if it finds an entry + that has the same msgid (the test is **case sensitive**) and the same + msgctxt (or none for both entries). + + Argument: + + ``entry`` + an instance of :class:`~polib._BaseEntry`. + """ + return self.find(entry.msgid, by='msgid', msgctxt=entry.msgctxt) \ + is not None + + def __eq__(self, other): + return str(self) == str(other) + + def append(self, entry): + """ + Overridden method to check for duplicates entries, if a user tries to + add an entry that is already in the file, the method will raise a + ``ValueError`` exception. + + Argument: + + ``entry`` + an instance of :class:`~polib._BaseEntry`. + """ + # check_for_duplicates may not be defined (yet) when unpickling. + # But if pickling, we never want to check for duplicates anyway. + if getattr(self, 'check_for_duplicates', False) and entry in self: + raise ValueError('Entry "%s" already exists' % entry.msgid) + super(_BaseFile, self).append(entry) + + def insert(self, index, entry): + """ + Overridden method to check for duplicates entries, if a user tries to + add an entry that is already in the file, the method will raise a + ``ValueError`` exception. + + Arguments: + + ``index`` + index at which the entry should be inserted. + + ``entry`` + an instance of :class:`~polib._BaseEntry`. + """ + if self.check_for_duplicates and entry in self: + raise ValueError('Entry "%s" already exists' % entry.msgid) + super(_BaseFile, self).insert(index, entry) + + def metadata_as_entry(self): + """ + Returns the file metadata as a :class:`~polib.POFile` instance. + """ + e = POEntry(msgid='') + mdata = self.ordered_metadata() + if mdata: + strs = [] + for name, value in mdata: + # Strip whitespace off each line in a multi-line entry + strs.append('%s: %s' % (name, value)) + e.msgstr = '\n'.join(strs) + '\n' + if self.metadata_is_fuzzy: + e.flags.append('fuzzy') + return e + + def save(self, fpath=None, repr_method='__unicode__'): + """ + Saves the po file to ``fpath``. + If it is an existing file and no ``fpath`` is provided, then the + existing file is rewritten with the modified data. + + Keyword arguments: + + ``fpath`` + string, full or relative path to the file. + + ``repr_method`` + string, the method to use for output. + """ + if self.fpath is None and fpath is None: + raise IOError('You must provide a file path to save() method') + contents = getattr(self, repr_method)() + if fpath is None: + fpath = self.fpath + if repr_method == 'to_binary': + fhandle = open(fpath, 'wb') + else: + fhandle = io.open(fpath, 'w', encoding=self.encoding) + if not isinstance(contents, text_type): + contents = contents.decode(self.encoding) + fhandle.write(contents) + fhandle.close() + # set the file path if not set + if self.fpath is None and fpath: + self.fpath = fpath + + def find(self, st, by='msgid', include_obsolete_entries=False, + msgctxt=False): + """ + Find the entry which msgid (or property identified by the ``by`` + argument) matches the string ``st``. + + Keyword arguments: + + ``st`` + string, the string to search for. + + ``by`` + string, the property to use for comparison (default: ``msgid``). + + ``include_obsolete_entries`` + boolean, whether to also search in entries that are obsolete. + + ``msgctxt`` + string, allows specifying a specific message context for the + search. + """ + if include_obsolete_entries: + entries = self[:] + else: + entries = [e for e in self if not e.obsolete] + for e in entries: + if getattr(e, by) == st: + if msgctxt is not False and e.msgctxt != msgctxt: + continue + return e + return None + + def ordered_metadata(self): + """ + Convenience method that returns an ordered version of the metadata + dictionary. The return value is list of tuples (metadata name, + metadata_value). + """ + # copy the dict first + metadata = self.metadata.copy() + data_order = [ + 'Project-Id-Version', + 'Report-Msgid-Bugs-To', + 'POT-Creation-Date', + 'PO-Revision-Date', + 'Last-Translator', + 'Language-Team', + 'Language', + 'MIME-Version', + 'Content-Type', + 'Content-Transfer-Encoding', + 'Plural-Forms' + ] + ordered_data = [] + for data in data_order: + try: + value = metadata.pop(data) + ordered_data.append((data, value)) + except KeyError: + pass + # the rest of the metadata will be alphabetically ordered since there + # are no specs for this AFAIK + for data in natural_sort(metadata.keys()): + value = metadata[data] + ordered_data.append((data, value)) + return ordered_data + + def to_binary(self): + """ + Return the binary representation of the file. + """ + offsets = [] + entries = self.translated_entries() + + # the keys are sorted in the .mo file + def cmp(_self, other): + # msgfmt compares entries with msgctxt if it exists + self_msgid = _self.msgctxt and _self.msgctxt or _self.msgid + other_msgid = other.msgctxt and other.msgctxt or other.msgid + if self_msgid > other_msgid: + return 1 + elif self_msgid < other_msgid: + return -1 + else: + return 0 + # add metadata entry + entries.sort(key=lambda o: o.msgctxt or o.msgid) + mentry = self.metadata_as_entry() + #mentry.msgstr = mentry.msgstr.replace('\\n', '').lstrip() + entries = [mentry] + entries + entries_len = len(entries) + ids, strs = b(''), b('') + for e in entries: + # For each string, we need size and file offset. Each string is + # NUL terminated; the NUL does not count into the size. + msgid = b('') + if e.msgctxt: + # Contexts are stored by storing the concatenation of the + # context, a <EOT> byte, and the original string + msgid = self._encode(e.msgctxt + '\4') + if e.msgid_plural: + msgstr = [] + for index in sorted(e.msgstr_plural.keys()): + msgstr.append(e.msgstr_plural[index]) + msgid += self._encode(e.msgid + '\0' + e.msgid_plural) + msgstr = self._encode('\0'.join(msgstr)) + else: + msgid += self._encode(e.msgid) + msgstr = self._encode(e.msgstr) + offsets.append((len(ids), len(msgid), len(strs), len(msgstr))) + ids += msgid + b('\0') + strs += msgstr + b('\0') + + # The header is 7 32-bit unsigned integers. + keystart = 7 * 4 + 16 * entries_len + # and the values start after the keys + valuestart = keystart + len(ids) + koffsets = [] + voffsets = [] + # The string table first has the list of keys, then the list of values. + # Each entry has first the size of the string, then the file offset. + for o1, l1, o2, l2 in offsets: + koffsets += [l1, o1 + keystart] + voffsets += [l2, o2 + valuestart] + offsets = koffsets + voffsets + + output = struct.pack( + "Iiiiiii", + # Magic number + MOFile.MAGIC, + # Version + 0, + # number of entries + entries_len, + # start of key index + 7 * 4, + # start of value index + 7 * 4 + entries_len * 8, + # size and offset of hash table, we don't use hash tables + 0, keystart + + ) + if PY3 and sys.version_info.minor > 1: # python 3.2 or superior + output += array.array("i", offsets).tobytes() + else: + output += array.array("i", offsets).tostring() + output += ids + output += strs + return output + + def _encode(self, mixed): + """ + Encodes the given ``mixed`` argument with the file encoding if and + only if it's an unicode string and returns the encoded string. + """ + if isinstance(mixed, text_type): + mixed = mixed.encode(self.encoding) + return mixed +# }}} +# class POFile {{{ + + +class POFile(_BaseFile): + """ + Po (or Pot) file reader/writer. + This class inherits the :class:`~polib._BaseFile` class and, by extension, + the python ``list`` type. + """ + + def __unicode__(self): + """ + Returns the unicode representation of the po file. + """ + ret, headers = '', self.header.split('\n') + for header in headers: + if not len(header): + ret += "#\n" + elif header[:1] in [',', ':']: + ret += '#%s\n' % header + else: + ret += '# %s\n' % header + + if not isinstance(ret, text_type): + ret = ret.decode(self.encoding) + + return ret + _BaseFile.__unicode__(self) + + def save_as_mofile(self, fpath): + """ + Saves the binary representation of the file to given ``fpath``. + + Keyword argument: + + ``fpath`` + string, full or relative path to the mo file. + """ + _BaseFile.save(self, fpath, 'to_binary') + + def percent_translated(self): + """ + Convenience method that returns the percentage of translated + messages. + """ + total = len([e for e in self if not e.obsolete]) + if total == 0: + return 100 + translated = len(self.translated_entries()) + return int(translated * 100 / float(total)) + + def translated_entries(self): + """ + Convenience method that returns the list of translated entries. + """ + return [e for e in self if e.translated()] + + def untranslated_entries(self): + """ + Convenience method that returns the list of untranslated entries. + """ + return [e for e in self if not e.translated() and not e.obsolete + and not 'fuzzy' in e.flags] + + def fuzzy_entries(self): + """ + Convenience method that returns the list of fuzzy entries. + """ + return [e for e in self if 'fuzzy' in e.flags] + + def obsolete_entries(self): + """ + Convenience method that returns the list of obsolete entries. + """ + return [e for e in self if e.obsolete] + + def merge(self, refpot): + """ + Convenience method that merges the current pofile with the pot file + provided. It behaves exactly as the gettext msgmerge utility: + + * comments of this file will be preserved, but extracted comments and + occurrences will be discarded; + * any translations or comments in the file will be discarded, however, + dot comments and file positions will be preserved; + * the fuzzy flags are preserved. + + Keyword argument: + + ``refpot`` + object POFile, the reference catalog. + """ + # Store entries in dict/set for faster access + self_entries = dict((entry.msgid, entry) for entry in self) + refpot_msgids = set(entry.msgid for entry in refpot) + # Merge entries that are in the refpot + for entry in refpot: + e = self_entries.get(entry.msgid) + if e is None: + e = POEntry() + self.append(e) + e.merge(entry) + # ok, now we must "obsolete" entries that are not in the refpot anymore + for entry in self: + if entry.msgid not in refpot_msgids: + entry.obsolete = True +# }}} +# class MOFile {{{ + + +class MOFile(_BaseFile): + """ + Mo file reader/writer. + This class inherits the :class:`~polib._BaseFile` class and, by + extension, the python ``list`` type. + """ + MAGIC = 0x950412de + MAGIC_SWAPPED = 0xde120495 + + def __init__(self, *args, **kwargs): + """ + Constructor, accepts all keywords arguments accepted by + :class:`~polib._BaseFile` class. + """ + _BaseFile.__init__(self, *args, **kwargs) + self.magic_number = None + self.version = 0 + + def save_as_pofile(self, fpath): + """ + Saves the mofile as a pofile to ``fpath``. + + Keyword argument: + + ``fpath`` + string, full or relative path to the file. + """ + _BaseFile.save(self, fpath) + + def save(self, fpath=None): + """ + Saves the mofile to ``fpath``. + + Keyword argument: + + ``fpath`` + string, full or relative path to the file. + """ + _BaseFile.save(self, fpath, 'to_binary') + + def percent_translated(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return 100 + + def translated_entries(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return self + + def untranslated_entries(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return [] + + def fuzzy_entries(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return [] + + def obsolete_entries(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return [] +# }}} +# class _BaseEntry {{{ + + +class _BaseEntry(object): + """ + Base class for :class:`~polib.POEntry` and :class:`~polib.MOEntry` classes. + This class should **not** be instantiated directly. + """ + + def __init__(self, *args, **kwargs): + """ + Constructor, accepts the following keyword arguments: + + ``msgid`` + string, the entry msgid. + + ``msgstr`` + string, the entry msgstr. + + ``msgid_plural`` + string, the entry msgid_plural. + + ``msgstr_plural`` + list, the entry msgstr_plural lines. + + ``msgctxt`` + string, the entry context (msgctxt). + + ``obsolete`` + bool, whether the entry is "obsolete" or not. + + ``encoding`` + string, the encoding to use, defaults to ``default_encoding`` + global variable (optional). + """ + self.msgid = kwargs.get('msgid', '') + self.msgstr = kwargs.get('msgstr', '') + self.msgid_plural = kwargs.get('msgid_plural', '') + self.msgstr_plural = kwargs.get('msgstr_plural', {}) + self.msgctxt = kwargs.get('msgctxt', None) + self.obsolete = kwargs.get('obsolete', False) + self.encoding = kwargs.get('encoding', default_encoding) + + def __unicode__(self, wrapwidth=78): + """ + Returns the unicode representation of the entry. + """ + if self.obsolete: + delflag = '#~ ' + else: + delflag = '' + ret = [] + # write the msgctxt if any + if self.msgctxt is not None: + ret += self._str_field("msgctxt", delflag, "", self.msgctxt, + wrapwidth) + # write the msgid + ret += self._str_field("msgid", delflag, "", self.msgid, wrapwidth) + # write the msgid_plural if any + if self.msgid_plural: + ret += self._str_field("msgid_plural", delflag, "", + self.msgid_plural, wrapwidth) + if self.msgstr_plural: + # write the msgstr_plural if any + msgstrs = self.msgstr_plural + keys = list(msgstrs) + keys.sort() + for index in keys: + msgstr = msgstrs[index] + plural_index = '[%s]' % index + ret += self._str_field("msgstr", delflag, plural_index, msgstr, + wrapwidth) + else: + # otherwise write the msgstr + ret += self._str_field("msgstr", delflag, "", self.msgstr, + wrapwidth) + ret.append('') + ret = u('\n').join(ret) + return ret + + if PY3: + def __str__(self): + return self.__unicode__() + else: + def __str__(self): + """ + Returns the string representation of the entry. + """ + return unicode(self).encode(self.encoding) + + def __eq__(self, other): + return str(self) == str(other) + + def _str_field(self, fieldname, delflag, plural_index, field, + wrapwidth=78): + lines = field.splitlines(True) + if len(lines) > 1: + lines = [''] + lines # start with initial empty line + else: + escaped_field = escape(field) + specialchars_count = 0 + for c in ['\\', '\n', '\r', '\t', '"']: + specialchars_count += field.count(c) + # comparison must take into account fieldname length + one space + # + 2 quotes (eg. msgid "<string>") + flength = len(fieldname) + 3 + if plural_index: + flength += len(plural_index) + real_wrapwidth = wrapwidth - flength + specialchars_count + if wrapwidth > 0 and len(field) > real_wrapwidth: + # Wrap the line but take field name into account + lines = [''] + [unescape(item) for item in wrap( + escaped_field, + wrapwidth - 2, # 2 for quotes "" + drop_whitespace=False, + break_long_words=False + )] + else: + lines = [field] + if fieldname.startswith('previous_'): + # quick and dirty trick to get the real field name + fieldname = fieldname[9:] + + ret = ['%s%s%s "%s"' % (delflag, fieldname, plural_index, + escape(lines.pop(0)))] + for line in lines: + ret.append('%s"%s"' % (delflag, escape(line))) + return ret +# }}} +# class POEntry {{{ + + +class POEntry(_BaseEntry): + """ + Represents a po file entry. + """ + + def __init__(self, *args, **kwargs): + """ + Constructor, accepts the following keyword arguments: + + ``comment`` + string, the entry comment. + + ``tcomment`` + string, the entry translator comment. + + ``occurrences`` + list, the entry occurrences. + + ``flags`` + list, the entry flags. + + ``previous_msgctxt`` + string, the entry previous context. + + ``previous_msgid`` + string, the entry previous msgid. + + ``previous_msgid_plural`` + string, the entry previous msgid_plural. + + ``linenum`` + integer, the line number of the entry + """ + _BaseEntry.__init__(self, *args, **kwargs) + self.comment = kwargs.get('comment', '') + self.tcomment = kwargs.get('tcomment', '') + self.occurrences = kwargs.get('occurrences', []) + self.flags = kwargs.get('flags', []) + self.previous_msgctxt = kwargs.get('previous_msgctxt', None) + self.previous_msgid = kwargs.get('previous_msgid', None) + self.previous_msgid_plural = kwargs.get('previous_msgid_plural', None) + self.linenum = kwargs.get('linenum', None) + + def __unicode__(self, wrapwidth=78): + """ + Returns the unicode representation of the entry. + """ + ret = [] + # comments first, if any (with text wrapping as xgettext does) + if self.obsolete: + comments = [('tcomment', '# ')] + else: + comments = [('comment', '#. '), ('tcomment', '# ')] + for c in comments: + val = getattr(self, c[0]) + if val: + for comment in val.split('\n'): + if wrapwidth > 0 and len(comment) + len(c[1]) > wrapwidth: + ret += wrap( + comment, + wrapwidth, + initial_indent=c[1], + subsequent_indent=c[1], + break_long_words=False + ) + else: + ret.append('%s%s' % (c[1], comment)) + + # occurrences (with text wrapping as xgettext does) + if not self.obsolete and self.occurrences: + filelist = [] + for fpath, lineno in self.occurrences: + if lineno: + filelist.append('%s:%s' % (fpath, lineno)) + else: + filelist.append(fpath) + filestr = ' '.join(filelist) + if wrapwidth > 0 and len(filestr) + 3 > wrapwidth: + # textwrap split words that contain hyphen, this is not + # what we want for filenames, so the dirty hack is to + # temporally replace hyphens with a char that a file cannot + # contain, like "*" + ret += [l.replace('*', '-') for l in wrap( + filestr.replace('-', '*'), + wrapwidth, + initial_indent='#: ', + subsequent_indent='#: ', + break_long_words=False + )] + else: + ret.append('#: ' + filestr) + + # flags (TODO: wrapping ?) + if self.flags: + ret.append('#, %s' % ', '.join(self.flags)) + + # previous context and previous msgid/msgid_plural + fields = ['previous_msgctxt', 'previous_msgid', + 'previous_msgid_plural'] + if self.obsolete: + prefix = "#~| " + else: + prefix = "#| " + for f in fields: + val = getattr(self, f) + if val: + ret += self._str_field(f, prefix, "", val, wrapwidth) + + ret.append(_BaseEntry.__unicode__(self, wrapwidth)) + ret = u('\n').join(ret) + return ret + + def __cmp__(self, other): + """ + Called by comparison operations if rich comparison is not defined. + """ + + # First: Obsolete test + if self.obsolete != other.obsolete: + if self.obsolete: + return -1 + else: + return 1 + # Work on a copy to protect original + occ1 = sorted(self.occurrences[:]) + occ2 = sorted(other.occurrences[:]) + pos = 0 + for entry1 in occ1: + try: + entry2 = occ2[pos] + except IndexError: + return 1 + pos = pos + 1 + if entry1[0] != entry2[0]: + if entry1[0] > entry2[0]: + return 1 + else: + return -1 + if entry1[1] != entry2[1]: + if entry1[1] > entry2[1]: + return 1 + else: + return -1 + # Compare msgid_plural if set + if self.msgid_plural: + if not other.msgid_plural: + return 1 + for pos in self.msgid_plural: + if pos not in other.msgid_plural: + return 1 + if self.msgid_plural[pos] > other.msgid_plural[pos]: + return 1 + if self.msgid_plural[pos] < other.msgid_plural[pos]: + return -1 + # Finally: Compare message ID + if self.msgid > other.msgid: + return 1 + elif self.msgid < other.msgid: + return -1 + return 0 + + def __gt__(self, other): + return self.__cmp__(other) > 0 + + def __lt__(self, other): + return self.__cmp__(other) < 0 + + def __ge__(self, other): + return self.__cmp__(other) >= 0 + + def __le__(self, other): + return self.__cmp__(other) <= 0 + + def __eq__(self, other): + return self.__cmp__(other) == 0 + + def __ne__(self, other): + return self.__cmp__(other) != 0 + + def translated(self): + """ + Returns ``True`` if the entry has been translated or ``False`` + otherwise. + """ + if self.obsolete or 'fuzzy' in self.flags: + return False + if self.msgstr != '': + return True + if self.msgstr_plural: + for pos in self.msgstr_plural: + if self.msgstr_plural[pos] == '': + return False + return True + return False + + def merge(self, other): + """ + Merge the current entry with the given pot entry. + """ + self.msgid = other.msgid + self.msgctxt = other.msgctxt + self.occurrences = other.occurrences + self.comment = other.comment + fuzzy = 'fuzzy' in self.flags + self.flags = other.flags[:] # clone flags + if fuzzy: + self.flags.append('fuzzy') + self.msgid_plural = other.msgid_plural + self.obsolete = other.obsolete + self.previous_msgctxt = other.previous_msgctxt + self.previous_msgid = other.previous_msgid + self.previous_msgid_plural = other.previous_msgid_plural + if other.msgstr_plural: + for pos in other.msgstr_plural: + try: + # keep existing translation at pos if any + self.msgstr_plural[pos] + except KeyError: + self.msgstr_plural[pos] = '' + + def __hash__(self): + return hash((self.msgid, self.msgstr)) +# }}} +# class MOEntry {{{ + + +class MOEntry(_BaseEntry): + """ + Represents a mo file entry. + """ + def __init__(self, *args, **kwargs): + """ + Constructor, accepts the following keyword arguments, + for consistency with :class:`~polib.POEntry`: + + ``comment`` + ``tcomment`` + ``occurrences`` + ``flags`` + ``previous_msgctxt`` + ``previous_msgid`` + ``previous_msgid_plural`` + + Note: even though these keyword arguments are accepted, + they hold no real meaning in the context of MO files + and are simply ignored. + """ + _BaseEntry.__init__(self, *args, **kwargs) + self.comment = '' + self.tcomment = '' + self.occurrences = [] + self.flags = [] + self.previous_msgctxt = None + self.previous_msgid = None + self.previous_msgid_plural = None + + def __hash__(self): + return hash((self.msgid, self.msgstr)) + +# }}} +# class _POFileParser {{{ + + +class _POFileParser(object): + """ + A finite state machine to parse efficiently and correctly po + file format. + """ + + def __init__(self, pofile, *args, **kwargs): + """ + Constructor. + + Keyword arguments: + + ``pofile`` + string, path to the po file or its content + + ``encoding`` + string, the encoding to use, defaults to ``default_encoding`` + global variable (optional). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file (optional, default: ``False``). + """ + enc = kwargs.get('encoding', default_encoding) + if _is_file(pofile): + try: + self.fhandle = io.open(pofile, 'rt', encoding=enc) + except LookupError: + enc = default_encoding + self.fhandle = io.open(pofile, 'rt', encoding=enc) + else: + self.fhandle = pofile.splitlines() + + klass = kwargs.get('klass') + if klass is None: + klass = POFile + self.instance = klass( + pofile=pofile, + encoding=enc, + check_for_duplicates=kwargs.get('check_for_duplicates', False) + ) + self.transitions = {} + self.current_line = 0 + self.current_entry = POEntry(linenum=self.current_line) + self.current_state = 'st' + self.current_token = None + # two memo flags used in handlers + self.msgstr_index = 0 + self.entry_obsolete = 0 + # Configure the state machine, by adding transitions. + # Signification of symbols: + # * ST: Beginning of the file (start) + # * HE: Header + # * TC: a translation comment + # * GC: a generated comment + # * OC: a file/line occurrence + # * FL: a flags line + # * CT: a message context + # * PC: a previous msgctxt + # * PM: a previous msgid + # * PP: a previous msgid_plural + # * MI: a msgid + # * MP: a msgid plural + # * MS: a msgstr + # * MX: a msgstr plural + # * MC: a msgid or msgstr continuation line + all = ['st', 'he', 'gc', 'oc', 'fl', 'ct', 'pc', 'pm', 'pp', 'tc', + 'ms', 'mp', 'mx', 'mi'] + + self.add('tc', ['st', 'he'], 'he') + self.add('tc', ['gc', 'oc', 'fl', 'tc', 'pc', 'pm', 'pp', 'ms', + 'mp', 'mx', 'mi'], 'tc') + self.add('gc', all, 'gc') + self.add('oc', all, 'oc') + self.add('fl', all, 'fl') + self.add('pc', all, 'pc') + self.add('pm', all, 'pm') + self.add('pp', all, 'pp') + self.add('ct', ['st', 'he', 'gc', 'oc', 'fl', 'tc', 'pc', 'pm', + 'pp', 'ms', 'mx'], 'ct') + self.add('mi', ['st', 'he', 'gc', 'oc', 'fl', 'ct', 'tc', 'pc', + 'pm', 'pp', 'ms', 'mx'], 'mi') + self.add('mp', ['tc', 'gc', 'pc', 'pm', 'pp', 'mi'], 'mp') + self.add('ms', ['mi', 'mp', 'tc'], 'ms') + self.add('mx', ['mi', 'mx', 'mp', 'tc'], 'mx') + self.add('mc', ['ct', 'mi', 'mp', 'ms', 'mx', 'pm', 'pp', 'pc'], 'mc') + + def parse(self): + """ + Run the state machine, parse the file line by line and call process() + with the current matched symbol. + """ + + keywords = { + 'msgctxt': 'ct', + 'msgid': 'mi', + 'msgstr': 'ms', + 'msgid_plural': 'mp', + } + prev_keywords = { + 'msgid_plural': 'pp', + 'msgid': 'pm', + 'msgctxt': 'pc', + } + tokens = [] + for line in self.fhandle: + self.current_line += 1 + line = line.strip() + if line == '': + continue + + tokens = line.split(None, 2) + nb_tokens = len(tokens) + + if tokens[0] == '#~|': + continue + + if tokens[0] == '#~' and nb_tokens > 1: + line = line[3:].strip() + tokens = tokens[1:] + nb_tokens -= 1 + self.entry_obsolete = 1 + else: + self.entry_obsolete = 0 + + # Take care of keywords like + # msgid, msgid_plural, msgctxt & msgstr. + if tokens[0] in keywords and nb_tokens > 1: + line = line[len(tokens[0]):].lstrip() + if re.search(r'([^\\]|^)"', line[1:-1]): + raise IOError('Syntax error in po file %s (line %s): ' + 'unescaped double quote found' % + (self.instance.fpath, self.current_line)) + self.current_token = line + self.process(keywords[tokens[0]]) + continue + + self.current_token = line + + if tokens[0] == '#:': + if nb_tokens <= 1: + continue + # we are on a occurrences line + self.process('oc') + + elif line[:1] == '"': + # we are on a continuation line + if re.search(r'([^\\]|^)"', line[1:-1]): + raise IOError('Syntax error in po file %s (line %s): ' + 'unescaped double quote found' % + (self.instance.fpath, self.current_line)) + self.process('mc') + + elif line[:7] == 'msgstr[': + # we are on a msgstr plural + self.process('mx') + + elif tokens[0] == '#,': + if nb_tokens <= 1: + continue + # we are on a flags line + self.process('fl') + + elif tokens[0] == '#' or tokens[0].startswith('##'): + if line == '#': + line += ' ' + # we are on a translator comment line + self.process('tc') + + elif tokens[0] == '#.': + if nb_tokens <= 1: + continue + # we are on a generated comment line + self.process('gc') + + elif tokens[0] == '#|': + if nb_tokens <= 1: + raise IOError('Syntax error in po file %s (line %s)' % + (self.instance.fpath, self.current_line)) + + # Remove the marker and any whitespace right after that. + line = line[2:].lstrip() + self.current_token = line + + if tokens[1].startswith('"'): + # Continuation of previous metadata. + self.process('mc') + continue + + if nb_tokens == 2: + # Invalid continuation line. + raise IOError('Syntax error in po file %s (line %s): ' + 'invalid continuation line' % + (self.instance.fpath, self.current_line)) + + # we are on a "previous translation" comment line, + if tokens[1] not in prev_keywords: + # Unknown keyword in previous translation comment. + raise IOError('Syntax error in po file %s (line %s): ' + 'unknown keyword %s' % + (self.instance.fpath, self.current_line, + tokens[1])) + + # Remove the keyword and any whitespace + # between it and the starting quote. + line = line[len(tokens[1]):].lstrip() + self.current_token = line + self.process(prev_keywords[tokens[1]]) + + else: + raise IOError('Syntax error in po file %s (line %s)' % + (self.instance.fpath, self.current_line)) + + if self.current_entry and len(tokens) > 0 and \ + not tokens[0].startswith('#'): + # since entries are added when another entry is found, we must add + # the last entry here (only if there are lines). Trailing comments + # are ignored + self.instance.append(self.current_entry) + + # before returning the instance, check if there's metadata and if + # so extract it in a dict + metadataentry = self.instance.find('') + if metadataentry: # metadata found + # remove the entry + self.instance.remove(metadataentry) + self.instance.metadata_is_fuzzy = metadataentry.flags + key = None + for msg in metadataentry.msgstr.splitlines(): + try: + key, val = msg.split(':', 1) + self.instance.metadata[key] = val.strip() + except (ValueError, KeyError): + if key is not None: + self.instance.metadata[key] += '\n' + msg.strip() + # close opened file + if not isinstance(self.fhandle, list): # must be file + self.fhandle.close() + return self.instance + + def add(self, symbol, states, next_state): + """ + Add a transition to the state machine. + + Keywords arguments: + + ``symbol`` + string, the matched token (two chars symbol). + + ``states`` + list, a list of states (two chars symbols). + + ``next_state`` + the next state the fsm will have after the action. + """ + for state in states: + action = getattr(self, 'handle_%s' % next_state) + self.transitions[(symbol, state)] = (action, next_state) + + def process(self, symbol): + """ + Process the transition corresponding to the current state and the + symbol provided. + + Keywords arguments: + + ``symbol`` + string, the matched token (two chars symbol). + + ``linenum`` + integer, the current line number of the parsed file. + """ + try: + (action, state) = self.transitions[(symbol, self.current_state)] + if action(): + self.current_state = state + except Exception: + raise IOError('Syntax error in po file (line %s)' % + self.current_line) + + # state handlers + + def handle_he(self): + """Handle a header comment.""" + if self.instance.header != '': + self.instance.header += '\n' + self.instance.header += self.current_token[2:] + return 1 + + def handle_tc(self): + """Handle a translator comment.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry(linenum=self.current_line) + if self.current_entry.tcomment != '': + self.current_entry.tcomment += '\n' + tcomment = self.current_token.lstrip('#') + if tcomment.startswith(' '): + tcomment = tcomment[1:] + self.current_entry.tcomment += tcomment + return True + + def handle_gc(self): + """Handle a generated comment.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry(linenum=self.current_line) + if self.current_entry.comment != '': + self.current_entry.comment += '\n' + self.current_entry.comment += self.current_token[3:] + return True + + def handle_oc(self): + """Handle a file:num occurrence.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry(linenum=self.current_line) + occurrences = self.current_token[3:].split() + for occurrence in occurrences: + if occurrence != '': + try: + fil, line = occurrence.rsplit(':', 1) + if not line.isdigit(): + fil = fil + line + line = '' + self.current_entry.occurrences.append((fil, line)) + except (ValueError, AttributeError): + self.current_entry.occurrences.append((occurrence, '')) + return True + + def handle_fl(self): + """Handle a flags line.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry(linenum=self.current_line) + self.current_entry.flags += [c.strip() for c in + self.current_token[3:].split(',')] + return True + + def handle_pp(self): + """Handle a previous msgid_plural line.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry(linenum=self.current_line) + self.current_entry.previous_msgid_plural = \ + unescape(self.current_token[1:-1]) + return True + + def handle_pm(self): + """Handle a previous msgid line.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry(linenum=self.current_line) + self.current_entry.previous_msgid = \ + unescape(self.current_token[1:-1]) + return True + + def handle_pc(self): + """Handle a previous msgctxt line.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry(linenum=self.current_line) + self.current_entry.previous_msgctxt = \ + unescape(self.current_token[1:-1]) + return True + + def handle_ct(self): + """Handle a msgctxt.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry(linenum=self.current_line) + self.current_entry.msgctxt = unescape(self.current_token[1:-1]) + return True + + def handle_mi(self): + """Handle a msgid.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry(linenum=self.current_line) + self.current_entry.obsolete = self.entry_obsolete + self.current_entry.msgid = unescape(self.current_token[1:-1]) + return True + + def handle_mp(self): + """Handle a msgid plural.""" + self.current_entry.msgid_plural = unescape(self.current_token[1:-1]) + return True + + def handle_ms(self): + """Handle a msgstr.""" + self.current_entry.msgstr = unescape(self.current_token[1:-1]) + return True + + def handle_mx(self): + """Handle a msgstr plural.""" + index = self.current_token[7] + value = self.current_token[self.current_token.find('"') + 1:-1] + self.current_entry.msgstr_plural[int(index)] = unescape(value) + self.msgstr_index = int(index) + return True + + def handle_mc(self): + """Handle a msgid or msgstr continuation line.""" + token = unescape(self.current_token[1:-1]) + if self.current_state == 'ct': + self.current_entry.msgctxt += token + elif self.current_state == 'mi': + self.current_entry.msgid += token + elif self.current_state == 'mp': + self.current_entry.msgid_plural += token + elif self.current_state == 'ms': + self.current_entry.msgstr += token + elif self.current_state == 'mx': + self.current_entry.msgstr_plural[self.msgstr_index] += token + elif self.current_state == 'pp': + self.current_entry.previous_msgid_plural += token + elif self.current_state == 'pm': + self.current_entry.previous_msgid += token + elif self.current_state == 'pc': + self.current_entry.previous_msgctxt += token + # don't change the current state + return False +# }}} +# class _MOFileParser {{{ + + +class _MOFileParser(object): + """ + A class to parse binary mo files. + """ + + def __init__(self, mofile, *args, **kwargs): + """ + Constructor. + + Keyword arguments: + + ``mofile`` + string, path to the mo file or its content + + ``encoding`` + string, the encoding to use, defaults to ``default_encoding`` + global variable (optional). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file (optional, default: ``False``). + """ + self.fhandle = open(mofile, 'rb') + + klass = kwargs.get('klass') + if klass is None: + klass = MOFile + self.instance = klass( + fpath=mofile, + encoding=kwargs.get('encoding', default_encoding), + check_for_duplicates=kwargs.get('check_for_duplicates', False) + ) + + def __del__(self): + """ + Make sure the file is closed, this prevents warnings on unclosed file + when running tests with python >= 3.2. + """ + if self.fhandle: + self.fhandle.close() + + def parse(self): + """ + Build the instance with the file handle provided in the + constructor. + """ + # parse magic number + magic_number = self._readbinary('<I', 4) + if magic_number == MOFile.MAGIC: + ii = '<II' + elif magic_number == MOFile.MAGIC_SWAPPED: + ii = '>II' + else: + raise IOError('Invalid mo file, magic number is incorrect !') + self.instance.magic_number = magic_number + # parse the version number and the number of strings + version, numofstrings = self._readbinary(ii, 8) + # from MO file format specs: "A program seeing an unexpected major + # revision number should stop reading the MO file entirely" + if version not in (0, 1): + raise IOError('Invalid mo file, unexpected major revision number') + self.instance.version = version + # original strings and translation strings hash table offset + msgids_hash_offset, msgstrs_hash_offset = self._readbinary(ii, 8) + # move to msgid hash table and read length and offset of msgids + self.fhandle.seek(msgids_hash_offset) + msgids_index = [] + for i in range(numofstrings): + msgids_index.append(self._readbinary(ii, 8)) + # move to msgstr hash table and read length and offset of msgstrs + self.fhandle.seek(msgstrs_hash_offset) + msgstrs_index = [] + for i in range(numofstrings): + msgstrs_index.append(self._readbinary(ii, 8)) + # build entries + encoding = self.instance.encoding + for i in range(numofstrings): + self.fhandle.seek(msgids_index[i][1]) + msgid = self.fhandle.read(msgids_index[i][0]) + + self.fhandle.seek(msgstrs_index[i][1]) + msgstr = self.fhandle.read(msgstrs_index[i][0]) + if i == 0 and not msgid: # metadata + raw_metadata, metadata = msgstr.split(b('\n')), {} + for line in raw_metadata: + tokens = line.split(b(':'), 1) + if tokens[0] != b(''): + try: + k = tokens[0].decode(encoding) + v = tokens[1].decode(encoding) + metadata[k] = v.strip() + except IndexError: + metadata[k] = u('') + self.instance.metadata = metadata + continue + # test if we have a plural entry + msgid_tokens = msgid.split(b('\0')) + if len(msgid_tokens) > 1: + entry = self._build_entry( + msgid=msgid_tokens[0], + msgid_plural=msgid_tokens[1], + msgstr_plural=dict((k, v) for k, v in + enumerate(msgstr.split(b('\0')))) + ) + else: + entry = self._build_entry(msgid=msgid, msgstr=msgstr) + self.instance.append(entry) + # close opened file + self.fhandle.close() + return self.instance + + def _build_entry(self, msgid, msgstr=None, msgid_plural=None, + msgstr_plural=None): + msgctxt_msgid = msgid.split(b('\x04')) + encoding = self.instance.encoding + if len(msgctxt_msgid) > 1: + kwargs = { + 'msgctxt': msgctxt_msgid[0].decode(encoding), + 'msgid': msgctxt_msgid[1].decode(encoding), + } + else: + kwargs = {'msgid': msgid.decode(encoding)} + if msgstr: + kwargs['msgstr'] = msgstr.decode(encoding) + if msgid_plural: + kwargs['msgid_plural'] = msgid_plural.decode(encoding) + if msgstr_plural: + for k in msgstr_plural: + msgstr_plural[k] = msgstr_plural[k].decode(encoding) + kwargs['msgstr_plural'] = msgstr_plural + return MOEntry(**kwargs) + + def _readbinary(self, fmt, numbytes): + """ + Private method that unpack n bytes of data using format <fmt>. + It returns a tuple or a mixed value if the tuple length is 1. + """ + bytes = self.fhandle.read(numbytes) + tup = struct.unpack(fmt, bytes) + if len(tup) == 1: + return tup[0] + return tup +# }}} +# class TextWrapper {{{ + + +class TextWrapper(textwrap.TextWrapper): + """ + Subclass of textwrap.TextWrapper that backport the + drop_whitespace option. + """ + def __init__(self, *args, **kwargs): + drop_whitespace = kwargs.pop('drop_whitespace', True) + textwrap.TextWrapper.__init__(self, *args, **kwargs) + self.drop_whitespace = drop_whitespace + + def _wrap_chunks(self, chunks): + """_wrap_chunks(chunks : [string]) -> [string] + + Wrap a sequence of text chunks and return a list of lines of + length 'self.width' or less. (If 'break_long_words' is false, + some lines may be longer than this.) Chunks correspond roughly + to words and the whitespace between them: each chunk is + indivisible (modulo 'break_long_words'), but a line break can + come between any two chunks. Chunks should not have internal + whitespace; ie. a chunk is either all whitespace or a "word". + Whitespace chunks will be removed from the beginning and end of + lines, but apart from that whitespace is preserved. + """ + lines = [] + if self.width <= 0: + raise ValueError("invalid width %r (must be > 0)" % self.width) + + # Arrange in reverse order so items can be efficiently popped + # from a stack of chucks. + chunks.reverse() + + while chunks: + + # Start the list of chunks that will make up the current line. + # cur_len is just the length of all the chunks in cur_line. + cur_line = [] + cur_len = 0 + + # Figure out which static string will prefix this line. + if lines: + indent = self.subsequent_indent + else: + indent = self.initial_indent + + # Maximum width for this line. + width = self.width - len(indent) + + # First chunk on line is whitespace -- drop it, unless this + # is the very beginning of the text (ie. no lines started yet). + if self.drop_whitespace and chunks[-1].strip() == '' and lines: + del chunks[-1] + + while chunks: + l = len(chunks[-1]) + + # Can at least squeeze this chunk onto the current line. + if cur_len + l <= width: + cur_line.append(chunks.pop()) + cur_len += l + + # Nope, this line is full. + else: + break + + # The current line is full, and the next chunk is too big to + # fit on *any* line (not just this one). + if chunks and len(chunks[-1]) > width: + self._handle_long_word(chunks, cur_line, cur_len, width) + + # If the last chunk on this line is all whitespace, drop it. + if self.drop_whitespace and cur_line and not cur_line[-1].strip(): + del cur_line[-1] + + # Convert current line back to a string and store it in list + # of all lines (return value). + if cur_line: + lines.append(indent + ''.join(cur_line)) + + return lines +# }}} +# function wrap() {{{ + + +def wrap(text, width=70, **kwargs): + """ + Wrap a single paragraph of text, returning a list of wrapped lines. + """ + if sys.version_info < (2, 6): + return TextWrapper(width=width, **kwargs).wrap(text) + return textwrap.wrap(text, width=width, **kwargs) + +# }}} diff --git a/packaging/win32/macros/AdvUninstLog.nsh b/packaging/win32/macros/AdvUninstLog.nsh new file mode 100644 index 0000000..a932aa8 --- /dev/null +++ b/packaging/win32/macros/AdvUninstLog.nsh @@ -0,0 +1,437 @@ + ;_____________________________ HEADER FILE BEGIN ____________________________ + + # Advanced Uninstall Log NSIS header + # Version 1.0 2007-01-31 + # By Red Wine (http://nsis.sf.net/User:Red_Wine) + + # Usage: See included examples Uninstall_Log_Default_UI.nsi - Uninstall_Log_Modern_UI.nsi + +!verbose push + !verbose 3 + +!ifndef ADVANCED_UNINSTALL.LOG_NSH + !define ADVANCED_UNINSTALL.LOG_NSH + +!ifndef INSTDIR_REG_ROOT | INSTDIR_REG_KEY + !error "You must properly define both INSTDIR_REG_ROOT and INSTDIR_REG_KEY" +!endif + +!ifndef UNINSTALL_LOG + !define UNINSTALL_LOG "Uninstall" +!endif + +!ifndef UNINST_LOG_VERBOSE + !define UNINST_LOG_VERBOSE "3" +!endif + +!verbose pop + +!echo "Advanced Uninstall Log NSIS header v1.0 2007-01-31 by Red Wine (http://nsis.sf.net/User:Red_Wine)" + +!verbose push + !verbose ${UNINST_LOG_VERBOSE} + +!define UNINST_EXE "$INSTDIR\${UNINSTALL_LOG}.exe" +!define UNINST_DAT "$INSTDIR\${UNINSTALL_LOG}.dat" +!define UNLOG_PART "$PLUGINSDIR\part." +!define UNLOG_TEMP "$PLUGINSDIR\unlog.tmp" +!define EXCLU_LIST "$PLUGINSDIR\exclude.tmp" +!define UNLOG_HEAD "=========== Uninstaller Log please do not edit this file ===========" + + var unlog_tmp_0 + var unlog_tmp_1 + var unlog_tmp_2 + var unlog_tmp_3 + var unlog_error + +!include FileFunc.nsh +!include TextFunc.nsh + +!insertmacro Locate +!insertmacro un.Locate +!insertmacro DirState +!insertmacro un.DirState +!insertmacro FileJoin +!insertmacro TrimNewLines +!insertmacro un.TrimNewLines + +;.............................. Uninstaller Macros .............................. + +!macro UNINSTALL.LOG_BEGIN_UNINSTALL + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + IfFileExists "${UNINST_DAT}" +3 + MessageBox MB_ICONSTOP|MB_OK "${UNINST_DAT} not found, unable to perform uninstall." /SD IDOK + Quit + + StrCmp "$PLUGINSDIR" "" 0 +2 + InitPluginsDir + + CopyFiles "${UNINST_DAT}" "${UNLOG_TEMP}" + FileOpen $unlog_tmp_2 "${UNLOG_TEMP}" r + + !verbose pop +!macroend + + +!macro UNINSTALL.LOG_END_UNINSTALL + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + FileClose $unlog_tmp_2 + DeleteRegValue ${INSTDIR_REG_ROOT} "${INSTDIR_REG_KEY}" "${UNINSTALL_LOG}.dat" + DeleteRegValue ${INSTDIR_REG_ROOT} "${INSTDIR_REG_KEY}" "${UNINSTALL_LOG}Directory" + + !verbose pop +!macroend + + +!macro UNINSTALL.LOG_UNINSTALL TargetDir + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + !ifndef INTERACTIVE_UNINSTALL & UNATTENDED_UNINSTALL + !error "You must insert either Interactive or Unattended Uninstall neither both, neither none." + !endif + + !ifdef INTERACTIVE_UNINSTALL + GetTempFileName $unlog_tmp_5 "$PLUGINSDIR" + FileOpen $unlog_tmp_4 "$unlog_tmp_5" a + !endif + + ${PerfomUninstall} "${TargetDir}" "${UnLog_Uninstall_CallBackFunc}" + + !ifdef INTERACTIVE_UNINSTALL + FileClose $unlog_tmp_4 + !endif + + !verbose pop +!macroend + + +!define PerfomUninstall "!insertmacro PERFORMUNINSTALL" + +!macro PERFORMUNINSTALL TargetDir UninstCallBackFunc + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + !define ID ${__LINE__} + + ${un.Locate} "${TargetDir}" "/L=F" "${UninstCallBackFunc}" + + loop_${ID}: + + StrCpy $unlog_tmp_1 0 + + ${un.Locate} "${TargetDir}" "/L=DE" "${UninstCallBackFunc}" + StrCmp $unlog_tmp_1 "0" 0 loop_${ID} + + ${un.DirState} "${TargetDir}" $unlog_tmp_0 + StrCmp "$unlog_tmp_0" "0" 0 +2 + RmDir "${TargetDir}" + + IfErrors 0 +2 + MessageBox MB_ICONEXCLAMATION|MB_OK "${UNINSTALL_LOG} Log error" /SD IDOK + + !undef ID + + !verbose pop +!macroend + + +!macro INTERACTIVE_UNINSTALL + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + !ifdef INTERACTIVE_UNINSTALL + !error "INTERACTIVE_UNINSTALL is already defined" + !endif + + var unlog_tmp_4 + var unlog_tmp_5 + + !define INTERACTIVE_UNINSTALL + + !ifdef INTERACTIVE_UNINSTALL & UNATTENDED_UNINSTALL + !error "You must insert either Interactive or Unattended Uninstall neither both, neither none." + !endif + + !ifdef UnLog_Uninstall_CallBackFunc + !undef UnLog_Uninstall_CallBackFunc + !endif + + !ifndef UnLog_Uninstall_CallBackFunc + !insertmacro UNINSTALL.LOG_UNINSTALL_INTERACTIVE + !define UnLog_Uninstall_CallBackFunc "un._LocateCallBack_Function_Interactive" + !endif + + !verbose pop +!macroend + + +!macro UNATTENDED_UNINSTALL + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + !ifdef UNATTENDED_UNINSTALL + !error "UNATTENDED_UNINSTALL is already defined" + !endif + + !define UNATTENDED_UNINSTALL + + !ifdef INTERACTIVE_UNINSTALL & UNATTENDED_UNINSTALL + !error "You must insert either Interactive or Unattended Uninstall neither both, neither none." + !endif + + !ifdef UnLog_Uninstall_CallBackFunc + !undef UnLog_Uninstall_CallBackFunc + !endif + + !ifndef UnLog_Uninstall_CallBackFunc + !insertmacro UNINSTALL.LOG_UNINSTALL_UNATTENDED + !define UnLog_Uninstall_CallBackFunc "un._LocateCallBack_Function_Unattended" + !endif + + !verbose pop +!macroend + + +!macro UNINSTALL.LOG_UNINSTALL_UNATTENDED + + Function un._LocateCallBack_Function_Unattended + start: + FileRead $unlog_tmp_2 "$unlog_tmp_3" ${NSIS_MAX_STRLEN} + ${un.TrimNewLines} "$unlog_tmp_3" "$unlog_tmp_3" + StrCmp "$unlog_tmp_3" "$R9" islog + IfErrors nolog + goto start + + islog: + IfFileExists "$R9\*.*" isdir + + isfile: + Delete "$R9" + goto end + + isdir: + RmDir "$R9" + IntOp $unlog_tmp_1 $unlog_tmp_1 + 1 + goto end + + nolog: + ClearErrors + StrCmp "$R9" "${UNINST_EXE}" isfile + StrCmp "$R9" "${UNINST_DAT}" isfile + + end: + FileSeek $unlog_tmp_2 0 SET + Push $unlog_tmp_0 + FunctionEnd + +!macroend + + +!macro UNINSTALL.LOG_UNINSTALL_INTERACTIVE + + Function un._LocateCallBack_Function_Interactive + start: + FileRead $unlog_tmp_2 "$unlog_tmp_3" ${NSIS_MAX_STRLEN} + ${un.TrimNewLines} "$unlog_tmp_3" "$unlog_tmp_3" + StrCmp "$unlog_tmp_3" "$R9" islog + IfErrors nolog + goto start + + islog: + IfFileExists "$R9\*.*" isdir + + isfile: + Delete "$R9" + goto end + + isdir: + RmDir "$R9" + IntOp $unlog_tmp_1 $unlog_tmp_1 + 1 + goto end + + nolog: + ClearErrors + FileSeek $unlog_tmp_4 0 SET + read: + FileRead $unlog_tmp_4 "$unlog_tmp_3" + ${un.TrimNewLines} "$unlog_tmp_3" "$unlog_tmp_3" + StrCmp "$unlog_tmp_3" "$R9" end + IfErrors +2 + goto read + ClearErrors + StrCmp "$R9" "${UNINST_EXE}" isfile + StrCmp "$R9" "${UNINST_DAT}" isfile + IfFileExists "$R9\*.*" msgdir + + MessageBox MB_ICONQUESTION|MB_YESNO \ + 'Delete File "$R9"?' /SD IDNO IDYES isfile IDNO nodel + + msgdir: + MessageBox MB_ICONQUESTION|MB_YESNO \ + 'Delete Directory "$R9"?' /SD IDNO IDYES isdir IDNO nodel + + nodel: + FileSeek $unlog_tmp_4 0 END + FileWrite $unlog_tmp_4 "$R9$\r$\n" + + end: + FileSeek $unlog_tmp_2 0 SET + Push $unlog_tmp_0 + FunctionEnd + +!macroend + +;................................. Installer Macros ................................. + +!macro UNINSTALL.LOG_INSTALL_UNATTENDED + + Function _LocateCallBack_Function_Install + loop: + FileRead $unlog_tmp_2 "$unlog_tmp_3" ${NSIS_MAX_STRLEN} + ${TrimNewLines} "$unlog_tmp_3" "$unlog_tmp_3" + IfErrors 0 +4 + ClearErrors + FileSeek $unlog_tmp_2 0 SET + goto next + StrCmp "$R9" "$unlog_tmp_3" end + goto loop + next: + FileWrite $unlog_tmp_1 "$R9$\r$\n" + end: + Push $unlog_tmp_0 + FunctionEnd + +!macroend + + +!ifdef UnLog_Install_Func_CallBack + !undef UnLog_Install_Func_CallBack +!endif + +!ifndef UnLog_Install_Func_CallBack + !insertmacro UNINSTALL.LOG_INSTALL_UNATTENDED + !define UnLog_Install_Func_CallBack "_LocateCallBack_Function_Install" +!endif + + +!macro UNINSTALL.LOG_PREPARE_INSTALL + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + Push $0 + Push $1 + ClearErrors + ReadRegStr "$0" ${INSTDIR_REG_ROOT} "${INSTDIR_REG_KEY}" "${UNINSTALL_LOG}Directory" + IfErrors next + ${DirState} "$0" $1 + StrCmp "$1" "-1" next + StrCmp "$1" "0" next + IfFileExists "$0\${UNINSTALL_LOG}.dat" next + MessageBox MB_ICONEXCLAMATION|MB_OK \ + "Previous installation detected at $0.$\n\ + Required file ${UNINSTALL_LOG}.dat is missing.$\n$\nIt is highly recommended \ + to select an empty directory and perform a fresh installation." /SD IDOK + StrCpy $unlog_error "error" + + next: + ClearErrors + StrCmp "$PLUGINSDIR" "" 0 +2 + InitPluginsDir + + GetTempFileName "$1" + FileOpen $0 "$1" w + FileWrite $0 "${UNLOG_HEAD}$\r$\n" + FileClose $0 + Rename "$1" "${UNLOG_TEMP}" + Pop $1 + Pop $0 + + !verbose pop +!macroend + + +!macro UNINSTALL.LOG_UPDATE_INSTALL + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + Delete "${UNINST_DAT}" + Rename "${UNLOG_TEMP}" "${UNINST_DAT}" + WriteUninstaller "${UNINST_EXE}" + WriteRegStr ${INSTDIR_REG_ROOT} "${INSTDIR_REG_KEY}" "${UNINSTALL_LOG}.dat" "${UNINST_DAT}" + WriteRegStr ${INSTDIR_REG_ROOT} "${INSTDIR_REG_KEY}" "${UNINSTALL_LOG}Directory" "$INSTDIR" + + !verbose pop +!macroend + + +!define uninstall.log_install "!insertmacro UNINSTALL.LOG_INSTALL" + +!macro UNINSTALL.LOG_INSTALL FileOpenWrite FileOpenRead TargetDir + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + FileOpen $unlog_tmp_1 "${FileOpenWrite}" w + FileOpen $unlog_tmp_2 "${FileOpenRead}" r + + ${Locate} "${TargetDir}" "/L=FD" "${UnLog_Install_Func_CallBack}" + + StrCmp $unlog_error "error" 0 +2 + ClearErrors + + IfErrors 0 +2 + MessageBox MB_ICONEXCLAMATION|MB_OK "Error creating ${UNINSTALL_LOG} Log." /SD IDOK + + FileClose $unlog_tmp_1 + FileClose $unlog_tmp_2 + + !verbose pop +!macroend + + +!define uninstall.log_mergeID "!insertmacro UNINSTALL.LOG_MERGE" + +!macro UNINSTALL.LOG_MERGE UnlogPart + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + ${FileJoin} "${UNLOG_TEMP}" "${UnlogPart}" "${UNLOG_TEMP}" + + !verbose pop +!macroend + + +!macro UNINSTALL.LOG_OPEN_INSTALL + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + StrCmp $unlog_error "error" +2 + ${uninstall.log_install} "${EXCLU_LIST}" "${UNINST_DAT}" "$OUTDIR" + + !verbose pop +!macroend + + +!macro UNINSTALL.LOG_CLOSE_INSTALL + !verbose push + !verbose ${UNINST_LOG_VERBOSE} + + !define ID ${__LINE__} + + ${uninstall.log_install} "${UNLOG_PART}${ID}" "${EXCLU_LIST}" "$OUTDIR" + ${uninstall.log_mergeID} "${UNLOG_PART}${ID}" + + !undef ID + + !verbose pop +!macroend + +!endif + +!verbose pop + ;_____________________________ HEADER FILE END ____________________________ + diff --git a/packaging/win32/macros/AdvUninstLog.txt b/packaging/win32/macros/AdvUninstLog.txt new file mode 100644 index 0000000..74cd509 --- /dev/null +++ b/packaging/win32/macros/AdvUninstLog.txt @@ -0,0 +1,121 @@ +Overview + +Advanced Uninstall Log for NSIS was born in the need to cover a specific gap. +It's been discussed fairly enough that the File /r command is very useful +in cases when developers want to add a huge amount of sub directories and +files, nevertheless it has the disadvantage that such an installation should +be uninstalled with RmDir /r which is risky and removes also data that has +been added/created later within the installation folder. + + + + +About Advanced Uninstall Log. + +Advanced Uninstall Log is a macro system provided in a NSIS header that +is able to monitor an installation and build an uninstall log file which +is used by the uninstaller to uninstall files/directories that have been +added within specific installation blocks. + +This means that files which have been installed outside these blocks, +or added later either by the user or application's activities, ignored +by the uninstaller. + +Moreover files that might exist into the target directory prior the current +installation, ignored as well. + +Advanced Uninstall Log creates an uninstall log that removes only files that +have been installed and optionally interacts with users for every other file +and/or directory has found in installation folder and requires permission to +remove these files/directories. + +It is enhanced as well to support updates, e.g. if the installer later would +update the installation by adding new data, the uninstaller would remove the +new data that has been added by the installer, without bothering users about. + + + + +Features + +If target installation folder exists and contains files and/or directories +they all preserved from being uninstalled. + +Uninstaller removes data that has been added within specific installation +blocks, preserving all other data that has been created/added outside of +these installation blocks. See included examples for details. + +Supports unlimited updates/reinstallations. + +Supports two uninstaller modes. Interactive mode requires confirmation +to remove every other file except those files that have been installed. +Unattended mode leaves intact every other file without bothering users. + +In case when uninstall log (uninstall.dat) has been removed manually instead +of execute uninstaller, if users attempt to run the installer later, a warning +issued that they should select a new output folder. + +Implements only the included with NSIS release headers FileFunc and TextFunc. +There is no need for external plugins and headers, adds a very small overhead. + + + + +Restrictions + +If uninstall log (uninstall.dat) is missing uninstaller won't execute at all. + +Due to file create - write procedure that is required in order to add/update +the uninstall log (uninstall.dat), restricted users on NT based systems won't +be able to execute the installer. + + + + +Disadvantage + +Since the header does not implement anything else than the common NSIS release, +a delay occurs while builds and reads the uninstall log because it needs to +throw the list several times. Talking for common cases, most likely the delay +won't be noticeable, however, in cases where the target directory isn't empty +and contains a large amount of data which will be excluded from uninstall log, +or added large amount of data after the installation which will be excluded also, +the delay should be noticeable. + + + + +Credits + +A very big thanks goes to kichik. +When my idea of the Advanced Uninstall Log became an NSIS header, it was +indeed an amateur's attempt to write a flexible and errors free NSIS header. +Kichik dropped me a dozen of suggestions helping me to achieve my plan. +However, his main suggestion to eliminate the mentioned above disadvantage, +still remains untouched by me. + + + + +License + +This header file is provided 'as-is', without any express or implied warranty. +In no event will the author be held liable for any damages arising from the use +of this header file. + +Permission is granted to anyone to use this header file for any purpose, +including commercial applications, and to alter it and redistribute it freely, +subject to the following restrictions: + + 1. The origin of this header file must not be misrepresented; + you must not claim that you wrote the original header file. + If you use this header file in a product, an acknowledgment in + the product documentation would be appreciated but is not required. + + 2. Altered versions must be plainly marked as such, and must not be + misrepresented as being the original header file. + + 3. This notice may not be removed or altered from any distribution. + + +eof
\ No newline at end of file diff --git a/packaging/win32/macros/RequireLatestNSIS.nsh b/packaging/win32/macros/RequireLatestNSIS.nsh new file mode 100644 index 0000000..7d6308e --- /dev/null +++ b/packaging/win32/macros/RequireLatestNSIS.nsh @@ -0,0 +1,4 @@ +!searchparse ${NSIS_VERSION} "v" V +!if ${V} < 3.0 + !error "You only have NSIS ${V}, but NSIS 3.0 or later is required to support Unicode and Windows 10. Please upgrade to NSIS 3.0 or later and try again." +!endif diff --git a/packaging/win32/macros/SHMessageBoxCheck.nsh b/packaging/win32/macros/SHMessageBoxCheck.nsh new file mode 100644 index 0000000..502923b --- /dev/null +++ b/packaging/win32/macros/SHMessageBoxCheck.nsh @@ -0,0 +1,94 @@ +# SHMessageBoxCheck
+# Works like MessageBox but includes a checkbox that gives the user the option not to show the message box again.
+# In that case the return value (first value on the stack) is always set to the last user choice
+#
+# See
+# http://nsis.sourceforge.net/SHMessageBoxCheck (documentation)
+# https://msdn.microsoft.com/library/windows/desktop/bb773836.aspx (implementation details)
+#
+
+# types to indicate the buttons displayed in the message box
+!define MB_OK 0x00000000
+!define MB_OKCANCEL 0x00000001
+!define MB_ABORTRETRYIGNORE 0x00000002 # not officially supported, use at your own risk!
+!define MB_YESNOCANCEL 0x00000003 # not officially supported, use at your own risk!
+!define MB_YESNO 0x00000004
+!define MB_RETRYCANCEL 0x00000005 # not officially supported, use at your own risk!
+!define MB_CANCELTRYCONTINUE 0x00000006 # not officially supported, use at your own risk!
+!define MB_HELP 0x00004000 # not officially supported, use at your own risk!
+
+# types to display an icon in the message box
+!define MB_ICONHAND 0x00000010
+!define MB_ICONQUESTION 0x00000020 # MS bug: Same as MB_ICONEXCLAMATION
+!define MB_ICONEXCLAMATION 0x00000030
+!define MB_ICONINFORMATION 0x00000040
+
+
+# return values
+!define IDOK 1
+!define IDCANCEL 2
+!define IDABORT 3
+!define IDRETRY 4
+!define IDIGNORE 5
+!define IDYES 6
+!define IDNO 7
+!define IDCONTINUE 11
+!define IDTRYAGAIN 10
+
+
+
+# the user's previous choice (i.e. the button clicked in the message box)
+Var _lastReturnValue
+
+# The value that the call to SHMessageBoxCheck should return when the user chose not to display the message box again
+!define _DEFAULT 9999
+
+# Windows XP does not expose the function name, so we have to specify the function by ordinal value
+!ifdef NSIS_UNICODE
+ !define _SHMessageBoxCheck_Ordinal 191
+!else
+ !define _SHMessageBoxCheck_Ordinal 185
+!endif
+
+
+
+!macro SHMessageBoxCheckInit _UNIQUE_STRING
+ # SHMessageBoxCheck stores the user's choice not to display the message box again in the registry, see
+ # HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DontShowMeThisDialogAgain
+ !ifdef _PSZ_REG_VAL
+ !error "Only call SHMessageBoxCheckInit once and make sure to call SHMessageBoxCheckCleanup before using it again"
+ !else
+ # the unique string used to identify this message (and name of the registry value used to store the checkbox status)
+ !define _PSZ_REG_VAL ${_UNIQUE_STRING}
+ !endif
+
+ # make sure the registry value is not yet set (for whatever reason)
+ ${SHMessageBoxCheckCleanup}
+!macroend
+!define SHMessageBoxCheckInit "!insertmacro SHMessageBoxCheckInit"
+
+
+!macro SHMessageBoxCheckCleanup
+ # delete the registry key that is used to store the checkbox status so we can start fresh next time
+ DeleteRegValue HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DontShowMeThisDialogAgain" "${_PSZ_REG_VAL}"
+!macroend
+!define SHMessageBoxCheckCleanup "!insertmacro SHMessageBoxCheckCleanup"
+
+
+!macro SHMessageBoxCheck _CAPTION _TEXT _TYPE
+ # this would be the simple way (by name)
+ # System::Call "shlwapi::SHMessageBoxCheck(p $HWNDPARENT, t '${_TEXT}', t '${_CAPTION}', i ${_TYPE}, i ${_DEFAULT}, t '${_PSZ_REG_VAL}') i .r0"
+
+ # for backwards-compatibility we get the process address by specifying the function's ordinal value
+ System::Call "kernel32::GetModuleHandle(t 'shlwapi.dll') p .s"
+ System::Call "kernel32::GetProcAddress(p s, i ${_SHMessageBoxCheck_Ordinal}) p .r0"
+ System::Call "::$0(p $HWNDPARENT, t '${_TEXT}', t '${_CAPTION}', i ${_TYPE}, i ${_DEFAULT}, t '${_PSZ_REG_VAL}') i .r0"
+
+ # save the user's choice (unless the default value was returned - then don't update and return the saved choice)
+ StrCmp $0 ${_DEFAULT} +2 0
+ StrCpy $_lastReturnValue $0
+
+ # push the return value to the stack
+ Push $_lastReturnValue
+!macroend
+!define SHMessageBoxCheck "!insertmacro SHMessageBoxCheck"
\ No newline at end of file diff --git a/packaging/win32/macros/ifexist.nsh b/packaging/win32/macros/ifexist.nsh new file mode 100644 index 0000000..5a0ea62 --- /dev/null +++ b/packaging/win32/macros/ifexist.nsh @@ -0,0 +1,36 @@ +; See http://nsis.sourceforge.net/Check_if_a_file_exists_at_compile_time for documentation +!macro !ifexist _FILE_NAME + !tempfile _TEMPFILE + !system `if exist "${_FILE_NAME}" echo !define _FILE_EXISTS > "${_TEMPFILE}"` + !include `${_TEMPFILE}` + !delfile `${_TEMPFILE}` + !undef _TEMPFILE + !ifdef _FILE_EXISTS + !undef _FILE_EXISTS +!macroend +!define !ifexist "!insertmacro !ifexist" +!macro !ifnexist _FILE_NAME + !tempfile _TEMPFILE + !system `if not exist "${_FILE_NAME}" echo !define _FILE_EXISTS > "${_TEMPFILE}"` + !include `${_TEMPFILE}` + !delfile `${_TEMPFILE}` + !undef _TEMPFILE + !ifdef _FILE_EXISTS + !undef _FILE_EXISTS +!macroend +!define !ifnexist "!insertmacro !ifnexist" + +!macro !defineifexist _FILE_NAME _VAR_NAME _VAR_VALUE + !tempfile _TEMPFILE + !ifdef NSIS_WIN32_MAKENSIS + ; Windows - cmd.exe + !system 'if exist "${_FILE_NAME}" echo !define ${_VAR_NAME} ${_VAR_VALUE} > "${_TEMPFILE}"' + !else + ; Posix - sh + !system 'if [ -e "${_FILE_NAME}" ]; then echo "!define ${_VAR_NAME} ${_VAR_VALUE}" > "${_TEMPFILE}"; fi' + !endif + !include '${_TEMPFILE}' + !delfile '${_TEMPFILE}' + !undef _TEMPFILE +!macroend +!define !defineifexist "!insertmacro !defineifexist" diff --git a/packaging/win32/plugins/md5dll.dll b/packaging/win32/plugins/md5dll.dll Binary files differnew file mode 100755 index 0000000..bde153f --- /dev/null +++ b/packaging/win32/plugins/md5dll.dll diff --git a/packaging/win32/plugins/md5dll.txt b/packaging/win32/plugins/md5dll.txt new file mode 100644 index 0000000..a8d3572 --- /dev/null +++ b/packaging/win32/plugins/md5dll.txt @@ -0,0 +1,68 @@ +Calculates the md5sum of a file or string. +Has been tested to work with NSIS 2.0+ + + +Derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm + +[Md5Dll] +Matthew "IGx89" Lieder + -Original plugin Author + +Sunjammer (12th May 2002) + -Original usage notes and example script + +[Md5Dll.0.1] +KJD (2004) + -Modified to reduce size and use exdll.h + (reduced to about 6KB uncompressed, by removing CRTL dependency) + +[Md5dll.0.2] +Davy Durham (2004) + -MD5.cpp fix (correct for loop used to replace memset, exceeded bounds) + +[Md5dll.0.3] +Shengalts Aleksander aka Instructor (2005) + -New command: "GetMD5Random" + -Changed names: "GetFileMD5" -> "GetMD5File", "GetMD5" -> "GetMD5String" + -Fixed: string length error + +[Md5dll.0.4] +KJD (2005) + -Added dual name to exports for backwards compatibility + + +-------------------------------- + +Usage: + +Push $1 ;string +CallInstDll "md5dll" GetMD5String +Pop $1 ;md5 of string + +-or- + +Push $1 ;filename +CallInstDll "md5dll" GetMD5File +Pop $1 ;md5 of file + +-------------------------------- + +Example usage in recent NSIS versions + +OutFile "md5test.exe" +Section "" + #generate MD5sum of a string + md5dll::GetMD5String "md5me" + Pop $0 + DetailPrint "md5: [$0]" + + # generate MD5sum of a file + md5dll::GetMD5File "${NSISDIR}\makensis.exe" + Pop $0 + DetailPrint "md5: [$0]" + + #generate random MD5sum + md5dll::GetMD5Random + Pop $0 + DetailPrint "md5: [$0]" +SectionEnd diff --git a/packaging/win32/portable/App/AppInfo/Launcher/InkscapePortable.ini b/packaging/win32/portable/App/AppInfo/Launcher/InkscapePortable.ini new file mode 100644 index 0000000..24856a9 --- /dev/null +++ b/packaging/win32/portable/App/AppInfo/Launcher/InkscapePortable.ini @@ -0,0 +1,72 @@ +[Launch] +ProgramExecutable=Inkscape\inkscape.exe +DirectoryMoveOK=yes +SupportsUNC=yes + +[Activate] +Ghostscript=find +XML=true + +[Environment] +INKSCAPE_PROFILE_DIR=%PAL:DataDir%\settings +HOME=%PAL:DataDir%\settings +APPDATA=%PAL:DataDir%\settings +PYTHONHOME=%PAL:AppDir%\Inkscape\python +PATH=%PATH% + +[FilesMove] +recently-used.xbel=%LOCALAPPDATA% + +[Language] +Base=%PortableApps.comLocaleglibc% +CheckIfExists=%PAL:AppDir%\Inkscape\share\locale\%PAL:LanguageCustom%\*.* +DefaultIfNotExists=en_US + +[LanguageFile] +Type=XML attribute +File=%PAL:DataDir%\settings\preferences.xml +XPath=/inkscape/group[@id="ui"] +Attribute=language + +[FileWrite1] +Type=XML attribute +File=%PAL:DataDir%\settings\preferences.xml +XPath=/inkscape/group[@id="ui"] +Attribute=language +Value=%PAL:LanguageCustom% + +[FileWrite2] +Type=Replace +File=%PAL:DataDir%\settings\preferences.xml +Find=%PAL:LastDrive%%PAL:LastPackagePartialDir%\ +Replace=%PAL:Drive%%PAL:PackagePartialDir%\ + +[FileWrite3] +Type=Replace +File=%PAL:DataDir%\settings\preferences.xml +Find=%PAL:LastPortableAppsBaseDir%\ +Replace=%PAL:PortableAppsBaseDir%\ + +[FileWrite4] +Type=Replace +File=%PAL:DataDir%\settings\preferences.xml +Find=%PAL:LastDrive%\ +Replace=%PAL:Drive%\ + +[FileWrite5] +Type=Replace +File=%PAL:DataDir%\settings\.recently-used.xbel +Find=file:///%PAL:LastDrive%%PAL:LastPackagePartialDir:ForwardSlash%/ +Replace=file:///%PAL:Drive%%PAL:PackagePartialDir:ForwardSlash%/ + +[FileWrite6] +Type=Replace +File=%PAL:DataDir%\settings\.recently-used.xbel +Find=file:///%PAL:LastPortableAppsBaseDir:ForwardSlash%/ +Replace=file:///%PAL:PortableAppsBaseDir:ForwardSlash%/ + +[FileWrite7] +Type=Replace +File=%PAL:DataDir%\settings\.recently-used.xbel +Find=file:///%PAL:LastDrive%/ +Replace=file:///%PAL:Drive%/ diff --git a/packaging/win32/portable/App/AppInfo/Launcher/splash.jpg b/packaging/win32/portable/App/AppInfo/Launcher/splash.jpg Binary files differnew file mode 100644 index 0000000..2cea130 --- /dev/null +++ b/packaging/win32/portable/App/AppInfo/Launcher/splash.jpg diff --git a/packaging/win32/portable/App/AppInfo/appicon.ico b/packaging/win32/portable/App/AppInfo/appicon.ico Binary files differnew file mode 100644 index 0000000..7288d49 --- /dev/null +++ b/packaging/win32/portable/App/AppInfo/appicon.ico diff --git a/packaging/win32/portable/App/AppInfo/appicon_16.png b/packaging/win32/portable/App/AppInfo/appicon_16.png Binary files differnew file mode 100644 index 0000000..295aeb1 --- /dev/null +++ b/packaging/win32/portable/App/AppInfo/appicon_16.png diff --git a/packaging/win32/portable/App/AppInfo/appicon_32.png b/packaging/win32/portable/App/AppInfo/appicon_32.png Binary files differnew file mode 100644 index 0000000..1465ac3 --- /dev/null +++ b/packaging/win32/portable/App/AppInfo/appicon_32.png diff --git a/packaging/win32/portable/App/AppInfo/appinfo.ini b/packaging/win32/portable/App/AppInfo/appinfo.ini new file mode 100644 index 0000000..544a665 --- /dev/null +++ b/packaging/win32/portable/App/AppInfo/appinfo.ini @@ -0,0 +1,26 @@ +[Format] +Type=PortableApps.comFormat +Version=0.91 + +[Details] +Name=Inkscape Portable +AppID=InkscapePortable +Publisher=Inkscape.org & PortableApps.com +Homepage=Inkscape.org +Category=Graphics & Pictures +Description=Inkscape is a powerful vector graphics editor. +Language=Multilingual + +[License] +Shareable=true +OpenSource=true +Freeware=true +CommercialUse=true + +[Version] +PackageVersion=0.47 +DisplayVersion=0.47 + +[Control] +Icons=1 +Start=InkscapePortable.exe diff --git a/packaging/win32/portable/App/AppInfo/installer.ini b/packaging/win32/portable/App/AppInfo/installer.ini new file mode 100644 index 0000000..ffa60d1 --- /dev/null +++ b/packaging/win32/portable/App/AppInfo/installer.ini @@ -0,0 +1,15 @@ +[OptionalComponents] +OptionalComponents=true +OptionalDirectory1=App\Inkscape\locale +OptionalDirectory2=App\Inkscape\share\locale +OptionalFile1=App\Inkscape\share\clipart\draw-freely.*.svg +OptionalFile2=App\Inkscape\share\screens\*.*.svg +OptionalFile3=App\Inkscape\share\templates\default.*.svg +OptionalFile4=App\Inkscape\share\tutorials\potrace-*.svg +OptionalFile5=App\Inkscape\share\tutorials\*.*.svg + +[DirectoriesToPreserve] +PreserveDirectory1=App\Inkscape\data +PreserveDirectory2=App\Inkscape\modules +PreserveDirectory3=App\Inkscape\plugins +PreserveDirectory4=App\Inkscape\share\extensions diff --git a/packaging/win32/portable/App/readme.txt b/packaging/win32/portable/App/readme.txt new file mode 100644 index 0000000..b67db50 --- /dev/null +++ b/packaging/win32/portable/App/readme.txt @@ -0,0 +1 @@ +The files in this directory are necessary for Inkscape Portable to function. There is normally no need to directly access or alter any of the files within these directories. diff --git a/packaging/win32/portable/help.html b/packaging/win32/portable/help.html new file mode 100644 index 0000000..1391c12 --- /dev/null +++ b/packaging/win32/portable/help.html @@ -0,0 +1,178 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en-US"><head><title>Inkscape Portable Help</title>
+ <link rel="alternate" type="application/rss+xml" title="PortableApps.com" href="http://portableapps.com/feeds/general">
+ <link rel="SHORTCUT ICON" href="Other/Help/images/favicon.ico">
+<style>body {
+ font-family: Verdana,Arial,Helvetica,sans-serif;
+ font-size: 76%;
+ color: #000;
+ margin: 20px;
+ background: #E6E8EA;
+ text-align: center;
+}
+a
+{
+ color: #B31616;
+ font-weight: bold;
+}
+a:link {
+ }
+a:visited {
+ }
+a:active {
+ }
+a:hover {
+ color: red;
+ }
+h1, h2, h3, h4, h5, h6 {
+ font-family: Arial, sans-serif;
+ font-weight: normal;
+}
+h1 {
+ color: #B31616;
+ font-weight: bold;
+ letter-spacing: -2px;
+ font-size: 2.2em;
+ border-bottom: 1px solid silver;
+ padding-bottom: 5px;
+ }
+h2 {
+ font-size: 1.5em;
+ border-bottom: 1px solid silver;
+ padding-bottom: 3px;
+ clear: both;
+ }
+h3 {
+ font-size: 1.2em;
+ }
+h4 {
+ font-size: 1.1em;
+ }
+h5 {
+ font-size: 1.0em;
+ }
+h6 {
+ font-size: 0.8em;
+ }
+img {
+ border: 0;
+ }
+ol, ul, li {
+ font-size: 1.0em;
+ }
+p, table, tr, td, th {
+ font-size: 1.0em;
+ }
+pre {
+ font-family: Courier New,Courier,monospace;
+ font-size: 1.0em;
+ }
+strong, b {
+ font-weight: bold;
+ }
+table, tr, td {
+ font-size: 1.0em;
+ border-collapse: collapse;
+}
+td, th {
+ border: 1px solid #aaaaaa;
+ border-collapse: collapse;
+ padding: 3px;
+}
+th {
+ background: #3667A8;
+ color: white;
+}
+ol ol {
+ list-style-type: lower-alpha;
+}
+.content {
+ text-align: left;
+ margin-left: auto;
+ margin-right: auto;
+ width: 780px;
+ background-color: #FFFFFF;
+ border-left: 1px solid Black;
+ border-right: 1px solid Black;
+ padding: 12px 30px;
+ line-height: 150%;
+}
+.logo {
+ background: #ffffff url("Other/Help/images/help_background_header.png") repeat-x;
+ width: 840px;
+ margin-top: 20px;
+ margin-left: auto;
+ margin-right: auto;
+ text-align: left;
+ border-right: 1px solid black;
+ border-left: 1px solid black;
+}
+.footer {
+ background: #ffffff url("Other/Help/images/help_background_footer.png") repeat-x;
+ width: 840px;
+ height: 16px;
+ margin-left: auto;
+ margin-right: auto;
+ text-align: left;
+ border-right: 1px solid black;
+ border-left: 1px solid black;
+}
+.logo img {
+ padding-left: 0px;
+ border: none;
+ position: relative;
+ top: -4px;
+}
+* html .content {
+ width: 760px;
+}
+* html .logo, * html .footer {
+ width: 820px;
+}
+.content h1 {
+ margin: 0px;
+}
+h1.hastagline {
+ border: 0;
+}
+h2.tagline {
+ color: #747673;
+ clear: none;
+ margin-top: 0em;
+}
+/*printer styles*/
+@media print{
+body, .content {margin: 0; padding: 0;}
+.navigation, .locator, .footer a, .message, .footer-links {display:none;}
+.footer, .content, .header {border: none;}
+a {text-decoration: none; font-weight: normal; color: black;}
+}</style>
+</head>
+<body>
+<div class="logo"><a href="http://portableapps.com/"><img src="Other/Help/images/help_logo_top.png" width="229" height="47" alt="PortableApps.com - Your Digital Life, Anywhere"></a></div>
+<div class="content">
+<h1 class="hastagline">Inkscape Portable Help</h1>
+<h2 class="tagline">amazing vector graphics - everywhere!</h2>
+<p>Inkscape Portable is the popular Inkscape vector graphics editor packaged with a PortableApps.com launcher as a <a href="http://portableapps.com/about/what_is_a_portable_app">portable app</a>, to help you design on your iPod, USB flash drive, portable hard drive, etc. It has all the same great features as Inkscape including editing vector graphics, designing things and more. Plus, it leaves no personal information behind on the machine you run it on, so you can take it with you wherever you go. <a href="http://inkscape.org/">Learn more about Inkscape...</a></p>
+
+<p><a href="http://inkscape.org/donate.php"><img src="Other/Help/images/donation_button.png" width="110" height="23" border="0" align="top" alt="Make a Donation"></a> - Support Inkscape Development</p>
+<p><a href="http://portableapps.com/donate"><img src="Other/Help/images/donation_button.png" width="110" height="23" border="0" align="top" alt="Make a Donation"></a> - Support PortableApps.com's Hosting and Development</p>
+
+<p><a href="http://inkscape.org/">Go to the Inkscape Portable Homepage >></a></p>
+
+<p><a href="http://PortableApps.com/">Get more portable apps at PortableApps.com</a></p>
+
+<p>This software is OSI Certified Open Source Software. OSI Certified is a certification mark of the Open Source Initiative.</p>
+
+<h2>Portable App Issues</h2>
+<ul>
+ <li><a href="http://portableapps.com/support/portable_app#downloading">Downloading a Portable App</a></li>
+ <li><a href="http://portableapps.com/support/portable_app#installing">Installing a Portable App</a></li>
+ <li><a href="http://portableapps.com/support/portable_app#using">Using a Portable App</a></li>
+ <li><a href="http://portableapps.com/support/portable_app#upgrading">Upgrading a Portable App</a></li>
+</ul>
+<p>You can read about advanced configuration options for the Inkscape Portable launcher in its <a href="Other\Source\Readme.txt">readme file</a>.
+</div>
+<div class="footer"></div>
+</body>
+</html>
diff --git a/packaging/win32/portable/readme.packaging.txt b/packaging/win32/portable/readme.packaging.txt new file mode 100644 index 0000000..1ca4e96 --- /dev/null +++ b/packaging/win32/portable/readme.packaging.txt @@ -0,0 +1,30 @@ +REQUIREMENTS +============ +· Inkscape compiled (see http://wiki.inkscape.org/wiki/index.php/Win32Port) +· NSIS Portable + http://portableapps.com/apps/development/nsis_portable +· PortableApps.com AppCompactor + http://portableapps.com/apps/utilities/portableapps.com_appcompactor +· PortableApps.com Installer + http://portableapps.com/apps/development/portableapps.com_installer +· PortableApps.com Launcher + http://portableapps.com/apps/development/portableapps.com_launcher + +INSTRUCTIONS +============ +An automated version is planned for later, but currently you'll just have to follow these instructions. Oh, and it won't do the last half dozen steps automatically. + +(0. Compile Inkscape) +1. Copy everything from the "inkscape" build directory, EXCEPT for inkscape.dbg and gdb.exe, into ./App/Inkscape +2. Update the version number in the "Version" section of ./App/AppInfo/appinfo.ini +4. Run the PortableApps.com AppCompactor on ./App/Inkscape +3. Run the PortableApps.com Launcher on this directory +5. Run the PortableApps.com Installer on this directory + +6. InkscapePortable_X.XX.paf.exe will now be in packaging/win32, ready for release +7. Test it (the installer and the installed) +8. Send it to John T. Haller of PortableApps.com for digital signature +9. Probably wait a few days... +10. Receive it back, signed +11. Test it again, just to make sure +12. Release it! diff --git a/packaging/win32/welcomefinish.bmp b/packaging/win32/welcomefinish.bmp Binary files differnew file mode 100644 index 0000000..65a8c44 --- /dev/null +++ b/packaging/win32/welcomefinish.bmp diff --git a/packaging/win32/welcomefinish.svg b/packaging/win32/welcomefinish.svg new file mode 100644 index 0000000..64f409c --- /dev/null +++ b/packaging/win32/welcomefinish.svg @@ -0,0 +1,3510 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="164" + height="314" + id="svg5029" + version="1.1" + inkscape:version="0.46+devel r21627" + sodipodi:docname="welcomefinish.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="C:\Users\user\Documents\Inkscape\svn\packaging\win32\welcomefinish.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5031"> + <linearGradient + id="linearGradient7468"> + <stop + id="stop7470" + offset="0" + style="stop-color:#3399dd;stop-opacity:1;" /> + <stop + style="stop-color:#3399dd;stop-opacity:0.49803922;" + offset="0.55000001" + id="stop7472" /> + <stop + id="stop7474" + offset="1" + style="stop-color:#3399dd;stop-opacity:0;" /> + </linearGradient> + <filter + id="filter10997-7" + inkscape:collect="always" + color-interpolation-filters="sRGB"> + <feGaussianBlur + id="feGaussianBlur10999-0" + stdDeviation="2.7696726" + inkscape:collect="always" /> + </filter> + <linearGradient + id="linearGradient10981-3" + inkscape:collect="always"> + <stop + id="stop10983-2" + offset="0" + style="stop-color:#729fcf;stop-opacity:1;" /> + <stop + id="stop10985-3" + offset="1" + style="stop-color:#729fcf;stop-opacity:0;" /> + </linearGradient> + <filter + id="filter6031" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur6033" + stdDeviation="3.4903482" + inkscape:collect="always" /> + </filter> + <filter + id="filter6017" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur6019" + stdDeviation="0.80546496" + inkscape:collect="always" /> + </filter> + <filter + height="1.2446715" + y="-0.12233575" + width="1.165018" + x="-0.082508984" + id="filter5983" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur5985" + stdDeviation="3.6868363" + inkscape:collect="always" /> + </filter> + <filter + id="filter5845" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur5847" + stdDeviation="1.2409356" + inkscape:collect="always" /> + </filter> + <filter + id="filter9298" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur9300" + stdDeviation="0.32610678" + inkscape:collect="always" /> + </filter> + <clipPath + id="clipPath9086" + clipPathUnits="userSpaceOnUse"> + <use + transform="translate(1.0095461e-6,0)" + height="300" + width="400" + y="0" + x="0" + style="opacity:1;fill:#ffffff;fill-opacity:1" + class="low-specularity" + xlink:href="#outline1" + id="use9088" /> + </clipPath> + <filter + height="1.3311402" + y="-0.1655701" + width="1.1523586" + x="-0.076179282" + id="filter9068" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur9070" + stdDeviation="0.66458488" + inkscape:collect="always" /> + </filter> + <filter + height="1.9457178" + y="-0.47285891" + width="1.1397255" + x="-0.069862769" + id="filter8980" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur8982" + stdDeviation="0.82052366" + inkscape:collect="always" /> + </filter> + <filter + height="1.556464" + y="-0.27823201" + width="1.1708827" + x="-0.085441325" + id="filter8906" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur8908" + stdDeviation="0.56515877" + inkscape:collect="always" /> + </filter> + <filter + height="1.3508246" + y="-0.17541229" + width="1.1485243" + x="-0.074262139" + id="filter8764" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur8766" + stdDeviation="2.1195652" + inkscape:collect="always" /> + </filter> + <filter + height="1.2284413" + y="-0.11422065" + width="1.1561583" + x="-0.078079153" + id="filter8732" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur8734" + stdDeviation="1.9579068" + inkscape:collect="always" /> + </filter> + <filter + id="filter8490" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur8492" + stdDeviation="2.4163949" + inkscape:collect="always" /> + </filter> + <linearGradient + id="WhiteTransparent" + gradientUnits="userSpaceOnUse"> + <stop + style="stop-color:white;stop-opacity:1" + offset="0" + id="stop7606" /> + <stop + style="stop-color:white;stop-opacity:0" + offset="1" + id="stop7608" /> + </linearGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipoutline1"> + <path + id="outline1" + d="M 54.1,12.5 L 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 C 36.6,77.7 18.5,81.3 22.2,85 C 25.8,88.7 43.9,92.1 47.5,95.7 C 51.1,99.4 40.2,103.3 43.8,107 C 47.3,110.7 55.7,107.2 57.2,115.6 C 58.3,121.8 72.6,118.7 79,113.4 C 83,110 72.1,110 75.7,106.3 C 84.7,97.2 92.7,102.2 96,93.8 C 97.8,89.3 82.4,86.1 86.5,83.2 C 96.3,76.3 132.3,72.8 115.7,56.2 L 73,12.5 C 67.7,7.5 59,7.5 54.1,12.5 z M 44.2,77.2 C 45.1,77.2 75,81.2 63.5,84.3 C 59.1,85.5 38.9,77.2 44.2,77.2 z M 101.4,93.8 C 101.4,95.9 117.7,97.1 116.8,93.3 C 115.5,86.9 103.2,87.4 101.4,93.8 z M 31.9,104.9 C 35.6,108.1 41.2,104.2 43,99.7 C 39.4,95 26.1,100 31.9,104.9 z M 99.4,98.2 C 94.8,102.4 100.2,106.8 104.7,103.9 C 105.9,103.1 104.6,99.2 99.4,98.2 z " /> + </clipPath> + <linearGradient + id="linearGradient8568" + inkscape:collect="always"> + <stop + id="stop8570" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop8572" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient8738" + inkscape:collect="always"> + <stop + id="stop8740" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop8742" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient8866" + inkscape:collect="always"> + <stop + id="stop8868" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop8870" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient8916" + inkscape:collect="always"> + <stop + id="stop8918" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop8920" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient8998" + inkscape:collect="always"> + <stop + id="stop9000" + offset="0" + style="stop-color:#ffffff;stop-opacity:0.33004926" /> + <stop + id="stop9002" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient9040" + inkscape:collect="always"> + <stop + id="stop9042" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop9044" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient9286" + inkscape:collect="always"> + <stop + id="stop9288" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop9290" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5785" + gradientUnits="userSpaceOnUse"> + <stop + style="stop-color:#c0cdf9;stop-opacity:1" + offset="0" + id="stop5787" /> + <stop + style="stop-color:#07092d;stop-opacity:0.28804347" + offset="1" + id="stop5789" /> + </linearGradient> + <linearGradient + id="linearGradient5793" + inkscape:collect="always"> + <stop + id="stop5795" + offset="0" + style="stop-color:#eeeeec;stop-opacity:1;" /> + <stop + id="stop5797" + offset="1" + style="stop-color:#eeeeec;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5805" + inkscape:collect="always"> + <stop + id="stop5807" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5809" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5899" + inkscape:collect="always"> + <stop + id="stop5901" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5903" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5785" + id="linearGradient6846" + gradientUnits="userSpaceOnUse" + x1="82.118591" + y1="20" + x2="60" + y2="40" /> + <linearGradient + inkscape:collect="always" + xlink:href="#WhiteTransparent" + id="linearGradient6848" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.009184,0,0,1.009184,-0.3890738,-0.3831933)" + x1="33" + y1="35" + x2="58" + y2="60" /> + <linearGradient + inkscape:collect="always" + xlink:href="#WhiteTransparent" + id="linearGradient6850" + gradientUnits="userSpaceOnUse" + x1="60" + y1="20" + x2="90" + y2="50" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8568" + id="radialGradient6852" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5700516,0,0,1.0509301,-75.500107,-22.095908)" + cx="116.31038" + cy="250.89737" + fx="116.31038" + fy="250.89737" + r="30.599579" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8568" + id="radialGradient6854" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.0032532,0,0,1.340898,-132.8752,-95.166065)" + cx="132.44434" + cy="251.99396" + fx="132.44434" + fy="251.99396" + r="30.599579" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8738" + id="radialGradient6856" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.4233577,0,97.164234)" + cx="210.25" + cy="168.5" + fx="210.25" + fy="168.5" + r="34.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8738" + id="radialGradient6858" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.4233577,0,97.164234)" + cx="217.5" + cy="182.08189" + fx="217.5" + fy="182.08189" + r="34.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8866" + id="linearGradient6860" + gradientUnits="userSpaceOnUse" + x1="231.625" + y1="195.1875" + x2="231.75" + y2="201.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8866" + id="linearGradient6862" + gradientUnits="userSpaceOnUse" + x1="231.37646" + y1="195.62132" + x2="231.37646" + y2="200.07138" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8916" + id="radialGradient6864" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.1477455,0,174.56924)" + cx="228.21875" + cy="204.83229" + fx="228.21875" + fy="204.83229" + r="14.09375" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8866" + id="linearGradient6866" + gradientUnits="userSpaceOnUse" + x1="231.625" + y1="195.1875" + x2="231.75" + y2="201.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8866" + id="linearGradient6868" + gradientUnits="userSpaceOnUse" + x1="231.37646" + y1="195.62132" + x2="231.37646" + y2="200.07138" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8916" + id="radialGradient6870" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.1477455,0,174.56924)" + cx="228.21875" + cy="204.83229" + fx="228.21875" + fy="204.83229" + r="14.09375" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8998" + id="radialGradient6872" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.4070844,0,115.76014)" + cx="89.875" + cy="187.86935" + fx="89.875" + fy="187.86935" + r="22.75" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8866" + id="linearGradient6874" + gradientUnits="userSpaceOnUse" + x1="231.625" + y1="195.1875" + x2="231.75" + y2="201.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8866" + id="linearGradient6876" + gradientUnits="userSpaceOnUse" + x1="231.37646" + y1="195.62132" + x2="231.37646" + y2="200.07138" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9040" + id="radialGradient6878" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1850746,-0.3283582,0.1228557,0.4433973,-45.068314,152.92161)" + cx="90.28125" + cy="230.83626" + fx="90.28125" + fy="230.83626" + r="10.46875" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9286" + id="radialGradient6880" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.7221535,0,0,1.6949765,-49.39526,-14.078057)" + cx="68.39994" + cy="21.225746" + fx="68.39994" + fy="21.225746" + r="54.783397" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5899" + id="linearGradient6882" + gradientUnits="userSpaceOnUse" + x1="95.5" + y1="208.16444" + x2="153.5" + y2="223.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5793" + id="linearGradient6884" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8852575,0,0,0.8852575,5.1772151,9.2293372)" + x1="57.225197" + y1="76.246338" + x2="53.63158" + y2="84.480316" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5805" + id="radialGradient6886" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3515234,0,0,1.7175707,-63.705646,-153.95568)" + cx="181.22731" + cy="214.55121" + fx="181.22731" + fy="214.55121" + r="22.466399" /> + <linearGradient + inkscape:collect="always" + xlink:href="#WhiteTransparent" + id="linearGradient6888" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.4927913,0,0,0.4927913,-6.0003885,-9.7225182)" + x1="73.712105" + y1="180.47572" + x2="82.754066" + y2="187.65974" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient10981-3" + id="linearGradient6890" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-130.16572,-83.352786)" + x1="180.81293" + y1="217.5" + x2="153.70045" + y2="144.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7468" + id="linearGradient7476" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0933333,0,0,5.5087719,0,-4744.8611)" + x1="0" + y1="1023.8622" + x2="150" + y2="1023.8622" /> + <filter + y="-.25" + x="-.25" + height="1.5" + width="1.5" + inkscape:label="Drop shadow" + id="filter6150"> + <feGaussianBlur + result="blur" + stdDeviation="4.000000" + in="SourceAlpha" + id="feGaussianBlur6152" /> + <feColorMatrix + values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.750000 0 " + type="matrix" + result="bluralpha" + id="feColorMatrix6154" /> + <feOffset + result="offsetBlur" + dy="0.000000" + dx="0.000000" + in="bluralpha" + id="feOffset6156" /> + <feMerge + id="feMerge6158"> + <feMergeNode + in="offsetBlur" + id="feMergeNode6160" /> + <feMergeNode + in="SourceGraphic" + id="feMergeNode6162" /> + </feMerge> + </filter> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="426.32166" + x2="367.59763" + y1="414.65439" + x1="169.01874" + id="linearGradient43575" + xlink:href="#linearGradient43577" + inkscape:collect="always" /> + <linearGradient + id="linearGradient43577"> + <stop + id="stop43579" + offset="0" + style="stop-color: rgb(74, 74, 74); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(52, 52, 52); stop-opacity: 1;" + offset="0.49252266" + id="stop43581" /> + <stop + id="stop43583" + offset="1" + style="stop-color: rgb(13, 13, 13); stop-opacity: 1;" /> + </linearGradient> + <radialGradient + r="16.908388" + fy="224.2917" + fx="231.27748" + cy="228.11006" + cx="228.91756" + gradientTransform="matrix(0.749081,3.76897e-8,-1.39764e-8,0.27778,57.0845,155.292)" + gradientUnits="userSpaceOnUse" + id="radialGradient46166-4" + xlink:href="#linearGradient46132-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient46132-8" + inkscape:collect="always"> + <stop + id="stop46134-8" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop46136-2" + offset="1" + style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" /> + </linearGradient> + <radialGradient + r="16.908388" + fy="224.2917" + fx="231.27748" + cy="228.11006" + cx="228.91756" + gradientTransform="matrix(0.749081,3.76897e-8,-1.39764e-8,0.27778,57.0845,155.292)" + gradientUnits="userSpaceOnUse" + id="radialGradient46158-4" + xlink:href="#linearGradient46132-8" + inkscape:collect="always" /> + <radialGradient + r="16.908388" + fy="224.2917" + fx="231.27748" + cy="228.11006" + cx="228.91756" + gradientTransform="matrix(0.749081,3.76897e-8,-1.39764e-8,0.27778,57.0845,155.292)" + gradientUnits="userSpaceOnUse" + id="radialGradient46150-5" + xlink:href="#linearGradient46132-8" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.749081,3.76897e-8,-1.39764e-8,0.27778,57.0845,155.292)" + r="16.908388" + fy="224.2917" + fx="231.27748" + cy="228.11006" + cx="228.91756" + id="radialGradient46138-5" + xlink:href="#linearGradient46132-8" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="426.32166" + x2="367.59763" + y1="414.65439" + x1="169.01874" + id="linearGradient43575-1" + xlink:href="#linearGradient43577-7" + inkscape:collect="always" /> + <linearGradient + id="linearGradient43577-7"> + <stop + id="stop43579-1" + offset="0" + style="stop-color: rgb(74, 74, 74); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(52, 52, 52); stop-opacity: 1;" + offset="0.49252266" + id="stop43581-1" /> + <stop + id="stop43583-5" + offset="1" + style="stop-color: rgb(13, 13, 13); stop-opacity: 1;" /> + </linearGradient> + <radialGradient + r="30.2995" + fy="218.6684" + fx="378.43149" + cy="218.6684" + cx="378.43149" + gradientTransform="matrix(-0.310746,0.103469,0.272728,0.823893,366.2369,375.98913)" + gradientUnits="userSpaceOnUse" + id="radialGradient2111-2" + xlink:href="#linearGradient5722-7" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5722-7"> + <stop + id="stop5724-6" + offset="0" + style="stop-color: rgb(253, 255, 255); stop-opacity: 1;" /> + <stop + id="stop5726-1" + offset="1" + style="stop-color: rgb(253, 255, 255); stop-opacity: 0;" /> + </linearGradient> + <radialGradient + r="30.2995" + fy="227.84634" + fx="358.07913" + cy="227.84634" + cx="358.07913" + gradientTransform="matrix(-0.316916,0.0826697,0.45265,1.76172,344.6239,147.59323)" + gradientUnits="userSpaceOnUse" + id="radialGradient2156-4" + xlink:href="#linearGradient5722-7" + inkscape:collect="always" /> + <radialGradient + r="31.733185" + fy="260.81589" + fx="380.93777" + cy="260.81589" + cx="380.93777" + spreadMethod="pad" + gradientTransform="matrix(-0.472118,0.199471,0.304188,0.719968,431.9849,379.20733)" + gradientUnits="userSpaceOnUse" + id="radialGradient2159-2" + xlink:href="#linearGradient6156-3" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6156-3"> + <stop + id="stop6158-2" + offset="0" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.233202;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.435897;" + offset="0.35817656" + id="stop6160-2" /> + <stop + id="stop6162-1" + offset="0.81842625" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00392157;" /> + <stop + id="stop6164-6" + offset="1" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00854701;" /> + </linearGradient> + <linearGradient + y2="137.2865" + x2="431.19913" + y1="137.2865" + x1="389.77954" + gradientTransform="matrix(-0.991201,0.132366,0.132366,0.991201,670.0439,320.11353)" + gradientUnits="userSpaceOnUse" + id="linearGradient2169-8" + xlink:href="#linearGradient5793-7-5" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5793-7-5"> + <stop + style="stop-color: rgb(74, 74, 74); stop-opacity: 1;" + offset="0" + id="stop5795-4-7" /> + <stop + id="stop5799-6" + offset="0.63258755" + style="stop-color: rgb(52, 52, 52); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(13, 13, 13); stop-opacity: 1;" + offset="1" + id="stop5797-0-1" /> + </linearGradient> + <linearGradient + y2="88.188133" + x2="632.55231" + y1="88.188133" + x1="620.36615" + gradientTransform="matrix(0.500465,-0.949259,0.94978,0.498524,-121.8401,1070.0363)" + gradientUnits="userSpaceOnUse" + id="linearGradient2173-8" + xlink:href="#linearGradient6246-9" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6246-9"> + <stop + id="stop6248-2" + offset="0" + style="stop-color: rgb(120, 120, 120); stop-opacity: 1;" /> + <stop + id="stop6250-7" + offset="1" + style="stop-color: rgb(168, 168, 168); stop-opacity: 1;" /> + </linearGradient> + <linearGradient + y2="90.777428" + x2="647.82013" + y1="90.777428" + x1="624.02686" + gradientTransform="matrix(0.500465,-0.949259,0.94978,0.498524,-121.8401,1070.0363)" + gradientUnits="userSpaceOnUse" + id="linearGradient2177-9" + xlink:href="#linearGradient6246-9" + inkscape:collect="always" /> + <linearGradient + y2="54.527451" + x2="92.827026" + y1="54.551968" + x1="97.062706" + spreadMethod="reflect" + gradientTransform="matrix(-0.983338,0.431609,0.61154,1.39627,352.9229,422.34153)" + gradientUnits="userSpaceOnUse" + id="linearGradient2182-5" + xlink:href="#linearGradient6300-4" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6300-4"> + <stop + id="stop6302-3" + offset="0" + style="stop-color: rgb(210, 210, 210); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" + offset="0.23958649" + id="stop6304-1" /> + <stop + style="stop-color: rgb(253, 253, 253); stop-opacity: 1;" + offset="0.30854315" + id="stop6306-2" /> + <stop + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" + offset="0.90415138" + id="stop6308-3" /> + <stop + id="stop6310-3" + offset="1" + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" /> + </linearGradient> + <linearGradient + y2="136.30853" + x2="330.35284" + y1="152.81145" + x1="326.05923" + gradientTransform="matrix(-0.983338,0.431609,0.61154,1.39627,524.5279,196.25823)" + gradientUnits="userSpaceOnUse" + id="linearGradient2185-4" + xlink:href="#linearGradient2991-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2991-1"> + <stop + style="stop-color: rgb(210, 210, 210); stop-opacity: 1;" + offset="0" + id="stop2993-1" /> + <stop + id="stop2995-3" + offset="0.36332616" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop2997-8" + offset="0.50209719" + style="stop-color: rgb(253, 253, 253); stop-opacity: 1;" /> + <stop + id="stop2999-7" + offset="0.79857641" + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" + offset="1" + id="stop3001-4" /> + </linearGradient> + <linearGradient + y2="54.436985" + x2="94.342155" + y1="54.095181" + x1="108.67896" + spreadMethod="reflect" + gradientTransform="matrix(-0.983338,0.431609,0.61154,1.39627,352.9229,422.34153)" + gradientUnits="userSpaceOnUse" + id="linearGradient2188-2" + xlink:href="#linearGradient6300-4" + inkscape:collect="always" /> + <linearGradient + y2="237.32291" + x2="530.18103" + y1="238.73236" + x1="510.06793" + spreadMethod="reflect" + gradientTransform="matrix(-0.704879,0.309795,-0.573882,-1.31094,797.2139,704.91427)" + gradientUnits="userSpaceOnUse" + id="linearGradient2191-7" + xlink:href="#linearGradient5710-7" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5710-7"> + <stop + id="stop5712-9" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 0.00854701;" /> + <stop + style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" + offset="0.5" + id="stop4241-3" /> + <stop + id="stop5714-1" + offset="1" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + </linearGradient> + <linearGradient + y2="144.32544" + x2="65.723312" + y1="144.4537" + x1="79.35318" + spreadMethod="reflect" + gradientTransform="matrix(1.37292,-0.601845,0.600724,1.37035,150.0844,470.90223)" + gradientUnits="userSpaceOnUse" + id="linearGradient2194-9" + xlink:href="#linearGradient6326-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6326-8"> + <stop + style="stop-color: rgb(200, 133, 242); stop-opacity: 1;" + offset="0" + id="stop6328-6" /> + <stop + id="stop6330-5" + offset="0.51337713" + style="stop-color: rgb(168, 72, 205); stop-opacity: 1;" /> + <stop + id="stop6332-0" + offset="0.82493299" + style="stop-color: rgb(112, 67, 164); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(106, 52, 170); stop-opacity: 1;" + offset="1" + id="stop6334-2" /> + </linearGradient> + <radialGradient + r="7.3871846" + fy="338.0524" + fx="390.46832" + cy="335.263" + cx="392.62103" + gradientTransform="matrix(1,0,0,1.17258,0,-57.8596)" + gradientUnits="userSpaceOnUse" + id="radialGradient3575-8" + xlink:href="#linearGradient5686-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5686-6" + inkscape:collect="always"> + <stop + id="stop5688-0" + offset="0" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.581028;" /> + <stop + id="stop5690-2" + offset="1" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" /> + </linearGradient> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.17258,0,-57.8596)" + r="7.3871846" + fy="338.0524" + fx="390.46832" + cy="335.263" + cx="392.62103" + id="radialGradient3563-4" + xlink:href="#linearGradient5686-6" + inkscape:collect="always" /> + <radialGradient + r="27.77412" + fy="552.31262" + fx="516.56561" + cy="552.31262" + cx="516.56561" + gradientTransform="matrix(1.03567,0.226084,-0.789983,4.25453,418.524,-1981.96)" + gradientUnits="userSpaceOnUse" + id="radialGradient7344-8" + xlink:href="#linearGradient7346-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient7346-6"> + <stop + id="stop7348-5" + offset="0" + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.735043;" + offset="0.39745969" + id="stop7350-0" /> + <stop + id="stop7352-9" + offset="0.76711881" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00392157;" /> + <stop + id="stop7354-0" + offset="1" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" /> + </linearGradient> + <filter + color-interpolation-filters="sRGB" + inkscape:collect="always" + id="filter3283-0" + x="-0.1342857" + width="1.2685714" + y="-0.031804513" + height="1.063609"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="3.0521038" + id="feGaussianBlur3285-6" /> + </filter> + <radialGradient + r="9.0156116" + fy="97.755692" + fx="122.63042" + cy="97.755692" + cx="122.63042" + gradientTransform="matrix(1.55878,-0.306292,0.359814,1.83116,-104.175,-47.1297)" + gradientUnits="userSpaceOnUse" + id="radialGradient12020-1" + xlink:href="#linearGradient7267-3" + inkscape:collect="always" /> + <linearGradient + id="linearGradient7267-3" + inkscape:collect="always"> + <stop + id="stop7269-8" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop7271-9" + offset="1" + style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" /> + </linearGradient> + <linearGradient + y2="-114.80831" + x2="287.61353" + y1="-142.30832" + x1="253.26682" + spreadMethod="reflect" + gradientTransform="matrix(-0.980138,0.198316,0.198316,0.980138,639.4659,534.74823)" + gradientUnits="userSpaceOnUse" + id="linearGradient12024-3" + xlink:href="#linearGradient6646-4" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6646-4"> + <stop + id="stop6648-4" + offset="0" + style="stop-color: rgb(210, 210, 210); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" + offset="0.36332616" + id="stop6650-6" /> + <stop + style="stop-color: rgb(253, 253, 253); stop-opacity: 1;" + offset="0.50209719" + id="stop6652-0" /> + <stop + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" + offset="0.88261753" + id="stop6654-6" /> + <stop + id="stop6656-6" + offset="1" + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" /> + </linearGradient> + <linearGradient + y2="-120.55831" + x2="256.11353" + y1="-134.55832" + x1="289.26682" + spreadMethod="reflect" + gradientTransform="matrix(-0.980138,0.198316,0.198316,0.980138,639.4659,534.74823)" + gradientUnits="userSpaceOnUse" + id="linearGradient12026-1" + xlink:href="#linearGradient6919-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6919-8"> + <stop + style="stop-color: rgb(210, 210, 210); stop-opacity: 1;" + offset="0" + id="stop6921-4" /> + <stop + id="stop6923-9" + offset="0.19209149" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop6925-6" + offset="0.33865389" + style="stop-color: rgb(253, 253, 253); stop-opacity: 1;" /> + <stop + id="stop6927-3" + offset="0.86131859" + style="stop-color: rgb(113, 113, 113); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" + offset="1" + id="stop6929-7" /> + </linearGradient> + <radialGradient + r="32.673359" + fy="-125.64408" + fx="274.82251" + cy="-117.93331" + cx="279.06516" + spreadMethod="reflect" + gradientTransform="matrix(-0.886056,0.184001,0.2113,1.07213,614.1799,549.78323)" + gradientUnits="userSpaceOnUse" + id="radialGradient12029-8" + xlink:href="#linearGradient6957-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6957-8"> + <stop + id="stop6959-2" + offset="0" + style="stop-color:#00b3fd;stop-opacity:0.15686275;" /> + <stop + id="stop6961-9" + offset="1" + style="stop-color:#007ca8;stop-opacity:0.04705882;" /> + </linearGradient> + <linearGradient + y2="-78.106773" + x2="303.90643" + y1="-116.25681" + x1="304.14551" + spreadMethod="reflect" + gradientTransform="matrix(-0.980138,0.198316,0.198316,0.980138,638.9759,534.84823)" + gradientUnits="userSpaceOnUse" + id="linearGradient12032-1" + xlink:href="#linearGradient6945-3" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6945-3"> + <stop + style="stop-color: rgb(210, 210, 210); stop-opacity: 1;" + offset="0" + id="stop6947-5" /> + <stop + id="stop6949-9" + offset="0.19209149" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop6951-8" + offset="0.60000998" + style="stop-color: rgb(253, 253, 253); stop-opacity: 1;" /> + <stop + id="stop6953-4" + offset="0.86131859" + style="stop-color: rgb(113, 113, 113); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" + offset="1" + id="stop6955-0" /> + </linearGradient> + <radialGradient + r="30.2995" + fy="210.46518" + fx="388.90875" + cy="210.46518" + cx="388.90875" + gradientTransform="matrix(-0.318697,-0.0755056,-0.163869,0.687289,503.8219,441.28743)" + gradientUnits="userSpaceOnUse" + id="radialGradient12036-7" + xlink:href="#linearGradient5722-7" + inkscape:collect="always" /> + <linearGradient + y2="136.30853" + x2="330.35284" + y1="152.81145" + x1="326.05923" + gradientTransform="matrix(-0.825566,0.167473,0.0770569,0.376147,604.9729,405.25693)" + gradientUnits="userSpaceOnUse" + id="linearGradient12040-6" + xlink:href="#linearGradient2921-3" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2921-3"> + <stop + style="stop-color: rgb(220, 220, 220); stop-opacity: 1;" + offset="0" + id="stop2923-6" /> + <stop + id="stop3045-1" + offset="0.5" + style="stop-color: rgb(190, 190, 190); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(78, 78, 78); stop-opacity: 1;" + offset="1" + id="stop2925-5" /> + </linearGradient> + <linearGradient + y2="54.436985" + x2="94.342155" + y1="54.095181" + x1="108.67896" + spreadMethod="reflect" + gradientTransform="matrix(-0.825541,0.167594,0.0992728,0.485945,421.0839,477.00023)" + gradientUnits="userSpaceOnUse" + id="linearGradient12043-4" + xlink:href="#linearGradient6300-4" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.37219,-0.365954,0.0943025,0.353599,38.889699,548.26623)" + r="11.418925" + fy="168.49414" + fx="216.66423" + cy="168.49414" + cx="216.66423" + id="radialGradient43769-2" + xlink:href="#linearGradient5702-0" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5702-0"> + <stop + id="stop5704-9" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop5706-7" + offset="1" + style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" /> + </linearGradient> + <radialGradient + r="30.2995" + fy="210.46518" + fx="388.90875" + cy="210.46518" + cx="388.90875" + gradientTransform="matrix(-0.60548,0.0755005,0.163074,1.30778,453.2669,223.47323)" + gradientUnits="userSpaceOnUse" + id="radialGradient43703-3" + xlink:href="#linearGradient5722-7" + inkscape:collect="always" /> + <radialGradient + r="30.2995" + fy="210.46518" + fx="388.90875" + cy="210.46518" + cx="388.90875" + gradientTransform="matrix(-0.992315,0.123737,0.262964,2.10886,645.9069,99.681226)" + gradientUnits="userSpaceOnUse" + id="radialGradient43706-7" + xlink:href="#linearGradient5722-7" + inkscape:collect="always" /> + <linearGradient + y2="37.301144" + x2="89.337997" + y1="37.301144" + x1="94.64769" + gradientTransform="matrix(-0.84824,0.529612,0.529612,0.84824,288.6319,395.70643)" + gradientUnits="userSpaceOnUse" + id="linearGradient43711-2" + xlink:href="#linearGradient2991-1" + inkscape:collect="always" /> + <linearGradient + y2="150.85622" + x2="342.99582" + y1="139.69865" + x1="313.16528" + gradientTransform="matrix(-0.84824,0.529612,0.529612,0.84824,433.6419,192.32923)" + gradientUnits="userSpaceOnUse" + id="linearGradient43714-6" + xlink:href="#linearGradient2921-3" + inkscape:collect="always" /> + <linearGradient + y2="54.053207" + x2="85.394714" + y1="54.277782" + x1="104.13348" + spreadMethod="reflect" + gradientTransform="matrix(-0.84824,0.529612,0.529612,0.84824,288.6319,395.70643)" + gradientUnits="userSpaceOnUse" + id="linearGradient43717-0" + xlink:href="#linearGradient6646-4" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(-0.608167,0.379718,-0.379823,-0.608335,644.7779,449.77933)" + y2="237.32291" + x2="530.18103" + y1="238.73236" + x1="510.06793" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + id="linearGradient43720-1" + xlink:href="#linearGradient5710-7" + inkscape:collect="always" /> + <radialGradient + r="19.2554" + fy="245.83928" + fx="410.71484" + cy="245.83928" + cx="410.71484" + gradientTransform="matrix(-0.578864,0.310423,0.66115,1.23288,372.2999,185.14323)" + gradientUnits="userSpaceOnUse" + id="radialGradient43723-6" + xlink:href="#linearGradient5686-6" + inkscape:collect="always" /> + <linearGradient + y2="144.32544" + x2="65.723312" + y1="144.4537" + x1="79.35318" + spreadMethod="reflect" + gradientTransform="matrix(1.18406,-0.739285,0.739285,1.18406,94.832301,446.51433)" + gradientUnits="userSpaceOnUse" + id="linearGradient43726-5" + xlink:href="#linearGradient5391-7" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5391-7"> + <stop + id="stop5393-5" + offset="0" + style="stop-color: rgb(133, 242, 238); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(72, 190, 205); stop-opacity: 1;" + offset="0.51337713" + id="stop5395-4" /> + <stop + style="stop-color: rgb(67, 155, 164); stop-opacity: 1;" + offset="0.82493299" + id="stop5397-1" /> + <stop + id="stop5399-2" + offset="1" + style="stop-color: rgb(52, 146, 170); stop-opacity: 1;" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6794-0" + id="radialGradient28778-0" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.462171,-1.64076,-1.68865,0.475661,974.2489,671.57227)" + cx="135.24908" + cy="199.91833" + fx="135.24908" + fy="199.91833" + r="44.441639" /> + <linearGradient + id="linearGradient6794-0" + inkscape:collect="always"> + <stop + id="stop6796-1" + offset="0" + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" /> + <stop + id="stop6798-4" + offset="1" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(-0.516878,-0.856059,0.856059,-0.516878,514.2649,617.44623)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + y2="73.300781" + x2="216.739" + y1="62.946716" + x1="197.3661" + id="linearGradient6768-6" + xlink:href="#linearGradient6770-0" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6770-0"> + <stop + id="stop6772-7" + offset="0" + style="stop-color: rgb(74, 74, 74); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(52, 52, 52); stop-opacity: 1;" + offset="0.38126728" + id="stop6774-1" /> + <stop + id="stop6776-7" + offset="1" + style="stop-color: rgb(13, 13, 13); stop-opacity: 1;" /> + </linearGradient> + <radialGradient + r="12.567793" + fy="298.70105" + fx="154.6134" + cy="298.70105" + cx="154.6134" + gradientTransform="matrix(-1.53867,-0.565738,0.317785,-0.864293,313.558,634.434)" + gradientUnits="userSpaceOnUse" + id="radialGradient6448-7" + xlink:href="#linearGradient6482-7" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6482-7"> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" + offset="0" + id="stop6484-7" /> + <stop + id="stop6486-3" + offset="0.44244558" + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00392157;" + offset="0.79483372" + id="stop6488-3" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00854701;" + offset="1" + id="stop6490-5" /> + </linearGradient> + <filter + color-interpolation-filters="sRGB" + id="filter6636-9" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur6638-9" + stdDeviation="0.55552651" + inkscape:collect="always" /> + </filter> + <filter + color-interpolation-filters="sRGB" + height="1.3554651" + y="-0.17773256" + width="1.4148755" + x="-0.20743774" + id="filter6142-8" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur6144-1" + stdDeviation="0.97947262" + inkscape:collect="always" /> + </filter> + <linearGradient + y2="147.19226" + x2="206.13257" + y1="133.68253" + x1="188.59383" + gradientTransform="matrix(0.896574,0.442894,-0.442894,0.896574,365.5389,345.82223)" + gradientUnits="userSpaceOnUse" + id="linearGradient6098-8" + xlink:href="#linearGradient6080-2" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6080-2" + inkscape:collect="always"> + <stop + id="stop6082-6" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop6084-6" + offset="1" + style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" /> + </linearGradient> + <linearGradient + y2="208.35936" + x2="204.87917" + y1="126.48269" + x1="182.20284" + gradientTransform="matrix(0.926502,0.376289,-0.376289,0.926502,347.5999,363.96128)" + gradientUnits="userSpaceOnUse" + id="linearGradient6094-0" + xlink:href="#linearGradient6080-2" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(-1,0,0,1,704.8209,365.9645)" + gradientUnits="userSpaceOnUse" + y2="159.46429" + x2="200.64285" + y1="206.96429" + x1="195.07143" + id="linearGradient6086-3" + xlink:href="#linearGradient6080-2" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(-1,0,0,1,703.9369,365.83823)" + gradientUnits="userSpaceOnUse" + y2="186.07143" + x2="140.5" + y1="186.07143" + x1="150.71429" + id="linearGradient6064-8" + xlink:href="#linearGradient6058-0" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6058-0" + inkscape:collect="always"> + <stop + id="stop6060-1" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop6062-2" + offset="1" + style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" /> + </linearGradient> + <linearGradient + y2="180.66129" + x2="563.56036" + y1="180.45259" + x1="549.33679" + spreadMethod="reflect" + gradientTransform="matrix(-1.57922,-0.361171,-0.126489,0.553073,1376.0109,694.93927)" + gradientUnits="userSpaceOnUse" + id="linearGradient43391-5" + xlink:href="#linearGradient7358-0" + inkscape:collect="always" /> + <linearGradient + id="linearGradient7358-0"> + <stop + style="stop-color: rgb(210, 210, 210); stop-opacity: 1;" + offset="0" + id="stop7360-9" /> + <stop + id="stop7362-4" + offset="0.26587191" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop7364-7" + offset="0.50209719" + style="stop-color: rgb(253, 253, 253); stop-opacity: 1;" /> + <stop + id="stop7366-8" + offset="0.86131859" + style="stop-color: rgb(113, 113, 113); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" + offset="1" + id="stop7368-3" /> + </linearGradient> + <linearGradient + spreadMethod="reflect" + y2="181.10777" + x2="559.60913" + y1="181.47488" + x1="543.42352" + gradientTransform="matrix(-1.14535,-0.261944,-0.194392,0.849977,1173.5309,476.88623)" + gradientUnits="userSpaceOnUse" + id="linearGradient5995-5" + xlink:href="#linearGradient6032-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6032-1"> + <stop + id="stop6034-2" + offset="0" + style="stop-color: rgb(210, 210, 210); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" + offset="0.19209149" + id="stop6036-0" /> + <stop + style="stop-color: rgb(253, 253, 253); stop-opacity: 1;" + offset="0.50209719" + id="stop6038-1" /> + <stop + style="stop-color: rgb(113, 113, 113); stop-opacity: 1;" + offset="0.86131859" + id="stop6040-6" /> + <stop + id="stop6042-4" + offset="1" + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" /> + </linearGradient> + <radialGradient + r="16.484375" + fy="337.76562" + fx="611.14062" + cy="337.76562" + cx="611.14062" + gradientTransform="matrix(-0.706125,-0.161491,-2.01791,8.82338,1585.3109,-2246.1217)" + gradientUnits="userSpaceOnUse" + id="radialGradient5991-0" + xlink:href="#linearGradient5923-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5923-6" + inkscape:collect="always"> + <stop + id="stop5925-1" + offset="0" + style="stop-color: rgb(239, 239, 239); stop-opacity: 1;" /> + <stop + id="stop5927-8" + offset="1" + style="stop-color: rgb(239, 239, 239); stop-opacity: 0;" /> + </linearGradient> + <linearGradient + y2="151.60715" + x2="613.35712" + y1="151.60715" + x1="598.42859" + spreadMethod="reflect" + gradientTransform="matrix(-1.14535,-0.261944,-0.260924,1.14089,1248.0609,446.48253)" + gradientUnits="userSpaceOnUse" + id="linearGradient5989-9" + xlink:href="#linearGradient6032-1" + inkscape:collect="always" /> + <radialGradient + r="19.34598" + fy="282.82684" + fx="601.55115" + cy="282.82684" + cx="601.55115" + gradientTransform="matrix(-0.638377,-0.143744,-1.40738,6.25106,1278.9709,-1137.2418)" + gradientUnits="userSpaceOnUse" + id="radialGradient5987-8" + xlink:href="#linearGradient5793-7-5" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(6.06092,-28.7893)" + gradientUnits="userSpaceOnUse" + y2="302.95206" + x2="413.89136" + y1="302.95206" + x1="86.900261" + id="linearGradient5324-4" + xlink:href="#linearGradient5212-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5212-1"> + <stop + style="stop-color: rgb(94, 94, 94); stop-opacity: 1;" + offset="0" + id="stop5218-4" /> + <stop + style="stop-color: rgb(135, 135, 135); stop-opacity: 1;" + offset="1" + id="stop5220-3" /> + </linearGradient> + <filter + color-interpolation-filters="sRGB" + height="1.2392526" + y="-0.11962631" + width="1.0378565" + x="-0.018928241" + id="filter5314-9" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur5316-8" + stdDeviation="2.2245386" + inkscape:collect="always" /> + </filter> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.0562872,-0.846122,1.78201,-0.118546,-344.592,455.422)" + r="12.567793" + fy="289.45245" + fx="155.47742" + cy="289.45245" + cx="155.47742" + id="radialGradient5180-8" + xlink:href="#linearGradient5182-0" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5182-0"> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" + offset="0" + id="stop5184-8" /> + <stop + id="stop5186-7" + offset="0.36323413" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.735043;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00392157;" + offset="0.81003517" + id="stop5188-7" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00854701;" + offset="1" + id="stop5190-8" /> + </linearGradient> + <filter + color-interpolation-filters="sRGB" + id="filter5250-3" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur5252-8" + stdDeviation="0.4315698" + inkscape:collect="always" /> + </filter> + <linearGradient + y2="130.51562" + x2="101.25893" + y1="129.62277" + x1="111.11607" + gradientTransform="matrix(-0.330086,-0.218065,-0.218065,0.330086,620.7519,532.39623)" + gradientUnits="userSpaceOnUse" + id="linearGradient5151-3" + xlink:href="#linearGradient5032-7" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5032-7"> + <stop + id="stop5034-1" + offset="0" + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" /> + <stop + id="stop5036-0" + offset="1" + style="stop-color: rgb(26, 26, 26); stop-opacity: 1;" /> + </linearGradient> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.634619,-0.531823,-1.99589,2.38167,1051.4129,170.69923)" + r="17.806782" + fy="208.09908" + fx="169.71953" + cy="208.09908" + cx="169.71953" + id="radialGradient3796-7" + xlink:href="#linearGradient5097-3" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5097-3"> + <stop + id="stop5099-4" + offset="0" + style="stop-color: rgb(196, 153, 131); stop-opacity: 1;" /> + <stop + id="stop5101-9" + offset="1" + style="stop-color: rgb(109, 72, 56); stop-opacity: 1;" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="460.81091" + x2="476.01144" + y1="437.27692" + x1="506.00531" + id="linearGradient7376-6" + xlink:href="#linearGradient7370-5" + inkscape:collect="always" /> + <linearGradient + id="linearGradient7370-5" + inkscape:collect="always"> + <stop + id="stop7372-1" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop7374-0" + offset="1" + style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" /> + </linearGradient> + <filter + color-interpolation-filters="sRGB" + inkscape:collect="always" + id="filter3169-9" + x="-0.097913779" + width="1.1958276" + y="-0.13723195" + height="1.2744639"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.3664859" + id="feGaussianBlur3171-9" /> + </filter> + <filter + color-interpolation-filters="sRGB" + inkscape:collect="always" + id="filter3231-6"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.0338991" + id="feGaussianBlur3233-8" /> + </filter> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3245-4" + id="radialGradient3243-3" + cx="516.56561" + cy="552.31262" + fx="516.56561" + fy="552.31262" + r="27.77412" + gradientTransform="matrix(1.2822,0.159946,-0.98671,8.87271,399.828,-4498.48)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3245-4"> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" + offset="0" + id="stop3247-8" /> + <stop + id="stop3249-4" + offset="0.47679648" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.735043;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00392157;" + offset="0.84760499" + id="stop3251-9" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" + offset="1" + id="stop3253-9" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3245-4" + id="radialGradient3289-2" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.28947,0.0575403,-0.437534,9.80507,92.7583,-4960.53)" + cx="521.00714" + cy="553.11072" + fx="528.67065" + fy="549.35693" + r="27.77412" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="250.998" + x2="472.74234" + y1="220.09412" + x1="511.51248" + id="linearGradient7384-5" + xlink:href="#linearGradient7378-5" + inkscape:collect="always" /> + <linearGradient + id="linearGradient7378-5" + inkscape:collect="always"> + <stop + id="stop7380-3" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + id="stop7382-3" + offset="1" + style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3099-7" + id="radialGradient3107-3" + cx="594.01813" + cy="455.31146" + fx="594.01813" + fy="455.31146" + r="78.281738" + gradientTransform="matrix(-1.12672,0.0963857,0.164852,1.92814,850.3849,-259.37977)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3099-7"> + <stop + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" + offset="0" + id="stop3101-4" /> + <stop + id="stop3103-3" + offset="0.74797648" + style="stop-color: rgb(190, 190, 190); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(78, 78, 78); stop-opacity: 1;" + offset="1" + id="stop3105-8" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3125-8" + id="radialGradient3115-0" + cx="535.53314" + cy="587.98285" + fx="535.53314" + fy="587.98285" + r="66.664993" + gradientTransform="matrix(-1.20935,-0.681718,-0.298763,0.530292,1130.5249,857.65127)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3125-8"> + <stop + id="stop3127-8" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(190, 190, 190); stop-opacity: 1;" + offset="0.56396216" + id="stop3129-0" /> + <stop + id="stop3131-6" + offset="1" + style="stop-color: rgb(78, 78, 78); stop-opacity: 1;" /> + </linearGradient> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.822172,-0.0332769,-0.144605,3.57276,701.8219,-192.51677)" + r="17.464285" + fy="219.6595" + fx="177.29172" + cy="219.6595" + cx="177.29172" + id="radialGradient6022-8" + xlink:href="#linearGradient6024-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6024-1"> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" + offset="0" + id="stop6026-9" /> + <stop + id="stop6030-8" + offset="0.48806494" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.505929;" + offset="1" + id="stop6028-9" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(-1,0,0,1,695.9449,409.25273)" + y2="159.46429" + x2="200.64285" + y1="225.00002" + x1="202.78571" + gradientUnits="userSpaceOnUse" + id="linearGradient6090-7" + xlink:href="#linearGradient6080-2" + inkscape:collect="always" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient28768-2" + id="radialGradient28750-2" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.359324,-0.467879,0.854258,0.493569,-136.737,216.607)" + cx="152.72072" + cy="298.28546" + fx="152.72072" + fy="298.28546" + r="12.567793" /> + <linearGradient + id="linearGradient28768-2"> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" + offset="0" + id="stop28770-8" /> + <stop + id="stop28772-2" + offset="0.48964691" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.735043;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00392157;" + offset="0.79483372" + id="stop28774-8" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00854701;" + offset="1" + id="stop28776-9" /> + </linearGradient> + <filter + color-interpolation-filters="sRGB" + inkscape:collect="always" + id="filter28764-0" + x="-0.090365864" + width="1.1807317" + y="-0.11314108" + height="1.2262822"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.70087335" + id="feGaussianBlur28766-7" /> + </filter> + <radialGradient + r="206.75328" + fy="359.00919" + fx="341.36868" + cy="316.8812" + cx="365.78735" + gradientTransform="matrix(-0.741496,-9.17435e-8,-3.50538e-8,0.301488,694.5299,502.70323)" + gradientUnits="userSpaceOnUse" + id="radialGradient1730-8" + xlink:href="#linearGradient2941-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2941-1"> + <stop + style="stop-color: rgb(225, 225, 225); stop-opacity: 0;" + offset="0" + id="stop2943-5" /> + <stop + id="stop2953-8" + offset="0.86658335" + style="stop-color: rgb(227, 227, 227); stop-opacity: 0;" /> + <stop + style="stop-color: rgb(223, 223, 223); stop-opacity: 1;" + offset="0.89785397" + id="stop2955-6" /> + <stop + id="stop2951-1" + offset="0.92089593" + style="stop-color: rgb(223, 223, 223); stop-opacity: 1;" /> + <stop + id="stop2949-2" + offset="0.95981532" + style="stop-color: rgb(131, 131, 131); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(100, 100, 100); stop-opacity: 1;" + offset="1" + id="stop2945-4" /> + </linearGradient> + <linearGradient + gradientTransform="translate(135.5209,365.83823)" + gradientUnits="userSpaceOnUse" + y2="229.0202" + x2="231.57745" + y1="317.40857" + x1="246.78026" + id="linearGradient43386-2" + xlink:href="#linearGradient43380-5" + inkscape:collect="always" /> + <linearGradient + id="linearGradient43380-5" + inkscape:collect="always"> + <stop + id="stop43382-8" + offset="0" + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" /> + <stop + id="stop43384-6" + offset="1" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" /> + </linearGradient> + <linearGradient + y2="139.49513" + x2="73.637085" + y1="139.54042" + x1="58.934895" + spreadMethod="reflect" + gradientTransform="matrix(1.46894,-0.298904,0.29835,1.46619,221.2626,419.20053)" + gradientUnits="userSpaceOnUse" + id="linearGradient12049-2" + xlink:href="#linearGradient43735-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient43735-6"> + <stop + style="stop-color: rgb(77, 113, 23); stop-opacity: 1;" + offset="0" + id="stop43737-5" /> + <stop + id="stop43739-3" + offset="0.17720199" + style="stop-color: rgb(58, 83, 30); stop-opacity: 1;" /> + <stop + id="stop43741-9" + offset="0.4976573" + style="stop-color: rgb(90, 136, 55); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(122, 168, 85); stop-opacity: 1;" + offset="0.90715724" + id="stop43743-2" /> + <stop + style="stop-color: rgb(122, 168, 115); stop-opacity: 1;" + offset="1" + id="stop43745-4" /> + </linearGradient> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.405363,-0.460922,-1.14115,1.0036,918.4879,416.12303)" + r="16.392855" + fy="292.4024" + fx="165.024" + cy="292.4024" + cx="165.024" + id="radialGradient5210-6" + xlink:href="#linearGradient5182-0" + inkscape:collect="always" /> + <linearGradient + y2="146.36978" + x2="78.405754" + y1="146.34483" + x1="62.226833" + spreadMethod="reflect" + gradientTransform="matrix(1.06628,0.704355,-0.704413,1.06619,524.9769,436.59323)" + gradientUnits="userSpaceOnUse" + id="linearGradient5160-1" + xlink:href="#linearGradient5162-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5162-8"> + <stop + id="stop5164-2" + offset="0" + style="stop-color: rgb(255, 243, 94); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(238, 179, 52); stop-opacity: 1;" + offset="0.33463708" + id="stop5166-1" /> + <stop + style="stop-color: rgb(196, 155, 26); stop-opacity: 1;" + offset="0.59478819" + id="stop5168-1" /> + <stop + id="stop5170-9" + offset="1" + style="stop-color: rgb(131, 111, 52); stop-opacity: 1;" /> + </linearGradient> + <radialGradient + r="16.609375" + fy="374.17654" + fx="612.57562" + cy="374.17654" + cx="612.57562" + gradientTransform="matrix(-0.792244,-0.177362,-2.59849,11.607,1943.1409,-3662.8117)" + gradientUnits="userSpaceOnUse" + id="radialGradient6012-7" + xlink:href="#linearGradient5941-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5941-6" + inkscape:collect="always"> + <stop + id="stop5943-2" + offset="0" + style="stop-color: rgb(239, 239, 239); stop-opacity: 1;" /> + <stop + id="stop5945-9" + offset="1" + style="stop-color: rgb(239, 239, 239); stop-opacity: 0;" /> + </linearGradient> + <radialGradient + r="19.34598" + fy="282.82684" + fx="601.55115" + cy="282.82684" + cx="601.55115" + gradientTransform="matrix(-0.638377,-0.143744,-1.40738,6.25106,1278.9809,-1137.3018)" + gradientUnits="userSpaceOnUse" + id="radialGradient6009-5" + xlink:href="#linearGradient5793-7-5" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.823529,0,31.8053)" + r="6.0104074" + fy="180.22983" + fx="142.83557" + cy="180.22983" + cx="142.83557" + id="radialGradient7273-2" + xlink:href="#linearGradient7267-3" + inkscape:collect="always" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2941-1" + id="radialGradient2947-0" + cx="365.78735" + cy="316.8812" + fx="341.36868" + fy="359.00919" + r="206.75328" + gradientTransform="matrix(-0.741496,-9.17435e-8,-3.50538e-8,0.301488,694.5299,502.70323)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + y2="144.32544" + x2="65.723312" + y1="144.4537" + x1="79.35318" + spreadMethod="reflect" + gradientTransform="matrix(1.18406,-0.739285,0.739285,1.18406,94.832301,446.51433)" + gradientUnits="userSpaceOnUse" + id="linearGradient2056-0" + xlink:href="#linearGradient5391-7" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.992823,-0.133676,-0.0656085,0.60877,704.6499,442.97823)" + r="65.349998" + fy="234.5" + fx="233" + cy="234.5" + cx="233" + id="radialGradient3783-3" + xlink:href="#linearGradient5722-7" + inkscape:collect="always" /> + <filter + color-interpolation-filters="sRGB" + height="1.1629673" + y="-0.081483647" + width="1.5076503" + x="-0.25382516" + id="filter12841-9" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur12843-1" + stdDeviation="2.9877336" + inkscape:collect="always" /> + </filter> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="208.57843" + x2="281.96628" + y1="214.5" + x1="261.86099" + id="linearGradient12853-8" + xlink:href="#linearGradient12847-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient12847-1" + inkscape:collect="always"> + <stop + id="stop12849-9" + offset="0" + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" /> + <stop + id="stop12851-5" + offset="1" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2921-3" + id="radialGradient2929-3" + cx="259.35065" + cy="276.65247" + fx="259.35065" + fy="276.65247" + r="189.58069" + gradientTransform="matrix(2.19475,-0.00299926,0.00262753,1.92273,-328.299,-281.716)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3077-5" + id="linearGradient3075-2" + x1="940.43933" + y1="298.79077" + x2="36.185688" + y2="300.21936" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3077-5"> + <stop + style="stop-color: rgb(181, 181, 181); stop-opacity: 1;" + offset="0" + id="stop3079-2" /> + <stop + style="stop-color: rgb(100, 100, 100); stop-opacity: 1;" + offset="1" + id="stop3083-5" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2975-6" + id="radialGradient3009-8" + cx="440.66495" + cy="372.46799" + fx="440.66495" + fy="372.46799" + r="202.64285" + gradientTransform="matrix(-0.714728,-0.056731,-0.032854,0.414142,700.7179,467.01623)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2975-6"> + <stop + id="stop2983-7" + offset="0" + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.735043;" + offset="0.47679648" + id="stop3007-7" /> + <stop + id="stop3013-2" + offset="0.84760499" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00392157;" /> + <stop + id="stop2979-2" + offset="1" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00854701;" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3019-4" + id="radialGradient3017-9" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.84109,-0.0668427,-0.032894,0.414138,741.3889,470.27123)" + cx="326.1857" + cy="428.37601" + fx="326.1857" + fy="428.37601" + r="202.64285" /> + <linearGradient + id="linearGradient3019-4"> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.529915;" + offset="0" + id="stop3021-1" /> + <stop + id="stop3023-9" + offset="0.24702707" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.435897;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00392157;" + offset="0.86669344" + id="stop3025-6" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00854701;" + offset="1" + id="stop3027-9" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3031-2" + id="radialGradient3029-8" + cx="463.53333" + cy="637.34979" + fx="511.18329" + fy="527.76404" + r="202.64285" + gradientTransform="matrix(-0.806764,0.0358352,0.0742835,1.67328,695.5439,-263.32977)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3031-2"> + <stop + style="stop-color: rgb(225, 225, 225); stop-opacity: 1;" + offset="0" + id="stop3035-5" /> + <stop + style="stop-color: rgb(210, 210, 210); stop-opacity: 1;" + offset="0.20709272" + id="stop3037-5" /> + <stop + id="stop3067-4" + offset="0.38924593" + style="stop-color: rgb(183, 183, 183); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(155, 155, 155); stop-opacity: 1;" + offset="0.60050416" + id="stop3039-9" /> + <stop + id="stop3041-1" + offset="0.78158259" + style="stop-color: rgb(144, 144, 144); stop-opacity: 1;" /> + <stop + id="stop3043-2" + offset="1" + style="stop-color: rgb(126, 126, 126); stop-opacity: 1;" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3057-0" + id="radialGradient3055-5" + cx="360.00003" + cy="736.6535" + fx="360.00003" + fy="736.6535" + r="160" + gradientTransform="matrix(1.14286,-7.64143e-8,3.52461e-8,0.52666,-51.4286,357.575)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3057-0"> + <stop + id="stop3059-8" + offset="0" + style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" /> + <stop + style="stop-color: rgb(190, 190, 190); stop-opacity: 1;" + offset="0.6015625" + id="stop3061-3" /> + <stop + id="stop3063-9" + offset="1" + style="stop-color: rgb(78, 78, 78); stop-opacity: 1;" /> + </linearGradient> + <filter + color-interpolation-filters="sRGB" + id="filter3621-3" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur3623-9" + stdDeviation="2.84534" + inkscape:collect="always" /> + </filter> + <linearGradient + id="linearGradient5630-7"> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" + offset="0" + id="stop5632-9" /> + <stop + id="stop5634-9" + offset="0.5877794" + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.735043;" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00392157;" + offset="0.81345642" + id="stop5636-7" /> + <stop + style="stop-color: rgb(0, 0, 0); stop-opacity: 0.00854701;" + offset="1" + id="stop5638-6" /> + </linearGradient> + <filter + color-interpolation-filters="sRGB" + id="filter5672-9" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur5674-3" + stdDeviation="3.2586028" + inkscape:collect="always" /> + </filter> + <radialGradient + r="160" + fy="612.38635" + fx="409.99759" + cy="722.61578" + cx="360.00003" + gradientTransform="matrix(1.16725,1.77385e-8,0,0.495536,-60.2097,380.621)" + gradientUnits="userSpaceOnUse" + id="radialGradient6239" + xlink:href="#linearGradient5630-7" + inkscape:collect="always" /> + <linearGradient + y2="426.32166" + x2="367.59763" + y1="414.65439" + x1="169.01874" + gradientUnits="userSpaceOnUse" + id="linearGradient6241" + xlink:href="#linearGradient43577-7" + inkscape:collect="always" /> + <linearGradient + y2="426.32166" + x2="367.59763" + y1="414.65439" + x1="169.01874" + gradientUnits="userSpaceOnUse" + id="linearGradient6243" + xlink:href="#linearGradient43577-7" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient43577-7" + id="linearGradient7569" + gradientUnits="userSpaceOnUse" + x1="169.01874" + y1="414.65439" + x2="367.59763" + y2="426.32166" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-74.085794" + inkscape:cy="336.19516" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1580" + inkscape:window-height="1030" + inkscape:window-x="-8" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata5034"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-738.36218)"> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="rect7775" + width="164" + height="314" + x="0" + y="738.36218" /> + <rect + y="738.36218" + x="0" + height="314" + width="164" + id="rect7466" + style="fill:url(#linearGradient7476);fill-opacity:1;stroke:none" /> + <g + id="g9139" + transform="matrix(1.2734863,0,0,1.2734863,-199.50112,811.51067)"> + <g + id="g6035" + transform="translate(3.6896803e-7,0.4883067)" + style="opacity:0.78325124"> + <path + id="path5987" + d="m 54.1,12.988307 -41.2,42.2 c -15.6,15.6 10.1,14.3 19.4,20.2 4.3,2.8 -13.8,6.4 -10.1,10.1 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.699996 -7.3,7.600003 -3.7,11.300003 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.100003 17,-4.1 20.3,-12.500003 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 l -42.7,-43.7 c -5.3,-5.0000003 -14,-5.0000003 -18.9,0 z m 47.3,81.3 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z M 31.9,105.38831 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.700003 -16.9,0.3 -11.1,5.2 z m 67.5,-6.700003 c -4.6,4.200003 0.8,8.600003 5.3,5.700003 1.2,-0.8 -0.1,-4.700007 -5.3,-5.700003 z" + style="fill:#000000;fill-opacity:1;filter:url(#filter6017)" + sodipodi:nodetypes="ccccccccccccccccccccccc" /> + <path + sodipodi:nodetypes="ccccccccccccccccccccccc" + style="opacity:0.57635468;fill:#000000;fill-opacity:1;filter:url(#filter6031)" + d="m 54.1,13.964921 -41.2,42.2 c -15.6,15.6 10.1,14.3 19.4,20.2 4.3,2.8 -13.8,6.4 -10.1,10.1 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.699999 -7.3,7.600009 -3.7,11.300009 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.100009 17,-4.1 20.3,-12.500009 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 l -42.7,-43.7 c -5.3,-5.0000009 -14,-5.0000009 -18.9,0 z m 47.3,81.3 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z M 31.9,106.36493 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.700009 -16.9,0.3 -11.1,5.2 z m 67.5,-6.700009 c -4.6,4.200009 0.8,8.600009 5.3,5.700009 1.2,-0.8 -0.1,-4.70001 -5.3,-5.700009 z" + id="path6021" /> + </g> + <path + id="use7631" + d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m 47.3,81.3 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z" + style="fill:#000000;fill-opacity:1" + sodipodi:nodetypes="ccccccccccccccccccccccc" /> + <path + id="use7639" + d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m 47.3,81.3 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z" + style="fill:none" + sodipodi:nodetypes="ccccccccccccccccccccccc" /> + <use + clip-path="url(#clipPath9086)" + transform="matrix(0.9905442,0,0,0.9905442,0.6051535,0.604136)" + height="300" + width="400" + y="0" + x="0" + style="opacity:0.66995072;fill:url(#linearGradient6846);filter:url(#filter8490)" + class="low-specularity" + xlink:href="#outline1" + id="use7641" + inkscape:label="blue_cast" /> + <path + class="specularity" + style="opacity:0.50526315;fill:url(#linearGradient6848);stroke:none" + d="M 16.565217,57.039374 C 5.3632748,68.140398 25.042362,65.011927 40.180121,70.966113 L 71.464824,15.965587 c -4.743164,-4.844083 -10.798268,-4.44041 -15.137759,0 L 16.565217,57.039374 z" + id="path7643" /> + <path + id="icecap" + class="full-specularity" + style="fill:url(#linearGradient6850)" + d="m 70.5,15.5 16.3,16.6 c 1.5,1.5 1.5,4.6 0.6,5.5 L 79.3,31 77.7,40.7 71,37.1 60.1,44 56.5,29.5 50.7,42.1 36.2,42 c -2.8,0 -2.4,-2.9 0.5,-5.8 5.7,-6.3 16.8,-17 20.3,-20.7 3.6,-3.7 9.9,-3.6 13.5,0 z" /> + <path + sodipodi:nodetypes="csszsszszsc" + transform="matrix(0.5296484,0,0,0.5296484,-11.722258,-13.864159)" + id="path8566" + d="m 113,203.5 c 0,0 3.34046,5.10071 3,7.5 -0.66817,4.70868 -10.80945,7.05842 -8.5625,11.25 2.21991,4.14114 10.22139,1.79405 16.9375,6.125 6.6875,4.3125 4.88949,13.10149 9.75,15.3125 9.47925,4.31205 34.375,-7.4375 33.125,-7.1875 -1.25,0.25 -24.57014,5.09545 -29.82014,0.84545 -5.98592,-4.84575 -7.70217,-8.23028 -12.11736,-11.09545 -4.13751,-2.68498 -9.94967,-3.78036 -11.30246,-5.97865 -1.35279,-2.19829 2.7092,-5.03469 2.98996,-9.27135 0.16862,-2.54442 -4,-7.5 -4,-7.5 z" + style="opacity:0.21674876;fill:url(#radialGradient6852);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + style="opacity:0.27586209;fill:url(#radialGradient6854);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter8732)" + d="m 113,203.5 c 0,0 3.34046,5.10071 3,7.5 -0.66817,4.70868 -10.80945,7.05842 -8.5625,11.25 2.21991,4.14114 10.22139,1.79405 16.9375,6.125 6.6875,4.3125 4.88949,13.10149 9.75,15.3125 9.47925,4.31205 34.375,-7.4375 33.125,-7.1875 -41.33959,0.15736 -33.62485,-10.4946 -49.5625,-17.5 -2.30305,-1.0123 -0.96826,-3.76334 -0.6875,-8 0.16862,-2.54442 -4,-7.5 -4,-7.5 z" + id="path8718" + transform="matrix(0.5296484,0,0,0.5296484,-11.722258,-13.864159)" + sodipodi:nodetypes="csszscssc" /> + <path + sodipodi:nodetypes="cccc" + transform="matrix(0.5296484,0,0,0.5296484,-11.722258,-13.864159)" + id="path8736" + d="m 183.25,181.75 c 37.10371,-13.65459 49.02363,-15.53058 61.25,-27.75 -14.16069,11.95366 -44.09847,18.3658 -68.5,29 l 7.25,-1.25 z" + style="opacity:0.45320195;fill:url(#radialGradient6856);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + style="opacity:0.51231528;fill:url(#radialGradient6858);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter8764)" + d="m 183.25,181.75 c 61.10371,-21.65459 50.77363,-21.53058 61.25,-27.75 -19.42769,7.43666 -55.73446,8.22981 -68.5,29 l 7.25,-1.25 z" + id="path8746" + transform="matrix(0.5296484,0,0,0.5296484,-11.722258,-14.791044)" + sodipodi:nodetypes="cccc" /> + <path + transform="matrix(0.5296484,0,0,0.5296484,-12.384318,-14.791044)" + d="m 237.875,199.0625 c 0,1.34619 -3.55374,2.4375 -7.9375,2.4375 -4.38376,0 -7.9375,-1.09131 -7.9375,-2.4375 0,-1.34619 3.55374,-2.4375 7.9375,-2.4375 4.38376,0 7.9375,1.09131 7.9375,2.4375 z" + sodipodi:ry="2.4375" + sodipodi:rx="7.9375" + sodipodi:cy="199.0625" + sodipodi:cx="229.9375" + id="path8864" + style="opacity:0.2857143;fill:url(#linearGradient6860);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.62068942;fill:url(#linearGradient6862);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8906);enable-background:accumulate" + id="path8874" + sodipodi:cx="229.9375" + sodipodi:cy="199.0625" + sodipodi:rx="7.9375" + sodipodi:ry="2.4375" + d="m 237.875,199.0625 c 0,1.34619 -3.55374,2.4375 -7.9375,2.4375 -4.38376,0 -7.9375,-1.09131 -7.9375,-2.4375 0,-1.34619 3.55374,-2.4375 7.9375,-2.4375 4.38376,0 7.9375,1.09131 7.9375,2.4375 z" + transform="matrix(0.7131486,0,0,1.1407811,-54.577902,-134.95502)" /> + <path + sodipodi:nodetypes="ccc" + transform="matrix(0.5296484,0,0,0.5296484,-11.722258,-14.238677)" + id="path8914" + d="m 214.125,203.75 c 3.76948,3.48424 24.75576,5.27219 28.1875,-1 -6.73663,4.7839 -21.71677,3.10264 -28.1875,1 z" + style="fill:url(#radialGradient6864);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter8980)" /> + <path + sodipodi:type="arc" + style="opacity:0.2857143;fill:url(#linearGradient6866);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path8984" + sodipodi:cx="229.9375" + sodipodi:cy="199.0625" + sodipodi:rx="6.5084434" + sodipodi:ry="3.0820823" + d="m 236.44594,199.0625 c 0,1.70219 -2.91393,3.08208 -6.50844,3.08208 -3.59451,0 -6.50844,-1.37989 -6.50844,-3.08208 0,-1.70219 2.91393,-3.08208 6.50844,-3.08208 3.59451,0 6.50844,1.37989 6.50844,3.08208 z" + transform="matrix(0.2042516,-0.1035605,0.2395168,0.4723972,5.7547955,30.286555)" /> + <path + transform="matrix(0.2750159,-0.1394397,0.5158824,1.0174708,-65.353496,-69.300635)" + d="m 236.99305,199.0625 c 0,1.18192 -3.15888,2.14005 -7.05555,2.14005 -3.89667,0 -7.05555,-0.95813 -7.05555,-2.14005 0,-1.18192 3.15888,-2.14005 7.05555,-2.14005 3.89667,0 7.05555,0.95813 7.05555,2.14005 z" + sodipodi:ry="2.1400476" + sodipodi:rx="7.0555515" + sodipodi:cy="199.0625" + sodipodi:cx="229.9375" + id="path8986" + style="opacity:0.62068942;fill:url(#linearGradient6868);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8906);enable-background:accumulate" + sodipodi:type="arc" /> + <path + style="fill:url(#radialGradient6870);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter8980)" + d="m 217.05754,201.94027 c 3.76948,3.48424 26.97122,8.91123 25.25496,0.80973 -3.31737,5.32326 -18.78423,1.29291 -25.25496,-0.80973 z" + id="path8988" + transform="matrix(0.2042516,-0.1035605,0.2395168,0.4723972,6.2599008,30.649764)" + sodipodi:nodetypes="ccc" /> + <path + sodipodi:nodetypes="cczc" + transform="matrix(0.5296484,0,0,0.5296484,-11.722258,-13.864159)" + id="path8996" + d="m 68.25,186 c 0,-0.62057 38.84622,11.83854 45.5,18.5 -5.47122,-5.33854 -33.159709,-17.61609 -37.375,-17.75 -4.215291,-0.13391 -7.625,-0.5 -8.125,-0.75 z" + style="fill:url(#radialGradient6872);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <g + transform="matrix(0.8790148,-0.1929959,0.2338341,0.6959295,-20.209533,36.725557)" + id="g9018"> + <path + transform="matrix(0.5296484,0,0,0.5296484,-84.4165,-4.7277245)" + d="m 237.875,199.0625 c 0,1.34619 -3.55374,2.4375 -7.9375,2.4375 -4.38376,0 -7.9375,-1.09131 -7.9375,-2.4375 0,-1.34619 3.55374,-2.4375 7.9375,-2.4375 4.38376,0 7.9375,1.09131 7.9375,2.4375 z" + sodipodi:ry="2.4375" + sodipodi:rx="7.9375" + sodipodi:cy="199.0625" + sodipodi:cx="229.9375" + id="path9006" + style="opacity:0.2857143;fill:url(#linearGradient6874);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:0.62068942;fill:url(#linearGradient6876);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8906);enable-background:accumulate" + id="path9008" + sodipodi:cx="229.9375" + sodipodi:cy="199.0625" + sodipodi:rx="7.9375" + sodipodi:ry="2.4375" + d="m 237.875,199.0625 c 0,1.34619 -3.55374,2.4375 -7.9375,2.4375 -4.38376,0 -7.9375,-1.09131 -7.9375,-2.4375 0,-1.34619 3.55374,-2.4375 7.9375,-2.4375 4.38376,0 7.9375,1.09131 7.9375,2.4375 z" + transform="matrix(0.7131486,0,0,1.1407811,-126.61008,-124.8917)" /> + </g> + <path + sodipodi:nodetypes="czczc" + transform="matrix(0.5296484,0,0,0.5296484,-11.622949,-14.42691)" + id="path9038" + d="m 80.5,220.0625 c 0,0 2.10339,5.65078 7.875,5.9375 5.83887,0.29006 12.50324,-7.00698 13.0625,-9.625 -1,2.25 -6.590334,9.03328 -13.8125,8.9375 -4.099862,-0.0544 -7.125,-5.25 -7.125,-5.25 z" + style="opacity:0.61576353;fill:url(#radialGradient6878);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter9068)" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.4565312" + inkscape:original="M 63.40625 8.75 C 59.95625 8.75 56.54375 10 54.09375 12.5 L 12.90625 54.6875 C -2.69375 70.2875 23.0125 69.00625 32.3125 74.90625 C 36.6125 77.70625 18.4875 81.3 22.1875 85 C 25.7875 88.7 43.9 92.0875 47.5 95.6875 C 51.1 99.3875 40.2125 103.3 43.8125 107 C 47.3125 110.7 55.6875 107.19375 57.1875 115.59375 C 58.2875 121.79375 72.6 118.70625 79 113.40625 C 83 110.00625 72.0875 110.0125 75.6875 106.3125 C 84.6875 97.2125 92.7 102.2125 96 93.8125 C 97.8 89.3125 82.4 86.0875 86.5 83.1875 C 96.3 76.2875 132.2875 72.7875 115.6875 56.1875 L 73 12.5 C 70.35 10 66.85625 8.75 63.40625 8.75 z M 109.28125 88.75 C 105.81875 88.875 102.30625 90.6125 101.40625 93.8125 C 101.40625 95.9125 117.7125 97.1125 116.8125 93.3125 C 116.1625 90.1125 112.74375 88.625 109.28125 88.75 z M 38.9375 97.84375 C 33.95 97.496875 27.55625 101.23125 31.90625 104.90625 C 35.60625 108.10625 41.2 104.1875 43 99.6875 C 42.1 98.5125 40.6 97.959375 38.9375 97.84375 z M 99.40625 98.1875 C 94.80625 102.3875 100.1875 106.80625 104.6875 103.90625 C 105.8875 103.10625 104.60625 99.1875 99.40625 98.1875 z " + xlink:href="#use7639" + style="fill:none;stroke:url(#radialGradient6880);stroke-width:0.48830673;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter9298)" + id="87235" + inkscape:href="#use7639" + d="m 63.40625,10.21875 c -3.098181,0 -6.134601,1.122042 -8.28125,3.3125 l -41.1875,42.1875 c -3.76562,3.76562 -4.6702413,6.23069 -4.4375,7.625 0.1163706,0.697155 0.4585994,1.303027 1.1875,1.9375 0.728901,0.634473 1.831495,1.256389 3.15625,1.8125 2.649511,1.112222 6.217961,2.008085 9.71875,2.96875 3.500789,0.960665 6.929812,1.974626 9.53125,3.625 0.396623,0.258266 0.769088,0.576468 1.03125,1.03125 0.262162,0.454782 0.354216,1.056088 0.25,1.5625 -0.208431,1.012824 -0.83202,1.546985 -1.46875,2.03125 -1.27346,0.96853 -3.023257,1.773229 -4.78125,2.625 -1.757993,0.851771 -3.524925,1.723242 -4.40625,2.4375 -0.440663,0.357129 -0.600112,0.678133 -0.59375,0.65625 0.0064,-0.02188 -0.116851,-0.273101 0.09375,-0.0625 0.551764,0.56709 2.274075,1.538165 4.46875,2.40625 2.194675,0.868085 4.88065,1.745624 7.59375,2.625 2.7131,0.879376 5.4575,1.749959 7.78125,2.65625 2.32375,0.906291 4.217694,1.748944 5.46875,3 0.622681,0.639978 1.062632,1.435956 1.15625,2.25 0.09362,0.814044 -0.126809,1.578032 -0.4375,2.21875 -0.621382,1.28144 -1.620313,2.26719 -2.53125,3.21875 -0.910938,0.95156 -1.736226,1.86034 -2.03125,2.46875 -0.147512,0.3042 -0.170347,0.50242 -0.15625,0.625 0.0141,0.12258 0.03518,0.24623 0.3125,0.53125 A 1.4566768,1.4566768 0 0 1 44.875,106 c 1.193594,1.2618 3.787002,1.43924 6.71875,2.125 1.465874,0.34288 2.998909,0.86196 4.3125,2 1.313591,1.13804 2.299435,2.87059 2.71875,5.21875 0.176459,0.99459 0.702722,1.4788 1.96875,1.875 1.266028,0.3962 3.194353,0.46554 5.3125,0.15625 4.236295,-0.61859 9.260035,-2.69532 12.15625,-5.09375 0.17999,-0.15299 0.129956,-0.11255 0.1875,-0.1875 -0.194805,-0.13939 -0.651644,-0.43652 -1.40625,-0.8125 -0.891527,-0.4442 -1.944708,-0.85956 -2.75,-1.875 -0.402646,-0.50772 -0.679877,-1.30934 -0.5625,-2.09375 0.117377,-0.78441 0.546832,-1.43702 1.125,-2.03125 4.745751,-4.79848 9.421937,-5.944136 12.9375,-6.875 1.757782,-0.465432 3.229292,-0.891233 4.34375,-1.59375 1.114458,-0.702517 1.98508,-1.663728 2.71875,-3.53125 0.08087,-0.202174 0.07855,-0.260846 -0.03125,-0.5 C 94.515197,92.542096 94.220541,92.159521 93.75,91.75 92.808918,90.930959 91.239577,90.050804 89.6875,89.1875 88.135423,88.324196 86.627034,87.519262 85.53125,86.5 c -0.547892,-0.509631 -1.122017,-1.151633 -1.1875,-2.125 -0.06548,-0.973367 0.572568,-1.851633 1.3125,-2.375 2.745718,-1.93321 6.896278,-3.404906 11.40625,-4.96875 4.50997,-1.563844 9.36113,-3.182125 13.3125,-5.03125 3.95137,-1.849125 6.85729,-3.978669 7.78125,-6.125 0.46198,-1.073165 0.54663,-2.158606 0.0625,-3.5625 -0.48413,-1.403894 -1.58958,-3.120831 -3.5625,-5.09375 L 72,13.5625 c -0.01071,-0.0101 -0.02051,-0.02119 -0.03125,-0.03125 -2.357722,-2.207738 -5.478371,-3.3125 -8.5625,-3.3125 z m 45.9375,80 c -2.63522,0.09513 -5.05952,1.301393 -6.09375,3.1875 0.29381,0.110524 0.55838,0.234969 1.03125,0.34375 1.37562,0.316455 3.29543,0.520736 5.1875,0.5625 1.89207,0.04176 3.78415,-0.117472 4.9375,-0.4375 0.50487,-0.14009 0.77236,-0.281778 0.90625,-0.375 -0.2558,-1.091098 -0.86487,-1.862126 -1.90625,-2.4375 -1.07862,-0.595951 -2.55669,-0.898111 -4.0625,-0.84375 z m -70.5,9.0625 c -2.089872,-0.145348 -4.716548,0.686551 -6,1.71875 -0.641726,0.5161 -0.913269,0.99441 -0.9375,1.3125 -0.02423,0.31809 0.07726,0.74199 0.9375,1.46875 a 1.4566768,1.4566768 0 0 1 0,0.0312 c 1.352809,1.17 2.882256,1.04802 4.625,0.0937 1.460951,-0.79997 2.757201,-2.30075 3.625,-3.875 -0.585032,-0.377341 -1.284532,-0.682853 -2.25,-0.75 z m 61,0.625 c -0.447303,0.5686 -0.690902,1.09797 -0.71875,1.46875 -0.03844,0.51176 0.106611,0.90723 0.5,1.28125 0.73729,0.70099 2.33912,1.00278 3.96875,0.125 -0.0322,-0.1891 -0.0933,-0.47591 -0.34375,-0.84375 -0.4999,-0.73414 -1.6686,-1.5251 -3.40625,-2.03125 z" + inkscape:label="top_inner_highlight" /> + <path + style="opacity:0.32512315;fill:url(#linearGradient6882);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5983)" + d="m 95.5,172 c -5.090606,1.50191 -21.592018,7.73713 -19.25,12.5 2.243595,4.56272 40.61138,6.40132 46.5,20 2.5679,5.93009 -5.89238,10.40326 -3.75,16.5 1.64973,4.69477 14.41196,16.49084 22.48603,22.06781 6.33298,4.37435 14.65096,-3.52244 11.26397,-10.06781 -5.39589,-10.42759 18.44266,-23.19912 29.25,-29 6.30524,-3.38436 -13,-20 -13,-20 0,0 -73.5,-12 -73.5,-12 z" + id="path5897" + transform="matrix(0.4883067,0,0,0.4883067,-5.8104012,-7.7042521)" + sodipodi:nodetypes="csssssscs" /> + <path + style="fill:url(#linearGradient6884);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 41.742167,78.533037 c 2.231933,1.639226 6.636757,0.650538 9.282124,1.841759 6.349518,2.859218 14.154941,6.045427 12.718568,0.404555 0,0 -1.615771,1.342042 -1.615771,1.342042 0,0 -0.03153,-2.557545 -0.03153,-2.557545 0,0 -3.751977,0.916294 -3.751977,0.916294 0,0 -2.906173,-2.332759 -4.238526,-3.101995 -0.27829,-0.160669 -1.707695,1.292815 -1.707695,1.292815 0,0 -0.25697,-1.543804 -0.25697,-1.543804 -1.857372,-0.197638 -3.696159,-0.284805 -5.31515,-0.271821 -3.880942,0.03112 -6.499059,0.637741 -5.083074,1.6777 z" + id="path5783" + sodipodi:nodetypes="cssssssssss" /> + <path + style="opacity:0.47783251;fill:url(#radialGradient6886);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5845)" + d="m 182.75,187.25 c -1.75981,6.4783 21.62776,15.27989 19.875,19.75 -3.85895,9.84158 -24.97596,3.13755 -41.125,23.75 -2.31318,2.95251 3.25,13.5 2.5,12.25 -0.75,-1.25 -6.4649,-9.96285 -5,-14.25 4.59417,-13.44525 49.0128,-18.45749 40.875,-24.875 -4.67988,-3.69058 -21.50546,-13.88721 -17.125,-16.625 z" + id="path5803" + transform="matrix(0.4883067,0,0,0.4883067,-5.8104012,-7.7042521)" + sodipodi:nodetypes="csssssc" /> + <path + sodipodi:type="arc" + style="opacity:0.58620689;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path6041" + sodipodi:cx="233.9375" + sodipodi:cy="201.1875" + sodipodi:rx="2.5625" + sodipodi:ry="1.0625" + d="m 236.5,201.1875 c 0,0.5868 -1.14727,1.0625 -2.5625,1.0625 -1.41523,0 -2.5625,-0.4757 -2.5625,-1.0625 0,-0.5868 1.14727,-1.0625 2.5625,-1.0625 1.41523,0 2.5625,0.4757 2.5625,1.0625 z" + transform="matrix(0.4883067,0,0,0.4883067,-6.3597463,-8.0094438)" /> + <path + transform="matrix(0.3096579,0,0,0.4883067,27.528443,1.5735759)" + d="m 236.5,201.1875 c 0,0.5868 -1.14727,1.0625 -2.5625,1.0625 -1.41523,0 -2.5625,-0.4757 -2.5625,-1.0625 0,-0.5868 1.14727,-1.0625 2.5625,-1.0625 1.41523,0 2.5625,0.4757 2.5625,1.0625 z" + sodipodi:ry="1.0625" + sodipodi:rx="2.5625" + sodipodi:cy="201.1875" + sodipodi:cx="233.9375" + id="path6043" + style="opacity:0.58620689;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <path + transform="matrix(0.5478563,0,0,0.4883067,-92.102233,1.115795)" + d="m 236.5,201.1875 c 0,0.5868 -1.14727,1.0625 -2.5625,1.0625 -1.41523,0 -2.5625,-0.4757 -2.5625,-1.0625 0,-0.5868 1.14727,-1.0625 2.5625,-1.0625 1.41523,0 2.5625,0.4757 2.5625,1.0625 z" + sodipodi:ry="1.0625" + sodipodi:rx="2.5625" + sodipodi:cy="201.1875" + sodipodi:cx="233.9375" + id="path6045" + style="opacity:0.58620689;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <path + style="opacity:0.25123153;fill:url(#linearGradient6888);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04789329;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 36.672282,76.528654 c -7.152988,4.424107 -18.274031,6.034229 -6.103834,8.972635 -1.449712,-3.2281 3.138581,-2.872021 6.103834,-8.972635 z" + id="path5049" + sodipodi:nodetypes="ccc" /> + <path + transform="matrix(0.48830674,0,0,0.48830674,57.750397,32.997477)" + sodipodi:nodetypes="csszsscccsssc" + id="path10207" + d="m 8.8342799,171.64721 c 0,0 22.5917801,-2.12795 27.8180201,-8.64645 3.05755,-3.81358 -12.15146,-8.2638 -8.86827,-12 12.35008,-14.0541 22.73076,-13.46729 37.05025,-19.35355 14.31949,-5.88626 9.03544,-8.76906 4.40381,-11.35355 -7.9325,-4.4264 -25.58722,-9.14237 -19.74696,-19.64645 5.87688,-10.569936 57.34315,-25.249996 57.34315,-25.249996 15.59619,-5.32843 13.63909,-14.96447 6,-23 l -46,-45.7499997 c 0,0 2.28296,43.3886497 -7,61.9999997 -11.4715,22.99914 -72.54408,48.661766 -47,51.499996 9,1 13.32065,4.0705 17,11 7.57631,14.26883 -21.0000001,40.5 -21.0000001,40.5 z" + style="opacity:0.36315792;color:#000000;fill:url(#linearGradient6890);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter10997-7);enable-background:accumulate" /> + </g> + <path + style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Pushkin" + d="m 42.67202,790.98579 c -0.0736,-0.011 -0.1655,0.042 -0.24325,0.081 -0.5003,0.2437 -0.88133,0.6956 -1.2973,1.0541 -0.64107,0.554 -1.31598,1.0537 -1.94601,1.6217 -0.19918,-0.1538 -0.35992,-0.3445 -0.56756,-0.4866 -1.92082,-1.3293 -4.24463,-2.0362 -6.5678,-2.1892 -1.17042,-0.093 -2.3351,0.015 -3.48663,0.2432 -2.32672,0.4623 -4.63662,1.1476 -6.72987,2.2704 -1.54999,0.8613 -3.04073,1.8543 -4.45965,2.9191 -1.14051,0.8782 -2.30339,1.8535 -3.0812,3.0811 -0.37854,0.6284 -0.66919,1.3656 -0.48646,2.1082 0.23946,0.8222 0.99201,1.3927 1.7839,1.6217 0.83836,0.2432 1.71454,-0.069 2.51354,-0.3244 2.28891,-0.7951 4.55118,-1.8213 6.40555,-3.4055 1.11902,-0.953 2.17106,-2.0789 2.67575,-3.4866 0.16908,-0.5207 0.34377,-1.0738 0.24335,-1.6216 -0.0537,-0.3755 -0.57655,-0.5992 -0.89199,-0.4055 -0.2376,0.148 -0.41762,0.3749 -0.48646,0.6487 0.12086,0.5097 0.13737,1.1328 -0.0811,1.6216 -0.42086,0.9683 -1.16163,1.6728 -1.946,2.3515 -1.34723,1.1667 -2.97475,2.011 -4.62176,2.6758 -0.88082,0.3431 -1.80203,0.6856 -2.75688,0.7297 -0.39977,-0.01 -0.76721,-0.085 -1.13513,-0.2433 -0.39379,-0.2776 -0.3731,-0.7972 -0.24331,-1.2162 0.28641,-0.8333 0.85146,-1.4934 1.45954,-2.1082 2.3037,-2.2273 5.16282,-3.9155 8.18942,-4.9461 1.63565,-0.5398 3.30817,-0.8981 5.02721,-1.054 1.65415,-0.1207 3.36311,-0.021 4.9461,0.4864 1.18497,0.3949 2.31493,1.0063 3.16221,1.946 -1.28821,0.9993 -2.58717,1.9414 -3.89198,2.919 -2.0328,1.5069 -4.04371,3.04 -6.0812,4.5408 -1.8095,1.3099 -3.59796,2.6708 -5.35156,4.0541 -1.25297,1.0087 -2.49084,2.0432 -3.64877,3.1622 -0.39,-0.124 -0.74392,-0.285 -1.1352,-0.4055 -1.10678,-0.3256 -2.24103,-0.7587 -3.40545,-0.8108 -1.81984,-0.057 -3.64384,0.2576 -5.35154,0.892 -0.70658,0.2816 -1.46496,0.6011 -1.946,1.2162 -0.29728,0.3689 -0.2727,0.8656 -0.16221,1.2973 0.17816,0.7385 0.84781,1.2307 1.54065,1.4597 0.98959,0.3311 2.0481,0.3912 3.08111,0.3242 1.9307,-0.1788 3.78094,-0.8049 5.59477,-1.4593 0.74029,-0.2853 1.5138,-0.5496 2.18932,-0.9731 1.28016,0.4562 2.62125,0.8866 3.97309,1.0539 1.21025,0.1639 2.3887,-0.018 3.56767,-0.3242 2.12131,-0.554 4.17658,-1.465 6.00022,-2.6759 2.35922,-1.5667 4.25645,-3.7168 5.67575,-6.1622 0.72867,-1.2715 1.44218,-2.6214 1.7839,-4.0542 0.20819,-0.8078 0.14861,-1.6082 0.16211,-2.4325 -0.0426,-0.5578 -0.30055,-1.0977 -0.48646,-1.6217 0.49444,-0.4516 1.04074,-0.9328 1.54055,-1.3784 0.45903,-0.4209 0.92306,-0.8181 1.21626,-1.3784 0.0977,-0.2162 0.18579,-0.4135 0.16218,-0.6486 0.0139,-0.2394 -0.18454,-0.5348 -0.40542,-0.5677 z m 80.84036,0.1622 c -0.48052,0.067 -0.92396,0.3631 -1.29733,0.6487 -0.88004,0.7494 -1.65282,1.5788 -2.43254,2.4325 -0.1652,0.2993 -0.50057,0.3543 -0.81091,0.4054 -1.6459,0.2952 -3.35966,0.3144 -5.02708,0.3243 -1.46723,-0.038 -2.86153,-0.3671 -4.29744,-0.6487 -1.56301,-0.3396 -3.19116,-0.6469 -4.78399,-0.8107 -2.39909,-0.2539 -4.89633,-0.2573 -7.21643,0.4864 -1.67097,0.5411 -3.26092,1.4557 -4.37845,2.838 -0.94293,1.1615 -1.39309,2.6481 -1.29743,4.1352 0.0203,0.3172 0.22151,0.6402 0.56766,0.6487 0.32017,0.046 0.46037,-0.2458 0.56756,-0.4865 0.26229,-0.685 0.46979,-1.4228 0.72978,-2.1082 0.50462,-1.2578 1.41209,-2.3475 2.59468,-3.0001 1.64732,-0.9191 3.57111,-1.212 5.43253,-1.2973 1.85904,-0.1078 3.70019,0.1866 5.51377,0.5675 2.01047,0.4651 4.09415,0.8691 6.16231,0.892 2.14662,0.01 4.32689,-0.1557 6.40555,-0.7297 1.28062,-0.3508 2.45867,-0.9453 3.48666,-1.7839 0.60919,-0.5132 1.21256,-1.2704 1.2162,-2.1081 -9.8e-4,-0.063 -0.0349,-0.047 -0.0811,-0.081 -0.31789,-0.1745 -0.68469,-0.3332 -1.054,-0.3243 z m -84.65124,4.9461 c 0.16668,0.5741 0.31258,1.1824 0.32432,1.7838 -2.5e-4,0.9272 -0.23766,1.8135 -0.56756,2.6758 -0.74384,1.8828 -1.87657,3.5415 -3.24342,5.0272 -1.27391,1.4061 -2.84049,2.6414 -4.54068,3.4866 -1.74663,0.851 -3.56195,1.4796 -5.51364,1.6217 -1.68041,0.1254 -3.34384,-0.2668 -4.9461,-0.7297 0.3742,-0.3998 0.79944,-0.7811 1.21623,-1.1354 2.00194,-1.6629 4.1297,-3.1057 6.24341,-4.6217 1.87207,-1.2836 3.68872,-2.5782 5.59478,-3.8108 1.85757,-1.3555 3.69178,-2.7951 5.43266,-4.2975 z m 63.89383,2.8379 c -0.53539,0.2487 -1.00631,0.6844 -1.45955,1.0541 -1.39337,1.223 -2.69836,2.5469 -4.05419,3.8109 -0.26866,-0.216 -0.50237,-0.4112 -0.81077,-0.5675 -0.66482,-0.2807 -1.38404,-0.5423 -2.10822,-0.5676 -0.52775,-0.032 -1.1291,0.2445 -1.37835,0.7298 -0.27657,0.5209 -0.28846,1.1232 -0.24334,1.7027 0.0294,0.3231 0.33045,0.5824 0.64867,0.5677 0.28926,-0.059 0.22766,-0.4951 0.32435,-0.73 0.0732,-0.376 0.39459,-0.7801 0.81088,-0.8108 0.62991,-0.024 1.25174,0.2342 1.78377,0.5677 -0.56974,0.5435 -1.1438,1.0668 -1.70267,1.6216 -1.35815,1.3291 -2.72989,2.647 -4.29743,3.7297 -0.60464,0.3901 -1.29208,0.8267 -2.02712,0.892 -0.27425,0.059 -0.47975,-0.2161 -0.40542,-0.4863 0.17649,-0.5825 0.6239,-1.0037 0.89188,-1.5407 0.18497,-0.3131 -0.19286,-0.6152 -0.48646,-0.5677 -0.46992,-0.01 -0.7425,0.4552 -0.97299,0.8111 -0.33599,0.5814 -0.66794,1.2044 -0.81087,1.8648 -0.10766,0.4031 0.14375,0.7625 0.40542,1.0541 0.22159,0.234 0.44637,0.5457 0.81091,0.4866 1.1758,-0.075 2.20007,-0.6588 3.16221,-1.2973 1.24337,-0.8529 2.36917,-1.8308 3.48656,-2.8382 1.02024,-0.9116 1.96739,-1.9368 2.91899,-2.9189 0.27275,0.2716 0.55567,0.5399 0.89199,0.7297 0.9613,0.4893 2.09714,0.6093 3.1622,0.6488 0.49793,0 0.96766,0.01 1.45955,-0.081 0.33666,-0.06 0.59389,-0.3085 0.56757,-0.6485 -0.0377,-0.1412 -0.20556,-0.2026 -0.32432,-0.2434 -0.88695,-0.1888 -1.78768,-0.1372 -2.67578,-0.3243 -0.77674,-0.115 -1.4965,-0.502 -2.10817,-0.973 1.13388,-1.0729 2.2293,-2.2119 3.3244,-3.3245 0.58146,-0.6122 1.22725,-1.1632 1.70276,-1.8649 0.26966,-0.3249 -0.21464,-0.5941 -0.48646,-0.4865 z m 40.05525,2.1082 c -0.54525,-0.063 -1.10655,0.079 -1.62166,0.2432 -1.52427,0.5362 -2.86804,1.3936 -4.21633,2.2704 -1.01562,0.6508 -2.00617,1.4022 -2.919,2.1894 -1.24084,1.0788 -2.44689,2.1999 -3.56776,3.4055 -0.1198,0.1393 -0.2854,0.2614 -0.40532,0.4054 -1.16046,0.4159 -2.30262,0.9482 -3.48666,1.2973 -0.9511,0.2894 -1.93513,0.3697 -2.919,0.1621 -0.32831,-0.067 -0.73355,-0.2555 -0.72977,-0.6486 0.0369,-0.4491 0.39968,-0.7233 0.72977,-0.9731 0.62422,-0.3341 1.27339,-0.663 1.86491,-1.0542 1.06913,-0.7214 2.17994,-1.4179 3.0812,-2.3512 0.36523,-0.4031 0.76298,-0.8813 0.72977,-1.4596 -0.003,-0.3273 -0.33283,-0.6132 -0.64866,-0.6487 -0.32992,-0.091 -0.60731,0.09 -0.89189,0.2432 -1.31315,0.7133 -2.57404,1.5684 -3.72987,2.5136 -0.91827,0.7757 -1.85315,1.6059 -2.43257,2.6758 -0.0607,0.1202 -0.0324,0.2729 -0.081,0.4053 -1.01819,0.3843 -2.03616,0.8274 -3.08121,1.1354 -0.95107,0.2894 -1.93512,0.3697 -2.91899,0.1621 -0.32829,-0.067 -0.73355,-0.2555 -0.72977,-0.6486 0.01,-0.12 0.027,-0.225 0.0811,-0.3246 0.0726,-0.046 0.10501,-0.1019 0.16211,-0.1619 0.0415,-0.05 0.0333,-0.1169 0.0811,-0.1624 0.13026,-0.1235 0.27013,-0.2217 0.40546,-0.3242 0.62422,-0.3341 1.27328,-0.663 1.86487,-1.0542 1.06915,-0.7214 2.18004,-1.4178 3.08124,-2.3512 0.36523,-0.4031 0.76288,-0.8813 0.72977,-1.4596 -0.003,-0.3273 -0.25186,-0.6132 -0.56767,-0.6487 -0.32981,-0.091 -0.6883,0.09 -0.97298,0.2432 -1.31316,0.7133 -2.57392,1.5684 -3.72981,2.5136 -0.91823,0.7757 -1.77198,1.6059 -2.35143,2.6758 -0.0625,0.1238 -0.11278,0.2688 -0.16221,0.4053 -0.27023,0.124 -0.53488,0.2158 -0.81077,0.3243 -0.85938,0.3785 -1.77249,0.6389 -2.67579,0.892 -1.06342,0.2938 -2.13581,0.5917 -3.24331,0.6488 -0.2602,0 -0.64156,0.059 -0.72977,-0.2434 -0.0659,-0.701 0.37641,-1.3553 0.89188,-1.7836 0.83026,-0.7014 1.91882,-1.0708 2.91899,-1.4597 0.62404,-0.2684 1.27708,-0.4111 1.78387,-0.8919 0.27367,-0.2328 0.27529,-0.6635 0.16214,-0.973 -0.14467,-0.4355 -0.64139,-0.5456 -1.05402,-0.4863 -0.9453,0.1422 -1.61357,0.9544 -2.51364,1.2162 -0.2977,0.1039 -0.70707,0.028 -0.81078,-0.3245 -0.0899,-0.411 -0.10094,-0.8013 -0.16224,-1.2162 -0.15724,-0.4384 -0.64411,-0.5423 -1.05409,-0.4866 -0.52272,0.1803 -0.9142,0.5947 -1.29734,0.9731 -0.69099,0.7499 -1.36654,1.5117 -1.94601,2.3516 -0.20872,0.2604 -0.28106,0.6488 -0.16211,0.9727 0.0716,0.3506 0.46784,0.5589 0.81078,0.4865 0.37076,-0.2634 0.65992,-0.6458 0.97302,-0.9728 0.36085,-0.3682 0.64125,-0.7439 1.05409,-1.0541 0.30099,0.01 0.62224,0.2072 0.89189,0.3243 0.36131,0.07 0.055,0.2451 -0.081,0.4053 -0.68015,0.7852 -1.49983,1.5276 -2.02708,2.4327 -0.22968,0.343 -0.1011,0.762 0.16211,1.054 0.39065,0.4348 0.89648,0.7554 1.45955,0.8919 0.48592,0.056 0.97294,-0.047 1.45944,-0.081 0.84342,-0.066 1.71852,-0.2867 2.51364,-0.5673 1.1757,-0.3821 2.28663,-0.853 3.40546,-1.3785 0.0197,0.056 0.0515,0.108 0.0811,0.162 0.35262,0.5866 0.97958,0.8965 1.62166,1.0542 1.45968,0.3324 2.98266,0.052 4.37854,-0.4054 0.66504,-0.2289 1.30033,-0.5308 1.94601,-0.8108 0.0199,0.057 0.0508,0.1068 0.0811,0.162 0.35262,0.5866 1.06059,0.8965 1.70277,1.0542 1.45956,0.3324 2.98258,0.052 4.37844,-0.4054 0.69872,-0.2402 1.35061,-0.5938 2.02711,-0.8919 0.0581,0.5394 0.37802,1.0975 0.89188,1.2973 0.5188,0.2049 1.08458,0.049 1.62179,0 1.52661,-0.2202 3.09008,-0.527 4.54065,-1.0542 0.94066,-0.3568 1.82675,-0.8333 2.75678,-1.2163 0.20749,-0.086 0.3642,-0.2199 0.56764,-0.3242 0.0283,0.056 0.0386,0.111 0.081,0.1623 0.41632,0.4589 1.09761,0.6618 1.7028,0.6485 1.03026,-0.053 2.01613,-0.362 3.0001,-0.6485 -1.65019,1.5 -3.23996,3.0948 -4.86501,4.6217 -0.21204,0.2413 -0.53848,0.3253 -0.81088,0.4865 -1.63371,0.9711 -3.25435,1.9091 -4.86499,2.919 -1.65679,1.0258 -3.25711,2.1979 -4.78387,3.4054 -1.44106,1.1334 -2.78193,2.328 -4.05423,3.649 -0.87307,0.9203 -1.75222,1.872 -2.35143,3.0001 -0.21988,0.4524 -0.47625,1.0503 -0.24321,1.5404 0.14235,0.242 0.2951,0.5405 0.56756,0.6485 0.33274,0.056 0.73725,-0.064 1.0541,-0.1619 1.11203,-0.3982 2.01862,-1.1201 2.91899,-1.865 0.81951,-0.7234 1.62762,-1.5305 2.43254,-2.2705 2.3307,-2.1935 4.72612,-4.2903 7.05422,-6.4864 1.87272,-1.7907 3.69163,-3.5904 5.51371,-5.4328 0.55472,-0.2883 1.14377,-0.6114 1.70272,-0.892 1.91426,-0.9771 3.87399,-1.8058 5.83809,-2.6758 1.0316,-0.4845 2.1004,-0.8065 3.16221,-1.2162 0.26131,-0.1338 0.65901,-0.2165 0.81091,-0.4865 0.003,-0.1229 -0.0523,-0.258 -0.16224,-0.3242 -0.33427,-0.1682 -0.71794,-0.011 -1.05409,0.081 -2.12039,0.7556 -4.28165,1.4433 -6.40556,2.1894 -0.11343,0.011 -0.52967,0.2934 -0.32432,0.081 0.80597,-0.8841 1.71563,-1.6232 2.59465,-2.4327 0.41357,-0.4012 0.81431,-0.8136 1.13513,-1.2973 0.084,-0.2638 -0.0219,-0.78 -0.40536,-0.6485 -0.68728,0.2117 -1.2416,0.6232 -1.86497,0.973 -0.95926,0.5364 -1.90794,1.1023 -2.91899,1.5405 -0.8187,0.3467 -1.69187,0.6489 -2.59468,0.5676 -0.32323,0 -0.67154,-0.3326 -0.48656,-0.6488 0.35244,-0.6825 0.83792,-1.3185 1.37844,-1.8647 0.55853,-0.5282 1.23872,-0.8577 1.86501,-1.2973 0.20242,-0.1514 0.60239,-0.4617 0.32432,-0.7299 -0.27734,-0.1467 -0.61036,-5e-4 -0.89199,0.081 -0.88437,0.327 -1.72435,0.8408 -2.43243,1.4596 -0.63893,0.5888 -1.18027,1.2288 -1.54069,2.0269 -0.0367,0.088 -0.0513,0.2281 -0.081,0.3243 -0.50935,0.1932 -1.0383,0.358 -1.54065,0.5677 -0.73636,0.3361 -1.49734,0.6536 -2.27033,0.892 -1.15644,0.3602 -2.28742,0.7 -3.48656,0.8919 -0.33613,0.044 -0.78028,0.1006 -0.97299,-0.2434 -0.2049,-0.4658 0.0572,-0.9258 0.32435,-1.2974 0.71245,-0.9307 1.67525,-1.718 2.59465,-2.4324 0.65915,-0.4075 1.34576,-0.7648 2.02711,-1.135 1.09883,-0.6036 2.27903,-1.0746 3.40542,-1.6218 0.71432,-0.3524 1.42499,-0.6428 2.10822,-1.0541 0.51161,-0.3239 1.05075,-0.8053 1.05412,-1.4595 0.0185,-0.2414 -0.16137,-0.4577 -0.40545,-0.4865 z m -102.81398,3.8919 c -0.52259,0.1803 -0.91422,0.5947 -1.29734,0.9731 -0.69099,0.7499 -1.36654,1.5117 -1.94598,2.3516 -0.20873,0.2604 -0.28113,0.6488 -0.16214,0.9727 0.0716,0.3506 0.46786,0.5589 0.81078,0.4865 0.37079,-0.2634 0.65992,-0.6458 0.97302,-0.9728 0.36088,-0.3682 0.72235,-0.7439 1.1352,-1.0541 0.30102,0.01 0.54115,0.2072 0.81078,0.3243 0.36132,0.07 0.055,0.2451 -0.081,0.4053 -0.68011,0.7852 -1.49985,1.5276 -2.02708,2.4327 -0.22972,0.343 -0.10107,0.762 0.16211,1.054 0.39066,0.4348 0.97761,0.7554 1.54065,0.8919 0.48591,0.056 0.97297,-0.047 1.45945,-0.081 0.84341,-0.066 1.63741,-0.2867 2.43254,-0.5673 1.19868,-0.3896 2.34725,-0.8396 3.48655,-1.3785 0.0481,0.3663 0.20254,0.7251 0.48656,0.973 0.52798,0.5061 1.25487,0.5461 1.94598,0.4863 1.85662,-0.1437 3.59956,-0.9824 5.10821,-2.027 0.12787,0.2415 0.27755,0.4883 0.40546,0.7297 0.17301,0.4322 0.59009,0.6963 1.05409,0.73 1.55466,0.046 3.10484,-0.3142 4.54068,-0.892 0.38852,-0.1664 0.74924,-0.3129 1.1352,-0.4865 -0.0124,0.032 -0.069,0.049 -0.0811,0.081 -0.16977,0.3841 -0.16493,0.8295 0,1.2162 0.18312,0.4572 0.6794,0.5891 1.13513,0.5677 0.97787,-0.082 1.95366,-0.2357 2.91909,-0.4055 1.80983,-0.2954 3.50687,-0.9951 5.18932,-1.703 -0.12898,0.4556 -0.19695,0.9058 -0.24321,1.3785 -0.0687,0.4262 0.3414,0.7271 0.72964,0.73 0.51743,-0.016 0.94043,-0.3208 1.37844,-0.5677 0.93659,-0.5885 1.83766,-1.2502 2.75689,-1.8651 1.0235,-0.7377 2.21851,-1.2677 3.32444,-1.8647 0.22657,-0.1533 0.49986,-0.2773 0.56757,-0.5676 l 0,-0.081 c 0.0208,-0.3549 -0.32228,-0.5509 -0.64867,-0.4865 -0.73576,0.1009 -1.36715,0.4913 -2.02711,0.8108 -1.01478,0.536 -2.00956,1.1237 -3.0001,1.7027 -0.22416,0.1301 -0.43177,-0.3146 -0.64867,-0.4054 -0.35144,-0.2429 -0.76154,-0.5697 -1.21623,-0.4865 -0.95254,0.2239 -1.82821,0.671 -2.75689,0.9731 -0.93768,0.3452 -1.95296,0.4836 -2.91899,0.7296 -0.82168,0.1901 -1.59937,0.4344 -2.43254,0.5678 -0.28099,0.049 -0.64161,-0.1672 -0.48646,-0.4866 0.21372,-0.4277 0.51065,-0.7638 0.81078,-1.1351 0.18344,-0.1162 0.41905,-0.1996 0.48656,-0.4054 7.4e-4,-0.052 -0.064,-0.044 -0.0811,-0.081 -0.0113,-0.025 0.0178,-0.062 0,-0.081 0.53002,-0.6221 1.17253,-1.0833 1.78387,-1.6216 0.16585,-0.1857 0.47746,-0.3583 0.40545,-0.6485 -0.0728,-0.3938 -0.47631,-0.5116 -0.81088,-0.4865 -0.4302,0.096 -0.80647,0.3738 -1.1352,0.6485 -0.62292,0.5678 -1.19063,1.2668 -1.7838,1.865 -0.27037,0.2528 -0.45712,0.4988 -0.64866,0.8108 -0.40978,0.1862 -0.80786,0.3799 -1.21624,0.5677 -1.06444,0.5433 -2.20898,0.8819 -3.40552,0.9728 -0.33553,-0.018 -0.78648,0.1861 -1.05412,-0.081 -0.15129,-0.2367 -0.17188,-0.5461 -0.0811,-0.811 0.27743,-0.5728 0.82793,-0.8988 1.29734,-1.2974 0.23667,-0.2213 0.60352,-0.4209 0.72977,-0.7297 -0.006,-0.2895 -0.0774,-0.7011 -0.40545,-0.8108 -0.42175,-0.046 -0.7794,0.098 -1.1351,0.3243 -0.16388,-0.075 -0.36277,-0.3836 -0.56756,-0.4865 -0.57878,-0.419 -1.33865,-0.4431 -2.02711,-0.4054 -1.99058,0.056 -4.02679,0.4593 -5.67588,1.6218 -0.6384,0.4512 -1.23551,1.0553 -1.54056,1.7837 -0.31548,0.1432 -0.65143,0.279 -0.97298,0.4053 -0.85935,0.3785 -1.69138,0.6389 -2.59468,0.892 -1.06339,0.2938 -2.1359,0.5917 -3.24341,0.6488 -0.26022,0 -0.64141,0.059 -0.72968,-0.2434 -0.0659,-0.701 0.3764,-1.3553 0.89189,-1.7836 0.83028,-0.7014 1.83773,-1.0708 2.83789,-1.4597 0.62404,-0.2684 1.35815,-0.4111 1.865,-0.8919 0.27365,-0.2328 0.19421,-0.6635 0.081,-0.973 -0.14465,-0.4355 -0.64141,-0.5456 -1.05402,-0.4863 -0.94532,0.1422 -1.61359,0.9544 -2.51364,1.2162 -0.29772,0.1039 -0.70707,0.028 -0.81078,-0.3245 -0.0899,-0.411 -0.0198,-0.8013 -0.0811,-1.2162 -0.15737,-0.4384 -0.72525,-0.5423 -1.13523,-0.4866 z m 14.43296,2.6758 c 0.25412,0.013 0.70245,-0.1031 0.72967,0.2434 -0.0461,0.213 -0.12764,0.4641 -0.24321,0.6486 -0.52452,0.7971 -1.35054,1.2152 -2.18922,1.6216 -0.92132,0.4135 -1.9051,0.8731 -2.919,0.973 -0.28102,0 -0.59577,0.058 -0.8109,-0.1622 -0.19939,-0.2956 -0.0949,-0.6955 0.0811,-0.9728 0.43803,-0.6341 1.10929,-1.0452 1.78377,-1.3785 1.11467,-0.5071 2.33192,-0.9185 3.56776,-0.9731 z m 101.27333,2.1893 c -0.58356,0.1721 -1.01852,0.769 -0.89188,1.3785 0.077,0.4968 0.57015,0.8159 1.05399,0.8108 0.62269,0.042 1.14488,-0.5521 1.13523,-1.1351 -1.4e-4,-0.1527 -0.0365,-0.3403 -0.0811,-0.4865 -0.12719,-0.4991 -0.74475,-0.6739 -1.21623,-0.5677 z m -142.13945,0.1623 c 0.62329,0.023 1.25368,0.1215 1.86487,0.2431 0.72709,0.1582 1.46203,0.4084 2.18922,0.5677 -0.60337,0.2964 -1.30893,0.4398 -1.94598,0.6485 -1.38425,0.4126 -2.77938,0.8686 -4.21634,1.0542 -0.69925,0.062 -1.41912,0.052 -2.10821,-0.081 -0.43423,-0.1 -0.91149,-0.3345 -1.054,-0.8108 -0.13811,-0.3625 0.31375,-0.5237 0.56755,-0.6488 0.93394,-0.3976 1.84043,-0.6279 2.83789,-0.8108 0.61569,-0.1162 1.2416,-0.1849 1.865,-0.162 z m 122.92262,7.7029 c -0.12343,0.1946 -0.25277,0.3148 -0.40545,0.4866 -0.82419,0.8937 -1.72194,1.749 -2.59468,2.5946 -2.21603,2.0822 -4.44356,4.1495 -6.64877,6.2433 -0.70377,0.6252 -1.44097,1.2479 -2.27042,1.7028 -0.23309,0.095 -0.65307,0.3908 -0.81078,0.081 -0.1133,-0.3188 0.16413,-0.6442 0.32435,-0.892 0.9968,-1.3509 2.13319,-2.5508 3.32442,-3.7297 1.70647,-1.7095 3.6888,-3.0975 5.67588,-4.4598 1.10024,-0.7348 2.18966,-1.4935 3.40545,-2.027 z" + id="text1784" /> + <path + style="fill:#000000;fill-opacity:1;stroke-width:1pt" + d="m 156.32309,761.61413 -12.32884,0 0,0.78894 0.36913,0 c 1.66184,0 1.84622,0.0843 1.84622,0.78902 l 0,0.48667 0,7.98911 0,0.48681 c 0,0.70471 -0.18438,0.78895 -1.84622,0.78895 l -0.36913,0 0,0.78887 12.59541,0 0.41034,-4.48167 -0.90285,0 c -0.26604,1.17478 -0.73836,2.21555 -1.23056,2.70245 -0.63613,0.67134 -1.80555,0.99035 -3.52839,0.99035 l -1.35393,0 c -0.61566,0 -1.12819,-0.10065 -1.31304,-0.25184 -0.14325,-0.10019 -0.16396,-0.20148 -0.16396,-0.55374 l 0,-4.2799 0.41026,0 c 1.25112,0 1.76412,0.10065 2.17484,0.45283 0.53287,0.43683 0.73812,0.97388 0.77931,1.96392 l 0.96409,0 0,-5.50509 -0.96409,0 c -0.1026,1.64477 -0.92339,2.29947 -2.87243,2.29947 l -0.49198,0 0,-3.82698 c 0,-0.72163 0.18477,-0.83923 1.29238,-0.83923 l 1.06653,0 c 1.80539,0 2.68736,0.15126 3.3852,0.62127 0.67682,0.4363 1.1691,1.37604 1.47707,2.88657 l 0.88207,0 -0.28743,-4.29678 z m -27.22236,6.73053 2.318,0 c 1.84659,0 2.81053,-0.11745 3.63142,-0.43614 1.45607,-0.57106 2.27705,-1.64506 2.27705,-2.97081 0,-1.2753 -0.71832,-2.24922 -2.07195,-2.80296 -0.80027,-0.33541 -2.07225,-0.52062 -3.48771,-0.52062 l -7.17968,0 0,0.78894 0.36914,0 c 1.66161,0 1.84605,0.0843 1.84605,0.78902 l 0,0.48667 0,7.98911 0,0.48681 c 0,0.70471 -0.18444,0.78895 -1.84605,0.78895 l -0.36914,0 0,0.78887 6.89255,0 0,-0.78887 -0.53355,0 c -1.66176,0 -1.84613,-0.0843 -1.84613,-0.78895 l 0,-0.48681 0,-3.32321 z m 0,-0.7888 0,-4.29668 c 0,-0.77187 0.1233,-0.85611 1.25141,-0.85611 l 1.31304,0 c 2.13325,0 3.13845,0.8226 3.13845,2.60166 0,1.729 -1.04617,2.55112 -3.22056,2.55112 l -2.48234,0 z m -17.84731,-6.17646 -0.86148,0 -4.7186,9.78479 c -0.41002,0.87304 -0.49191,0.99048 -0.79957,1.25882 -0.32847,0.31907 -0.90291,0.52062 -1.45697,0.52062 l -0.0817,0 0,0.78886 5.43605,0 0,-0.78886 -0.41039,0 c -1.10728,0 -1.66138,-0.31901 -1.66138,-0.95676 0,-0.20154 0.0616,-0.43614 0.18451,-0.7047 l 0.67721,-1.47724 5.43597,0 1.10787,2.24925 c 0.12315,0.25177 0.16419,0.36883 0.16419,0.45331 0,0.26824 -0.51338,0.43614 -1.27206,0.43614 l -0.86157,0 0,0.78886 6.35961,0 0,-0.78886 -0.2871,0 c -1.02632,0 -1.25181,-0.13425 -1.72332,-1.074 l -5.23118,-10.49023 z m -1.00527,2.75266 2.31807,4.76672 -4.59519,0 2.27712,-4.76672 z m -14.15472,-2.63531 -0.77964,0 -0.82052,0.99056 c -1.4569,-0.87318 -2.25633,-1.12479 -3.6309,-1.12479 -1.98999,0 -3.63141,0.6547 -5.02609,2.01397 -1.31288,1.27566 -1.92854,2.68535 -1.92854,4.41435 0,3.6087 2.89241,6.19334 6.93408,6.19334 3.28224,0 5.37473,-1.5776 5.84669,-4.39751 l -0.96423,-0.1341 c -0.20509,0.88944 -0.45155,1.49349 -0.82075,1.99724 -0.84086,1.15822 -2.1539,1.74577 -3.81572,1.74577 -3.03596,0 -4.47198,-1.72915 -4.47198,-5.33739 0,-1.89703 0.30744,-3.17242 1.00505,-4.17939 0.63585,-0.93999 1.90783,-1.52767 3.22094,-1.52767 1.43601,0 2.70792,0.62127 3.48741,1.69564 0.38984,0.55365 0.69752,1.20822 1.16956,2.50068 l 0.90186,0 -0.30722,-4.85065 z m -20.5347,0.0167 -0.75876,0 -0.82074,1.00719 c -0.96431,-0.75528 -2.27712,-1.15815 -3.73364,-1.15815 -2.68735,0 -4.49246,1.40983 -4.49246,3.50827 0,1.82913 1.10728,2.73559 4.1228,3.37327 l 1.94894,0.40302 c 1.51821,0.31862 1.66165,0.35219 2.09268,0.62112 0.61535,0.38579 0.94351,0.93953 0.94351,1.59416 0,0.67126 -0.30769,1.22508 -0.92288,1.6786 -0.67727,0.4866 -1.35386,0.6713 -2.48221,0.6713 -1.51828,0 -2.6055,-0.38625 -3.56958,-1.25898 -0.86164,-0.78909 -1.29247,-1.57796 -1.6,-2.87006 l -0.88205,0 0.0817,4.78364 0.80027,0 0.9228,-1.14143 c 1.37458,0.92289 2.52394,1.25874 4.30795,1.25874 3.01575,0 4.94414,-1.44321 4.94414,-3.69265 0,-1.0407 -0.43083,-1.92999 -1.2305,-2.56778 -0.55417,-0.43651 -1.35421,-0.72178 -2.99556,-1.05763 l -2.19495,-0.45294 c -1.82565,-0.38592 -2.68737,-1.04063 -2.68737,-2.06448 0,-1.17464 1.16934,-1.9809 2.91296,-1.9809 1.43625,0 2.60527,0.50406 3.42586,1.46061 0.59495,0.68803 0.9641,1.39296 1.23108,2.24907 l 0.882,0 -0.24607,-4.364 z m -27.7353,6.73059 0,-4.56531 0,-0.48668 c 0,-0.70477 0.18439,-0.78901 1.8463,-0.78901 l 0.38976,0 0,-0.78895 -6.74916,0 0,0.78895 0.36936,0 c 1.66161,0 1.84569,0.0843 1.84569,0.78901 l 0,0.48668 0,7.9891 0,0.48681 c 0,0.70472 -0.18408,0.78895 -1.84569,0.78895 l -0.36936,0 0,0.78887 6.74916,0 0,-0.78887 -0.38976,0 c -1.66191,0 -1.8463,-0.0843 -1.8463,-0.78895 l 0,-0.48681 0,-2.13147 2.37978,-1.96359 3.56926,4.27975 c 0.32849,0.40278 0.41027,0.53703 0.41027,0.70536 0,0.2681 -0.38931,0.38571 -1.39482,0.38571 l -0.63615,0 0,0.78887 7.01601,0 0,-0.78887 -0.38969,0 c -1.12827,0 -1.41585,-0.1176 -2.01057,-0.83916 l -4.96416,-5.85771 3.05679,-2.50069 c 0.98442,-0.85625 2.23554,-1.34299 3.46647,-1.34299 l 0,-0.78895 -6.31855,0 0,0.78895 0.5133,0 c 0.94389,0 1.33321,0.15125 1.33321,0.50359 0,0.23492 -0.41026,0.72174 -1.00506,1.20822 l -5.02609,4.12919 z m -22.93493,-6.62994 -4.22599,0 0,0.78894 0.51294,0 c 1.04623,0 1.5181,0.13425 1.88733,0.55435 l 0,7.1327 c 0,2.29947 -0.41057,2.78611 -2.37969,2.85351 l 0,0.78886 5.84691,0 0,-0.78886 c -1.9494,-0.0674 -2.35943,-0.55404 -2.35943,-2.85351 l 0,-6.22677 9.14964,10.10419 0.8615,0 0,-8.71105 c 0,-2.29907 0.40995,-2.7861 2.37946,-2.85342 l 0,-0.78894 -5.84668,0 0,0.78894 c 1.94886,0.0674 2.3592,0.55435 2.3592,2.85342 l 0,5.27017 -8.18519,-8.91253 z m -13.33414,2.06463 0,-0.48668 c 0,-0.70477 0.18456,-0.78901 1.8255,-0.78901 l 0.41035,0 0,-0.78894 -6.79021,0 0,0.78894 0.41034,0 c 1.66168,0 1.8462,0.0843 1.8462,0.78901 l 0,0.48668 0,7.9891 0,0.48681 c 0,0.70472 -0.18452,0.78896 -1.8462,0.78896 l -0.41034,0 0,0.78886 6.79021,0 0,-0.78886 -0.41035,0 c -1.64094,0 -1.8255,-0.0843 -1.8255,-0.78896 l 0,-0.48681 0,-7.9891 z" + id="path1790" /> + <g + id="g7434" + transform="matrix(0.31703569,0,0,0.31703569,-46.71649,717.22798)"> + <path + sodipodi:type="arc" + style="opacity:0.77470398;fill:url(#radialGradient6239);fill-opacity:1;stroke:none;display:inline;filter:url(#filter5672-9)" + id="path5616" + sodipodi:cx="360" + sodipodi:cy="754.50507" + sodipodi:rx="160" + sodipodi:ry="79.285713" + d="m 520,754.50507 c 0,43.78829 -71.63444,79.28571 -160,79.28571 -88.36556,0 -160,-35.49742 -160,-79.28571 0,-43.78829 71.63444,-79.28572 160,-79.28572 88.36556,0 160,35.49743 160,79.28572 z" + transform="matrix(-1.02245,0,0,1.07463,827.3329,130.58623)" /> + <path + sodipodi:type="arc" + style="opacity:0.373786;fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter3621-3)" + id="path5718" + sodipodi:cx="360" + sodipodi:cy="754.50507" + sodipodi:rx="160" + sodipodi:ry="79.285713" + d="m 520,754.50507 c 0,43.78829 -71.63444,79.28571 -160,79.28571 -88.36556,0 -160,-35.49742 -160,-79.28571 0,-43.78829 71.63444,-79.28572 160,-79.28572 88.36556,0 160,35.49743 160,79.28572 z" + transform="matrix(-0.71224,0,0,0.717173,679.9899,349.66693)" /> + <path + transform="matrix(-0.716975,0,0,0.717173,680.8109,348.15173)" + d="m 520,754.50507 c 0,43.78829 -71.63444,79.28571 -160,79.28571 -88.36556,0 -160,-35.49742 -160,-79.28571 0,-43.78829 71.63444,-79.28572 160,-79.28572 88.36556,0 160,35.49743 160,79.28572 z" + sodipodi:ry="79.285713" + sodipodi:rx="160" + sodipodi:cy="754.50507" + sodipodi:cx="360" + id="path3047" + style="fill:url(#radialGradient3055-5);fill-opacity:1;stroke:none;display:inline" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="ccscc" + id="path2332" + d="m 570.1919,598.80748 -289.86274,0 13.31525,265.35419 c 4.50598,89.7978 255.03824,90.5004 259.13525,1.0245 L 570.1919,598.80748 z" + style="fill:url(#radialGradient3029-8);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + sodipodi:nodetypes="ccccc" + id="path3015" + d="m 570.1919,598.80748 -289.86274,0 13.31525,265.35419 c 4.097,89.8174 255.03824,90.5004 259.13525,1.0245 L 570.1919,598.80748 z" + style="opacity:0.59683802;fill:url(#radialGradient3017-9);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + style="opacity:0.91699602;fill:url(#radialGradient3009-8);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 570.1919,598.80748 -289.86274,0 13.31525,265.35419 c 4.097,89.8174 255.03824,90.5004 259.13525,1.0245 L 570.1919,598.80748 z" + id="path2989" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:type="arc" + style="fill:url(#linearGradient3075-2);fill-opacity:1;stroke:none;display:inline" + id="path2917" + sodipodi:cx="362.85715" + sodipodi:cy="323.07648" + sodipodi:rx="205.71428" + sodipodi:ry="80.714279" + d="m 568.57143,323.07648 c 0,44.57726 -92.10142,80.71428 -205.71428,80.71428 -113.61286,0 -205.71428,-36.13702 -205.71428,-80.71428 0,-44.57727 92.10142,-80.71428 205.71428,-80.71428 113.61286,0 205.71428,36.13701 205.71428,80.71428 z" + transform="matrix(-0.720496,0,0,0.717173,686.9099,372.08891)" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient2929-3);fill-opacity:1;stroke:none;display:inline" + id="path2919" + sodipodi:cx="362.85715" + sodipodi:cy="323.07648" + sodipodi:rx="198.64322" + sodipodi:ry="75.663513" + d="m 561.50037,323.07648 c 0,41.7878 -88.9356,75.66351 -198.64322,75.66351 -109.70762,0 -198.64322,-33.87571 -198.64322,-75.66351 0,-41.78781 88.9356,-75.66352 198.64322,-75.66352 109.70762,0 198.64322,33.87571 198.64322,75.66352 z" + transform="matrix(-0.716975,0,0,0.737484,685.6319,360.54362)" /> + <path + sodipodi:nodetypes="ccccc" + id="path12845" + d="m 252.14893,184.5 17.73411,101.75 24.81632,-2.75 -24.57902,-101 -17.97141,2 z" + style="opacity:0.53809497;fill:url(#linearGradient12853-8);fill-opacity:1;stroke-width:1px;display:inline;filter:url(#filter12841-9)" + transform="matrix(1.25398,0,0,1,41.262199,369.52021)" /> + <path + style="opacity:0.57142902;stroke-width:1px;display:inline;filter:url(#filter12841-9)" + d="m 339.0209,557.33823 12.75,78.5 14.25,1.75 -18,-83.25 -9,3 z" + id="path12827" + sodipodi:nodetypes="ccccc" /> + <path + style="opacity:0.51308899;fill:url(#radialGradient3783-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69999999;marker:none;visibility:visible;display:inline;overflow:visible" + d="m 425.46834,540.40073 c 36.89806,0 70.62612,5.51899 96.5,14.59375 0.61152,2.72985 0.7986,5.51055 0.5,8.28125 -2.3436,21.74588 -33.15877,35.51505 -68.78125,30.71875 -35.62248,-4.7963 -62.62486,-26.34787 -60.28125,-48.09375 0.15251,-1.41516 0.42537,-2.78042 0.8125,-4.125 10.07598,-0.88113 20.52577,-1.375 31.25,-1.375 z" + id="path3775" /> + <path + style="fill:url(#linearGradient2056-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.4000001;marker:none;visibility:visible;display:inline;overflow:visible" + d="m 325.95447,598.40808 28.36367,44.33109 -46.56763,-12.2697 -17.2713,-27.63779 35.47526,-4.4236 z" + id="rect5476" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="csc" + id="path3791" + d="m 572.96465,600.10636 c 0,-32.9529 -66.07641,-59.69728 -147.49199,-59.69728 -81.41558,0 -147.492,26.74438 -147.492,59.69728" + style="fill:url(#radialGradient2947-0);fill-opacity:1;stroke:none;display:inline" /> + <path + sodipodi:type="arc" + style="opacity:0.43478304;fill:url(#radialGradient7273-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" + id="path7257" + sodipodi:cx="142.83557" + sodipodi:cy="180.22983" + sodipodi:rx="6.0104074" + sodipodi:ry="4.9497476" + d="m 148.84598,180.22983 c 0,2.73367 -2.69095,4.94975 -6.01041,4.94975 -3.31946,0 -6.01041,-2.21608 -6.01041,-4.94975 0,-2.73367 2.69095,-4.94975 6.01041,-4.94975 3.31946,0 6.01041,2.21608 6.01041,4.94975 z" + transform="matrix(-1,0,0,1.46429,703.7599,282.86723)" /> + <path + style="fill:url(#radialGradient6009-5);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" + d="m 459.03084,587.74448 44.09375,10.0625 c -1.22785,5.72239 -2.50391,11.54782 -3.84375,17.40625 -2.30422,10.0752 -4.67796,19.89593 -7.09375,29.43754 l -47.1875,8 c 2.86556,-15.17062 6.1754,-31.11284 9.9375,-47.56254 1.33985,-5.85843 2.71219,-11.65652 4.09375,-17.34375 z" + id="path5957" /> + <path + style="opacity:0.6917;fill:url(#radialGradient6012-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" + d="m 466.99959,588.55698 30.25,6.9375 c -1.30851,5.98798 -2.68849,12.04302 -4.09375,18.1875 -2.51523,10.99783 -5.06204,21.72066 -7.625,32.09379 l -32.40625,5.5 c 2.89574,-14.25731 6.07275,-29.13578 9.59375,-44.53129 1.40527,-6.14449 2.85688,-12.22603 4.28125,-18.1875 z" + id="path5967" /> + <path + style="fill:url(#linearGradient5160-1);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 527.53845,570.89417 24.76021,16.37232 -32.75095,48.89108 -41.68821,10.2866 49.67895,-75.55 z" + id="rect5116" + sodipodi:nodetypes="ccccc" /> + <path + style="opacity:0.29644297;fill:url(#radialGradient5210-6);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 519.03922,636.54255 17.26919,-25.56739 -15.92354,4.48551 -23.99745,28.0344 22.6518,-6.95252 z" + id="path5202" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccsc" + id="path7083" + d="m 368.77151,521.40925 26.1955,131.78742 c -12.12517,-0.9744 -23.29323,-2.656 -35.06485,-5.0447 l -25.26987,-119.8174 c 6.97001,-8.95248 19.60253,-11.33343 28.83465,-9.34772 0.53261,0.11455 4.14036,1.7834 5.30457,2.4224 z" + style="fill:url(#linearGradient12049-2);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + style="opacity:0.74285697;fill:url(#linearGradient43386-2);fill-opacity:1;stroke-width:1px;display:inline" + d="m 380.42715,580.15073 -33.5625,6.78125 12.53125,58.71879 c 11.77162,2.3886 22.93733,3.8068 35.0625,4.7812 l -14.03125,-70.28124 z" + id="path43378" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cc" + id="path2957" + d="m 563.53428,610.58961 c -48.31046,60.44746 -243.08867,54.30026 -277.05963,0" + style="fill:none;stroke:#dcdcdc;stroke-width:9.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + <path + sodipodi:nodetypes="csc" + id="path1728" + d="m 277.98066,600.10636 c 0,32.95289 66.07642,59.69731 147.492,59.69731 81.41558,0 147.49199,-26.74442 147.49199,-59.69731" + style="fill:url(#radialGradient1730-8);fill-opacity:1;stroke:none;display:inline" /> + <path + transform="matrix(1.37848,0,0,1.53179,51.508499,156.89823)" + sodipodi:nodetypes="ccccc" + id="path5490" + d="m 177.6419,291.59001 c 0,0 2.9007,7.00824 -0.87227,5.6264 -8.00855,-9.95466 -14.24276,0.82837 -14.24276,0.82837 -0.82195,-4.15264 -0.16319,-7.65744 -0.88461,-10.70416 3.50726,-4.71543 13.84348,-0.31918 15.99964,4.24939 z" + style="opacity:0.62450597;fill:url(#radialGradient28750-2);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter28764-0)" /> + <path + sodipodi:nodetypes="cc" + id="path6088" + d="m 497.38045,618.31682 c 1.01191,-4.94047 2.37378,-12.51645 3.56426,-18.17121" + style="fill:none;stroke:url(#linearGradient6090-7);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.263374;stroke-dasharray:none;display:inline" /> + <path + style="fill:url(#radialGradient6022-8);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 510.7228,551.55251 c 4.46429,1.13095 10,2.79762 15.53572,5 1.13095,0.95238 6.8357,3.18572 0.35714,5.17858 l -6.96428,14.82142 -3.03572,10.35715 -21.78571,34.28571 8.03571,-22.85714 -2.14286,-29.28571 10,-17.50001 z" + id="path6014" + sodipodi:nodetypes="ccccccccc" /> + <path + sodipodi:nodetypes="cscccc" + id="path3087" + d="m 327.12637,837.33337 c 0,0 -9.85961,-13.9522 -15.93359,-16.6625 -24.63169,-10.9909 -62.64639,-20.664 -78.23658,-35.7997 -10.61843,1.2055 3.27628,18.7751 3.27628,18.7751 l 81.47859,38.0338 9.4153,-4.3467 z" + style="fill:url(#radialGradient3115-0);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + sodipodi:nodetypes="cszzzsscccccccc" + id="path3089" + d="m 321.33234,682.30007 c 0,0 1.47645,-3.8408 -3.25915,-8.3312 -7.1256,-6.7566 -23.81728,-12.1537 -30.99292,-14.3027 -7.17565,-2.1489 -17.24879,-2.1748 -23.85485,-0.4865 -7.08565,1.8109 -15.3125,6.5559 -21.1989,17.3248 -6.15435,11.2591 -27.01463,56.5155 -32.59143,101.0614 -1.68604,13.4676 12.2532,28.787 25.34888,34.4116 l 64.09649,27.5293 3.98339,-7.6068 -63.91542,-28.0726 -5.9751,-14.308 31.14294,-101.4236 18.46848,-9.5991 27.88378,5.9768 10.86381,-2.1734 z" + style="fill:url(#radialGradient3107-3);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + sodipodi:nodetypes="cc" + id="path3135" + d="m 490.03295,242.72026 c 9.76481,-9.59645 18.51947,-16.16244 29.29443,-19.69798" + style="fill:none;stroke:url(#linearGradient7384-5);stroke-width:6.97278023;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter3169-9)" + transform="matrix(-0.716975,0,0,0.717173,674.6659,503.88123)" /> + <path + sodipodi:nodetypes="cczccc" + style="opacity:0.53883499;fill:url(#radialGradient3289-2);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter3283-0)" + d="m 503.05597,456.37218 -23.14178,100.16798 22.68203,-9.65092 c 9.55483,-4.06546 16.52986,-13.47739 24.79478,-20.21608 l 7.98985,-68.28067 -32.32488,-2.02031 z" + id="path3287" + transform="matrix(-0.796639,0,0,0.710882,729.8119,520.87523)" /> + <path + sodipodi:nodetypes="csczsszssssczccsszss" + id="path3085" + d="m 320.6602,717.86587 c -12.71839,4.1091 -17.09783,-0.7509 -21.44336,-5.0976 -4.34552,-4.3468 -8.31334,-18.2316 -7.48339,-24.4481 l -1.90617,-1.8545 c -5.92406,-5.7635 -14.73479,4.0236 -17.35635,8.6313 -16.89927,29.7027 -29.074,74.108 -31.86718,87.4779 -3.41868,16.3639 0.98086,22.0107 6.88041,24.2693 0,0 77.77079,25.2507 80.14221,32.7392 1.50346,4.7476 0.61882,18.9986 0.19851,26.6059 -0.36581,6.6209 -8.20591,6.6181 -13.73508,6.2801 -6.91613,-0.4227 -12.11709,-8.3376 -14.48509,-14.8513 -1.74536,-4.801 -1.38755,-13.2201 -4.13787,-17.5247 -12.85324,-6.1646 -38.49578,-14.7648 -46.95567,-18.9509 -6.7601,-3.3451 -21.97882,-11.9964 -27.1343,-17.9527 7.14995,5.7561 19.18567,6.7323 17.91326,4.6073 -2.54482,-4.2501 -8.69552,-10.0855 -7.01531,-17.6154 7.35274,-32.9514 22.10065,-79.9461 34.7642,-99.9747 4.97779,-7.8729 8.24663,-14.355 19.167,-13.3403 10.92036,1.0147 31.0399,1.0265 35.35057,8.8823 4.50109,8.2029 2.83831,30.9102 -0.89639,32.1169 z" + style="fill:#adadad;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + sodipodi:nodetypes="cccccc" + transform="matrix(-0.783362,0,0,0.717173,720.5169,366.59336)" + id="path3235" + d="m 505.60907,446.96023 -37.95092,234.2776 46.5095,5.44913 5.45972,-26.07902 15.75348,-202.21545 -29.77178,-11.43226 z" + style="opacity:0.61650504;fill:url(#radialGradient3243-3);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter3283-0)" /> + <path + style="fill:#757575;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter3231-6)" + d="m 495.94342,296.8098 c 3.67408,2.83364 15.36297,0.64281 21.42389,-5.41811 6.06092,-6.06091 7.67489,-24.22509 3.72783,-31.49883 4.04061,-4.5457 7.47859,-6.81638 16.9275,-9.979 8.54592,-2.86038 21.59737,3.67666 25.2538,10.10153 23.57023,41.41626 41.056,108.13168 44.95179,126.77416 4.76819,22.81715 -10.06221,30.42243 -18.18274,33.84011 0,0 -104.76039,38.55945 -106.36753,47.85835 -1.62456,9.39972 -0.56014,22.09176 -1.23996,31.61694 -0.68203,9.55622 3.41949,18.02157 19.06689,16.05366 15.30409,-1.92473 20.47131,-19.1074 21.25342,-30.42053 0.78419,-11.34327 -14.79876,2.68385 -16.27388,-6.86942 -0.79663,-5.15919 7.06513,-9.10751 17.13609,-13.80799 10.49094,-4.8965 73.84473,-29.32835 73.84473,-29.32835 7.69336,-3.1065 32.22517,-13.69505 27.53823,-34.69378 -10.25523,-45.94616 -31.05306,-113.82877 -48.71553,-141.75594 -6.94276,-10.9776 -23.69561,-25.30991 -38.92677,-23.89507 -15.23117,1.41485 -37.60046,4.93549 -43.61277,15.88941 -6.27789,11.43779 -4.65255,40.25168 2.19501,45.53286 z" + id="path3173" + sodipodi:nodetypes="csczsszzzzzszzsszss" + transform="matrix(-0.716975,0,0,0.717173,674.6659,503.88123)" /> + <path + style="opacity:0.869388;fill:none;stroke:url(#linearGradient7376-6);stroke-width:6.97278023;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter3169-9)" + d="m 488.01264,457.88275 c 6.73435,-9.09137 14.47886,-14.14213 22.72844,-17.67767" + id="path3291" + sodipodi:nodetypes="cc" + transform="matrix(-0.716975,0,0,0.717173,674.9159,503.13123)" /> + <path + sodipodi:nodetypes="cc" + id="path3293" + d="m 389.9239,651.57097 c -11.94958,-0.8538 -29.53254,-4.2689 -40.45787,-7.1718" + style="fill:none;stroke:#ffffff;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:2.4000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="m 445.04142,545.39764 c 11.97831,0.20371 29.72076,2.65909 40.78759,4.96445" + id="path3303" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.44174799;fill:#b9b9b9;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 310.34303,698.96177 c -2.30456,-2.5613 -3.44207,-4.1471 -7.68188,-7.4279 -4.52376,-3.5005 -7.85258,-3.5005 -10.24249,-5.891 6.74297,0.8537 9.55967,2.1344 12.54707,4.3542 2.98739,2.2198 5.12124,6.1472 5.3773,8.9647 z" + id="path5028" + sodipodi:nodetypes="czczc" /> + <path + sodipodi:nodetypes="czczc" + id="path5030" + d="m 311.2717,856.03477 c -0.84077,-3.3417 -2.12981,-6.8122 -4.3454,-10.414 -2.40062,-3.9025 -4.28267,-5.2286 -7.07112,-8.4593 5.30641,2.3701 8.73465,5.0751 10.33867,8.4341 1.60402,3.359 2.16779,7.8286 1.07785,10.4392 z" + style="opacity:0.6917;fill:#b9b9b9;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + sodipodi:nodetypes="ccsssscc" + id="path5118" + d="m 561.72657,545.78963 -7.35336,37.61872 c -0.0556,0.41813 -0.14595,0.83893 -0.25605,1.24202 -0.04,0.14638 -0.8223,2.09921 -1.12139,2.55194 -3.47419,5.25891 -11.96795,5.73503 -18.97984,1.10279 -7.01187,-4.63225 -9.90636,-12.63179 -6.43217,-17.8907 1.22195,-1.84966 1.81846,-1.8214 2.05993,-2.08187 l 32.08288,-22.5429 z" + style="fill:url(#radialGradient3796-7);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + style="fill:url(#linearGradient5151-3);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 561.76914,545.73457 -2.31626,11.84963 c -0.0175,0.13172 -0.046,0.26427 -0.0807,0.39123 -0.0126,0.0461 -0.25902,0.66123 -0.35324,0.80384 -1.09434,1.65652 -3.76981,1.80651 -5.97851,0.34738 -2.20868,-1.45913 -3.12044,-3.97893 -2.02608,-5.63544 0.38489,-0.58264 0.57279,-0.57373 0.64885,-0.65578 l 10.1059,-7.10086 z" + id="path5120" + sodipodi:nodetypes="ccsssscc" /> + <path + style="opacity:0.60869601;fill:url(#radialGradient5180-8);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter5250-3)" + d="m 149.955,284.9804 c 0,0 6.36256,3.04086 18.08072,7.16245 -7.32096,-1.50649 -6.65417,7.91571 -6.65417,7.91571 l -19.41726,-9.34428 c -0.41667,-3.63095 3.40737,-6.38864 7.99071,-5.73388 z" + id="path5172" + sodipodi:nodetypes="ccccc" + transform="matrix(-1.25594,0,0,1.25594,724.3889,269.23803)" /> + <path + style="fill:none;stroke:url(#linearGradient5324-4);stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter5314-9)" + d="m 139.39266,254.34783 c 47.30031,54.38655 232.48206,49.24951 277.05963,2.02031" + id="path5256" + sodipodi:nodetypes="cc" + transform="matrix(-1,0,0,1,703.9369,365.83823)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + id="path5358" + sodipodi:cx="433.35544" + sodipodi:cy="338.62177" + sodipodi:rx="2.0203052" + sodipodi:ry="1.5152289" + d="m 435.37574,338.62177 c 0,0.83683 -0.90452,1.51522 -2.0203,1.51522 -1.11579,0 -2.02031,-0.67839 -2.02031,-1.51522 0,-0.83684 0.90452,-1.51523 2.02031,-1.51523 1.11578,0 2.0203,0.67839 2.0203,1.51523 z" + transform="matrix(-1.81877,0.968713,0.968713,1.81877,728.9009,-361.25574)" /> + <path + id="path5959" + d="m 520.08808,494.01789 c -2.60916,27.60303 -8.4112,63.88319 -16.98853,103.85774 l -44.08063,-10.08135 c 9.65104,-39.729 20.1957,-74.9245 29.84412,-100.91764 l 31.22504,7.14125 z" + style="fill:url(#radialGradient5987-8);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" /> + <path + sodipodi:nodetypes="cczzcczccc" + id="path5961" + d="m 519.06013,488.99873 c 0.0569,-2.13085 3.54112,-15.4835 3.54112,-15.4835 -1.40507,-3.89444 -1.86857,-6.57307 -2.89483,-11.81013 -1.02625,-5.23706 -2.09428,-9.02203 -2.50149,-17.29423 l -0.53369,-10.84138 -5.00183,-0.71516 -5.28624,9.93912 c -4.06374,7.64058 -8.3703,16.52292 -10.09082,23.41856 l -3.50482,17.20689 26.2726,5.57983 z" + style="fill:url(#linearGradient5989-9);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.19753101;display:inline" /> + <path + id="path5963" + d="m 515.93631,493.38893 c -3.68011,27.10252 -10.15859,62.81954 -18.78574,102.32473 l -30.18929,-6.90436 c 9.40218,-39.32796 19.09281,-74.31034 27.55922,-100.31822 l 21.41581,4.89785 z m -73.33433,284.21004 c -1.34001,1.6786 -2.51435,2.5024 -3.47147,2.2835 -0.70448,-0.1611 -1.26679,-0.8683 -1.70923,-2.0579 0.4731,0.4286 0.98069,0.7372 1.53355,0.8637 1.09623,0.2507 2.32408,-0.1542 3.64715,-1.0893 z" + style="fill:url(#radialGradient5991-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible" /> + <path + sodipodi:nodetypes="ccccc" + id="path5965" + d="m 522.55209,485.86674 c -9.834,-4.80458 -23.22562,-7.2284 -32.39536,-7.4089 l -2.35639,10.30329 c 9.91843,0.67116 24.39836,3.98275 32.39536,7.4089 l 2.35639,-10.30329 z" + style="fill:url(#linearGradient5995-5);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.32098802;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" /> + <path + style="fill:url(#linearGradient43391-5);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.32098802;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + d="m 503.42317,598.09375 c -13.96359,-4.85636 -32.32693,-8.64041 -44.66695,-10.21545 l -1.53328,6.70425 c 13.42284,2.03055 33.38789,6.59661 44.66695,10.21545 l 1.53328,-6.70425 z" + id="path5969" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:type="arc" + style="fill:#efefef;fill-opacity:0.62551395;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" + id="path5971" + sodipodi:cx="612.05359" + sodipodi:cy="156.78572" + sodipodi:rx="1.5178572" + sodipodi:ry="1.6071428" + d="m 613.57145,156.78572 c 0,0.8876 -0.67957,1.60714 -1.51786,1.60714 -0.83829,0 -1.51786,-0.71954 -1.51786,-1.60714 0,-0.8876 0.67957,-1.60714 1.51786,-1.60714 0.83829,0 1.51786,0.71954 1.51786,1.60714 z" + transform="matrix(-1.20827,-0.276335,-0.275259,1.20357,1289.9109,443.94023)" /> + <path + transform="matrix(-1.14535,-0.261944,-0.260924,1.14089,1249.3309,444.32933)" + d="m 613.57145,156.78572 c 0,0.8876 -0.67957,1.60714 -1.51786,1.60714 -0.83829,0 -1.51786,-0.71954 -1.51786,-1.60714 0,-0.8876 0.67957,-1.60714 1.51786,-1.60714 0.83829,0 1.51786,0.71954 1.51786,1.60714 z" + sodipodi:ry="1.6071428" + sodipodi:rx="1.5178572" + sodipodi:cy="156.78572" + sodipodi:cx="612.05359" + id="path5973" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path5977" + d="m 520.84282,491.25368 c -9.47219,-4.5702 -22.35201,-6.91488 -31.16445,-7.12739" + style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.69135796;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" /> + <path + style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.20164597;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + d="m 521.42769,491.0163 c -9.834,-4.80458 -23.22562,-7.2284 -32.39536,-7.4089" + id="path5975" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.69135796;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + d="m 521.96887,486.15147 c -9.47219,-4.5702 -22.35201,-6.91488 -31.16445,-7.12739" + id="path5979" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.69135796;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + d="m 516.09019,434.32457 -4.05902,-0.61122" + id="path5981" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path5983" + d="m 514.10686,433.48941 -6.46224,28.25608" + style="opacity:0.59683802;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" /> + <path + style="opacity:0.77470398;fill:none;stroke:url(#linearGradient6064-8);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="m 560.7228,546.55252 -9.28571,10.71428" + id="path6056" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:url(#linearGradient6086-3);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.263374;stroke-dasharray:none;display:inline" + d="m 501.67812,597.35736 c 6.54762,-32.08333 13.20238,-67.34524 17.25,-101.03571" + id="path6078" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path6092" + d="m 449.41425,650.47377 c 6.0062,-32.18906 13.27912,-72.99547 22.20633,-105.73285" + style="fill:none;stroke:url(#linearGradient6094-0);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.263374;stroke-dasharray:none;display:inline" /> + <path + style="fill:none;stroke:url(#linearGradient6098-8);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.263374;stroke-dasharray:none;display:inline" + d="m 480.46102,575.42903 c -5.23235,-5.59355 -12.63872,-18.04534 -9.20356,-30.04401" + id="path6096" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.51456305;fill:#444444;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter6142-8)" + d="m 388.12852,503.22134 c -2.06637,-1.10572 -4.19128,-2.66859 -6.35203,-5.16554 -2.34118,-2.70547 -3.08271,-4.68769 -4.98021,-7.72594 1.22667,5.47919 2.76001,9.11307 4.79858,10.98097 2.03856,1.86791 4.83081,2.78785 6.53366,1.91051 z" + id="path6100" + sodipodi:nodetypes="czczc" + transform="matrix(-1.58954,-0.693241,0.135502,1.03686,856.4689,613.16423)" /> + <path + style="opacity:0.40711502;fill:url(#radialGradient6448-7);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter6636-9)" + d="m 160.71107,284.07551 c 0,0 11.55186,5.56972 16.88009,7.29537 -2.61995,1.15743 0.66364,9.29502 0.66364,9.29502 -5.89524,0.2612 -23.17841,-1.25053 -23.74896,-8.50245 0.66363,-6.49269 1.93778,-9.74093 6.20523,-8.08794 z" + id="path6446" + sodipodi:nodetypes="ccccc" + transform="matrix(1.25594,0,0,1.25594,113.4414,271.50873)" /> + <path + style="fill:url(#linearGradient6768-6);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 443.91199,381.66652 c 0,0 13.35806,-2.87344 17.48752,-1.64286 4.49905,1.3407 11.09483,4.43749 12.80804,10.98528 1.7132,6.54779 -7.62571,23.60354 -3.82234,29.48853 3.80333,5.88498 8.32313,6.62697 16.24797,4.92628 7.92153,-1.69999 20.61001,-7.60572 25.60553,-6.93228 4.9733,0.67045 9.55756,2.94492 10.70887,7.81571 1.22977,5.20274 -10.38392,7.63469 -10.38392,7.63469 0,0 6.06384,-5.00633 1.87983,-7.28671 -4.18402,-2.2804 -9.54926,-3.20562 -17.39833,-1.13617 -8.35449,2.20271 -17.23799,4.266 -23.18046,2.97308 -5.94248,-1.29292 -10.97479,-5.20922 -13.56789,-9.9857 -2.59307,-4.77646 -3.75379,-9.10769 -0.27017,-17.33681 3.20851,-7.57925 5.14107,-10.71538 0.0377,-15.63887 -5.41337,-5.2226 -16.15235,-3.86417 -16.15235,-3.86417 z" + id="path6752" + sodipodi:nodetypes="czzzzzzczzzzzzc" /> + <path + style="fill:none;stroke:url(#radialGradient28778-0);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="m 561.41478,547.12883 c 0,0 20.52867,0.0144 32.22129,-9.75038 11.69263,-9.76476 -3.02505,20.81467 0.0579,33.56633 3.18144,13.15919 20.41074,11.23763 20.06068,-10.87523 -0.3401,-21.48311 16.9579,-68.54522 17.53676,-46.53343 0.58332,22.18059 19.71111,-18.09097 5.58712,-29.92392" + id="path6778" + sodipodi:nodetypes="czzzzz" /> + <path + style="fill:none;stroke:#057ff4;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="m 245.19427,445.95335 -57.37553,25.30451" + id="path6786" + sodipodi:nodetypes="cc" /> + <path + style="fill:url(#linearGradient43726-5);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 252.88506,487.72035 c 1.45546,-0.12294 2.81819,-0.0852 4.04273,0.0942 l 75.20642,120.49518 -35.44426,4.41973 -67.28751,-107.75212 c 2.30497,-9.69797 13.29012,-15.80175 21.99415,-17.07143 0.50215,-0.0733 1.00332,-0.14466 1.48847,-0.1856 z" + id="rect5332" /> + <path + style="fill:url(#radialGradient43723-6);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 316.55211,629.10129 c -4.6342,-1.77808 -8.07894,-4.59896 -13.42149,-7.72833 -9.04994,-11.37819 -16.33212,-24.8777 -24.49818,-37.31655 l 17.7281,3.38826 25.39369,32.20818 -5.20212,9.44844 z" + id="path5684" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:0.84189681;fill:none;stroke:url(#linearGradient43720-1);stroke-width:4.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="m 254.26436,491.57515 c -2.73205,5.76659 -14.63382,12.27397 -20.73782,13.31384" + id="path5401" + sodipodi:nodetypes="cc" /> + <path + style="fill:url(#linearGradient43717-0);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 234.15533,481.86221 c 6.60236,-4.12229 12.91111,-6.00775 14.04475,-4.19209 0.49647,0.79517 6.03746,9.66976 6.53124,10.46062 1.13364,1.81566 -3.3301,6.65614 -9.93246,10.77843 -6.60237,4.12229 -12.87411,5.98465 -14.00774,4.169 -0.49544,-0.79351 -6.03478,-9.66546 -6.53126,-10.46064 -1.13362,-1.81565 3.29311,-6.63305 9.89547,-10.75532 z" + id="path5354" + sodipodi:nodetypes="csssssc" /> + <path + id="path5370" + d="m 233.938,481.70908 c 6.60236,-4.12228 12.91113,-6.00774 14.04476,-4.19208 1.13362,1.81564 -3.33011,6.65615 -9.93247,10.77843 -6.60237,4.12228 -12.87412,5.98464 -14.00774,4.16899 -1.13364,-1.81566 3.29309,-6.63303 9.89545,-10.75534 z" + style="fill:url(#linearGradient43714-6);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + sodipodi:nodetypes="csssssc" + id="path5373" + d="m 221.79213,462.36034 c 1.24211,-0.77553 2.52567,-0.97539 2.85776,-0.44352 0.14543,0.23295 13.12154,21.01584 13.26619,21.24751 0.33209,0.53188 -0.411,1.59737 -1.65311,2.3729 -1.24211,0.77553 -2.5187,0.97105 -2.85078,0.43922 -0.14513,-0.23245 -13.12076,-21.01456 -13.26619,-21.24751 -0.33209,-0.53186 0.40403,-1.59302 1.64613,-2.36855 z" + style="fill:url(#linearGradient43711-2);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + sodipodi:nodetypes="csc" + id="path5423" + d="m 254.77156,487.95676 c 1.13363,1.81565 -3.33012,6.65613 -9.93248,10.77843 -6.60235,4.1223 -12.87411,5.98465 -14.00773,4.169" + style="opacity:0.58498003;fill:none;stroke:#166c8c;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> + <path + sodipodi:nodetypes="csssssc" + id="path5443" + d="m 220.29153,459.90132 c 0.90089,-0.56247 1.76169,-0.81973 1.91638,-0.57199 0.0677,0.10849 1.78361,2.85669 1.85099,2.9646 0.15467,0.24773 -0.45438,0.9082 -1.35527,1.47068 -0.90088,0.56248 -1.75663,0.81659 -1.91132,0.56886 -0.0676,-0.10829 -1.78324,-2.85611 -1.85099,-2.96461 -0.15468,-0.24774 0.44933,-0.90506 1.35021,-1.46754 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + style="opacity:0.50197604;fill:none;stroke:url(#radialGradient43706-7);stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="M 333.64336,632.37083 258.69073,512.94315" + id="path5720" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path5730" + d="m 263.33771,553.35119 -45.89142,-74.1352" + style="opacity:0.26666703;fill:none;stroke:url(#radialGradient43703-3);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + <path + sodipodi:nodetypes="csc" + id="path6750" + d="m 247.46613,477.58092 c 1.70749,2.11893 -2.68134,7.24953 -9.76423,11.42496 -7.08293,4.17542 -14.21101,5.83403 -15.91848,3.71512" + style="opacity:0.58498003;fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="m 220.99747,410.78687 c 0,0 15.19842,39.38837 -2.34971,46.76416 -17.60964,7.40166 -45.60675,-31.15816 -45.60675,-31.15816" + id="path6780" + sodipodi:nodetypes="czc" /> + <rect + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + id="rect6782" + width="4.6428576" + height="4.6428576" + x="-164.12054" + y="478.47098" + transform="matrix(-0.99272789,0.12037999,0.12037999,0.99272789,0,0)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + id="path6788" + sodipodi:cx="428.30469" + sodipodi:cy="67.900871" + sodipodi:rx="2.2728431" + sodipodi:ry="2.2728431" + d="m 430.57753,67.900871 c 0,1.255257 -1.01759,2.272843 -2.27284,2.272843 -1.25526,0 -2.27285,-1.017586 -2.27285,-2.272843 0,-1.255256 1.01759,-2.272843 2.27285,-2.272843 1.25525,0 2.27284,1.017587 2.27284,2.272843 z" + transform="matrix(-0.980398,-0.197026,-0.197026,0.980398,679.0759,463.37473)" /> + <path + transform="matrix(-0.980398,-0.197026,-0.197026,0.980398,620.5609,489.22323)" + d="m 430.57753,67.900871 c 0,1.255257 -1.01759,2.272843 -2.27284,2.272843 -1.25526,0 -2.27285,-1.017586 -2.27285,-2.272843 0,-1.255256 1.01759,-2.272843 2.27285,-2.272843 1.25525,0 2.27284,1.017587 2.27284,2.272843 z" + sodipodi:ry="2.2728431" + sodipodi:rx="2.2728431" + sodipodi:cy="67.900871" + sodipodi:cx="428.30469" + id="path6790" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <rect + transform="matrix(-0.78708613,-0.61684311,-0.61684311,0.78708613,0,0)" + y="185.19923" + x="-429.55182" + height="4.6428561" + width="4.6428561" + id="rect6802" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" /> + <rect + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + id="rect6804" + width="4.6428561" + height="4.6428561" + x="-401.65945" + y="226.45753" + transform="matrix(-0.78708613,-0.61684311,-0.61684311,0.78708613,0,0)" /> + <path + sodipodi:nodetypes="cc" + id="path7085" + d="m 361.15251,523.29885 c -3.50379,2.86056 -14.20475,4.53417 -18.63785,4.08536" + style="opacity:0.84189681;fill:none;stroke:url(#radialGradient43769-2);stroke-width:4.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + <path + sodipodi:nodetypes="csssssc" + id="path7087" + d="m 349.28072,512.01776 c 6.42568,-1.30448 11.84069,-1.52226 12.05319,-0.48209 0.0931,0.45554 1.50955,7.40715 1.6021,7.86021 0.2125,1.04018 -4.85668,2.95082 -11.28237,4.25531 -6.42568,1.30449 -11.80468,1.51494 -12.01717,0.47478 -0.0929,-0.45459 -1.50904,-7.40467 -1.60211,-7.86022 -0.21248,-1.04015 4.82067,-2.9435 11.24636,-4.24799 z" + style="fill:url(#linearGradient12043-4);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + style="fill:url(#linearGradient12040-6);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 349.3644,511.8403 c 6.42587,-1.30354 11.80235,-1.71179 11.9673,-0.90664 0.16494,0.80513 -4.94311,2.52377 -11.36896,3.82731 -6.42589,1.30354 -11.76635,1.70448 -11.9313,0.89934 -0.16492,-0.80514 4.90708,-2.51646 11.33296,-3.82001 z" + id="path7089" /> + <path + style="opacity:0.351779;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" + d="m 362.87843,519.6482 c 0.17978,0.87849 -4.91614,2.65703 -11.34195,3.96088 -6.4258,1.30385 -11.77831,1.64533 -11.95808,0.76685" + id="path7091" + sodipodi:nodetypes="csc" /> + <path + style="opacity:0.12380999;fill:none;stroke:url(#radialGradient12036-7);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="m 346.28298,571.36697 -9.14087,-45.82568" + id="path7093" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="csc" + id="path7095" + d="m 361.45864,510.96053 c 0.1798,0.87849 -4.91614,2.65704 -11.34193,3.96088 -6.42582,1.30385 -11.77832,1.64532 -11.95811,0.76684" + style="opacity:0.58498003;fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> + <path + id="path7097" + style="fill:url(#linearGradient12032-1);fill-opacity:1;fill-rule:evenodd;stroke:#6f6e6c;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.46502099;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + d="m 309.15827,481.13058 c 4.3735,21.61524 22.0504,36.29957 39.45735,32.77754 17.40695,-3.52203 27.98482,-23.92327 23.61132,-45.53851 -4.3735,-21.61522 -22.0504,-36.29956 -39.45736,-32.77754 -17.40694,3.52203 -27.98482,23.92328 -23.61131,45.53851 z m 3.67552,-0.74368 c 3.86527,19.10334 19.48305,32.08222 34.86112,28.97071 15.37806,-3.11151 24.72179,-21.14097 20.85653,-40.24432 -3.86528,-19.10334 -19.48306,-32.08222 -34.86112,-28.97071 -15.37807,3.11151 -24.72179,21.14097 -20.85653,40.24432 z" /> + <path + sodipodi:nodetypes="csssc" + d="m 313.48643,480.61163 c 3.76201,19.08834 19.58655,31.92819 35.32263,28.6604 15.73607,-3.26781 25.45417,-21.41192 21.69215,-40.50027 -3.76202,-19.08831 -19.58656,-31.92817 -35.32264,-28.66037 -15.73608,3.26781 -25.45416,21.41192 -21.69214,40.50024 z" + style="fill:url(#radialGradient12029-8);fill-opacity:1;fill-rule:evenodd;stroke:#6f6e6c;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.46502099;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + id="path7081" /> + <path + d="m 312.83378,480.38689 c 4.3735,21.61524 22.05041,36.29957 39.45736,32.77754 17.40695,-3.52202 27.98483,-23.92327 23.61132,-45.53851 -4.37351,-21.61522 -22.05041,-36.29956 -39.45735,-32.77753 -17.40696,3.52203 -27.98483,23.92328 -23.61133,45.5385 z m 3.67553,-0.74368 c 3.86527,19.10335 19.48305,32.08222 34.86111,28.97071 15.37807,-3.11151 24.7218,-21.14096 20.85653,-40.24431 -3.86526,-19.10334 -19.48304,-32.08223 -34.86111,-28.97072 -15.37806,3.11152 -24.72179,21.14097 -20.85653,40.24432 z" + style="fill:url(#linearGradient12024-3);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12026-1);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.46502099;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" + id="path7099" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient12020-1);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" + id="path7283" + sodipodi:cx="124.27402" + sodipodi:cy="101.74098" + sodipodi:rx="14.672466" + sodipodi:ry="11.313708" + d="m 138.94648,101.74098 c 0,6.24839 -6.56908,11.31371 -14.67246,11.31371 -8.10338,0 -14.67247,-5.06532 -14.67247,-11.31371 0,-6.248387 6.56909,-11.313706 14.67247,-11.313706 8.10338,0 14.67246,5.065319 14.67246,11.313706 z" + transform="matrix(0.990797,0.135355,-0.135355,0.990797,231.9579,339.86413)" /> + <path + style="opacity:0.359184;fill:url(#radialGradient7344-8);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline;filter:url(#filter3283-0)" + d="m 507.20476,468.57286 -26.14284,95.53848 14.59576,24.27303 25.88451,-28.86774 17.66831,-102.86709 -32.00574,11.92332 z" + id="path7342" + transform="matrix(-0.783362,0,0,0.717173,736.0169,310.09333)" + sodipodi:nodetypes="cccccc" /> + <path + sodipodi:type="arc" + style="opacity:0.62135901;fill:url(#radialGradient3563-4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.4000001;marker:none;visibility:visible;display:inline;overflow:visible" + id="path3555" + sodipodi:cx="392.62103" + sodipodi:cy="335.263" + sodipodi:rx="7.2478447" + sodipodi:ry="8.6620579" + d="m 399.86888,335.263 c 0,4.78392 -3.24497,8.66206 -7.24785,8.66206 -4.00287,0 -7.24784,-3.87814 -7.24784,-8.66206 0,-4.78392 3.24497,-8.66206 7.24784,-8.66206 4.00288,0 7.24785,3.87814 7.24785,8.66206 z" + transform="matrix(1.73248,-0.129603,-0.15688,-2.35528,-322.64706,1543.4783)" /> + <path + transform="matrix(1.73248,-0.129603,-0.15688,-2.35528,-315.30106,1694.1083)" + d="m 399.86888,335.263 c 0,4.78392 -3.24497,8.66206 -7.24785,8.66206 -4.00287,0 -7.24784,-3.87814 -7.24784,-8.66206 0,-4.78392 3.24497,-8.66206 7.24784,-8.66206 4.00288,0 7.24785,3.87814 7.24785,8.66206 z" + sodipodi:ry="8.6620579" + sodipodi:rx="7.2478447" + sodipodi:cy="335.263" + sodipodi:cx="392.62103" + id="path3573" + style="opacity:0.62135901;fill:url(#radialGradient3575-8);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.4000001;marker:none;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="czczc" + id="path3577" + d="m 300.36804,708.82417 c 2.17612,1.589 3.32155,2.6527 7.00751,4.3321 3.93282,1.7919 6.25535,0.8722 8.45314,2.2892 -4.89401,1.1212 -7.14334,0.7866 -9.72012,-0.317 -2.57677,-1.1035 -4.93683,-3.9267 -5.74053,-6.3043 z" + style="opacity:0.44174799;fill:#b9b9b9;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + style="opacity:0.44174799;fill:#b9b9b9;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 304.61068,863.35207 c 2.17612,1.589 3.32155,2.6527 7.00751,4.3322 3.93282,1.7919 6.25535,0.8721 8.45314,2.2892 -4.89401,1.1212 -7.14334,0.7865 -9.72012,-0.317 -2.57677,-1.1036 -4.93683,-3.9268 -5.74053,-6.3044 z" + id="path3579" + sodipodi:nodetypes="czczc" /> + <path + style="fill:url(#linearGradient2194-9);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 311.54494,538.99584 c 1.56515,0.0939 3.00673,0.34414 4.2795,0.72336 l 44.98185,103.37657 c -15.81042,-3.1703 -31.20451,-7.92594 -43.18415,-13.42604 l -33.7099,-75.98418 c 3.95982,-9.93466 16.57948,-14.71722 26.02273,-14.7223 0.5448,-3.1e-4 1.08827,10e-4 1.60997,0.0326 l 0,-10e-6 z" + id="path6336" + sodipodi:nodetypes="cccccscc" /> + <path + style="opacity:0.84189681;fill:none;stroke:url(#linearGradient2191-7);stroke-width:4.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="m 312.66242,544.35825 c -1.45131,6.6712 -18.69233,12.68054 -23.97776,11.21469" + id="path6338" + sodipodi:nodetypes="cc" /> + <path + style="fill:url(#linearGradient2188-2);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 292.69831,530.68098 c 7.6539,-3.35948 14.96321,-3.66804 16.27223,-0.67931 0.57326,1.30891 3.93609,8.97219 4.50625,10.27401 1.30902,2.98873 -3.86987,8.1615 -11.52378,11.52097 -7.65392,3.35948 -14.92034,3.64922 -16.22932,0.66052 -0.5721,-1.30619 -3.933,-8.96511 -4.50629,-10.27404 -1.30898,-2.98869 3.82699,-8.14267 11.48091,-11.50215 z" + id="path6340" + sodipodi:nodetypes="csssssc" /> + <path + id="path6342" + d="m 292.67961,530.57721 c 7.65391,-3.35948 14.96324,-3.66801 16.27224,-0.67931 1.309,2.98872 -3.86989,8.16151 -11.52379,11.52097 -7.65392,3.35947 -14.92033,3.64922 -16.22933,0.66052 -1.309,-2.98872 3.82697,-8.14265 11.48088,-11.50218 z" + style="fill:url(#linearGradient2185-4);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + sodipodi:nodetypes="csssssc" + id="path6344" + d="m 284.73149,512.86406 c 2.07946,-0.91056 3.97544,-1.19893 4.2207,-0.64052 0.10742,0.24459 9.69043,22.06622 9.79726,22.30946 0.24525,0.55847 -1.2516,1.75574 -3.33106,2.66629 -2.07945,0.91054 -3.96378,1.19383 -4.20902,0.63532 -0.10725,-0.24406 -9.68985,-22.06487 -9.79725,-22.30945 -0.24526,-0.55845 1.23993,-1.75062 3.31936,-2.66118 z" + style="fill:url(#linearGradient2182-5);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:7;marker:none;visibility:visible;display:inline;overflow:visible" /> + <path + sodipodi:nodetypes="csc" + id="path6346" + d="m 313.2998,540.20969 c 1.39739,3.19094 -3.70931,8.52892 -11.36284,11.88922 -7.65356,3.36032 -14.99162,3.48612 -16.389,0.2952" + style="opacity:0.351779;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#787878;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 261.04613,515.42568 3.7494,5.6996 24.61352,2.91149 -2.95238,-6.31088 -25.41054,-2.30021 z" + id="path6350" /> + <path + id="path6352" + d="m 266.69427,513.95371 3.74938,5.69962 3.83336,-1.31856 23.87549,-8.2125 -2.9524,-6.31086 -28.50583,10.1423 z" + style="fill:url(#linearGradient2177-9);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="cccccc" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#5a5a5a;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 284.86008,520.41395 4.70457,-7.48591 -2.98794,-6.65415 -4.95082,8.97978 3.23419,5.16028 z" + id="path6354" /> + <path + id="path6356" + d="m 261.04613,515.42568 3.7494,5.6996 24.61352,2.91149 -2.95238,-6.31088 -25.41054,-2.30021 z" + style="fill:url(#linearGradient2173-8);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#b8b8b8;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 285.1643,519.27964 2.66882,6.10633 2.48675,0.25523 -3.07276,-6.69866 -2.08282,0.33706 z" + id="path6358" /> + <path + style="font-size:12px;font-style:normal;font-weight:normal;fill:url(#linearGradient2169-8);fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Serif" + d="m 279.47121,515.40623 4.78099,-7.61241 -17.64911,6.40497 12.86812,1.20744 m 7.94491,3.88198 -2.27811,0.38796 1.14291,-1.81978 -25.16658,-2.31345 1.46573,-2.33376 34.45811,-12.48082 1.28249,-2.04201 2.2781,-0.38795 -4.73739,7.54299 -2.27809,0.38796 1.44826,-2.30596 -8.13957,2.93695 -5.47895,8.72377 5.95846,0.53586 1.43082,-2.27818 2.27807,-0.38795 -3.66426,5.83436" + id="path6360" /> + <path + id="path6362" + d="m 293.33142,506.25293 2.19557,6.18257 2.48672,0.25523 -2.59947,-6.7749 -2.08282,0.33706 z" + style="fill:#b1b2b2;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#6a6a6a;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 290.10767,525.65713 3.51635,-6.05357 -2.57305,-6.00358 -3.72153,5.62128 2.77823,6.43587 z" + id="path6364" /> + <path + id="path6366" + d="m 297.97571,512.58165 4.23131,-7.40967 -1.78703,-6.67306 -4.87875,7.61089 2.43447,6.47184 z" + style="fill:#6d6d6d;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cc" + id="path6368" + d="m 285.91533,517.96141 -24.35375,-2.38868" + style="fill:none;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="m 287.6449,519.48601 -2.43652,-0.18472" + id="path6370" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path6372" + d="m 295.65732,506.37723 -2.43654,-0.18472" + style="fill:none;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + <path + style="opacity:0.58498003;fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" + d="m 308.77723,529.86181 c 1.39739,3.19095 -3.70932,8.52892 -11.36284,11.88924 -7.65356,3.3603 -14.99163,3.48611 -16.38901,0.29519" + id="path6374" + sodipodi:nodetypes="csc" /> + <path + sodipodi:nodetypes="cccccscc" + id="path6640" + d="m 311.14771,538.5672 c 1.56514,0.0939 3.00673,0.34414 4.27949,0.72336 l 37.10685,101.87654 c -14.31042,-3.04527 -24.32951,-7.05092 -34.93414,-11.92601 l -34.0849,-75.98418 c 3.95981,-9.93466 16.57948,-14.71722 26.02273,-14.7223 0.54479,-3.1e-4 1.08826,10e-4 1.60997,0.0326 l 0,-1e-5 z" + style="opacity:0.57707502;fill:url(#radialGradient2159-2);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + <path + style="opacity:0.50197604;fill:none;stroke:url(#radialGradient2156-4);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="M 349.38853,629.39798 313.00155,546.3879" + id="path6806" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path6348" + d="M 319.22021,627.26195 290.65565,560.69733" + style="opacity:0.22380999;fill:none;stroke:url(#radialGradient2111-2);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + <path + style="stroke-width:1px;display:inline" + d="m 412.7709,521.58823 17.75,-52.75" + id="path43767" /> + <g + style="fill:url(#linearGradient7569);fill-opacity:1;stroke:none;display:inline" + id="g46090" + transform="translate(135.5209,365.83823)"> + <path + d="m 400.94495,429.85908 c -4.77168,8.43307 0.30899,11.32562 4.70918,4.72142 0.96523,-2.11039 0.1143,-6.46069 -4.70918,-4.72142 z m -83.73535,29.73201 c 5.19693,3.84302 13.01018,-2.0692 15.28294,-8.17566 -4.98294,-5.78339 -23.59203,1.96874 -15.28294,8.17566 z m 85.70531,-36.77855 c -0.0534,2.86472 13.21632,-6.01269 13.39774,-11.4467 -1.45918,-7.02517 -11.49375,1.51579 -13.39774,11.4467 z m -56.39945,-90.25159 c -18.78388,21.74535 -37.87081,42.18486 -57.08227,61.60327 -19.42167,22.97391 13.59233,19.73899 27.87576,25.49733 5.12209,4.48791 -19.48691,9.49489 -14.31308,14.18182 5.17457,4.64285 30.73946,7.18298 35.74014,11.51048 4.93232,4.27049 -10.03781,11.20957 -4.99859,15.62547 4.9847,4.36299 16.11237,-1.85519 18.26151,9.20526 1.51629,7.90553 18.92366,-0.52756 26.94397,-9.67218 4.12064,-6.44878 -8.15448,-2.0586 -3.84034,-8.28309 10.36279,-16.03733 19.27773,-12.12621 22.57525,-26.30716 1.61659,-7.05216 -14.15761,-2.99487 -10.0529,-9.63532 11.18385,-13.65339 40.66199,-46.60147 29.44101,-55.0147 -12.77968,-9.93075 -28.12381,-21.68923 -45.50817,-34.97704 -6.78058,-4.77481 -18.37788,-1.94251 -25.04229,6.26586 z m -12.62396,88.56879 c 1.52874,0.73019 23.90769,1.61648 29.14969,1.3561 1.79291,-0.0319 0.53454,2.23794 -1.94008,4.13759 -5.66817,2.76534 -34.66672,-4.69593 -27.20961,-5.49369 z m 34.47753,-89.86054 c 6.92366,5.29674 13.6101,10.39708 20.02899,15.28871 1.77287,1.36461 1.71428,5.54822 0.70976,7.18904 -3.12604,-1.60429 -6.32041,-3.26433 -9.57966,-4.97849 -0.65689,4.57078 -1.31295,9.13704 -1.9682,13.6988 -2.77993,-0.68301 -5.59821,-1.40335 -8.45298,-2.1602 -4.61786,4.36466 -9.29907,8.62028 -14.03908,12.77003 -1.64001,-6.12603 -3.29175,-12.25425 -4.95458,-18.38464 -2.58277,5.01151 -5.17505,9.98934 -7.77662,14.93416 -4.06846,0.64003 -8.16359,1.22551 -12.2819,1.75816 -5.06208,0.58206 -5.7311,-5.47894 -1.17782,-10.39547 7.89871,-9.38101 16.88506,-19.38755 21.71772,-25.27539 4.81941,-6.02488 13.15563,-7.97974 17.77437,-4.44471 z" + style="fill:url(#linearGradient6241);fill-opacity:1;stroke:none" + id="path46092" /> + <path + d="m 284.14026,495.30866 c 10e-4,-0.15375 0.002,-0.30751 0.003,-0.46127 0.005,-0.66799 0.2013,-0.736 1.94702,-0.63719 0.14567,0.008 0.29137,0.0154 0.43709,0.0229 0.003,-0.24876 0.005,-0.49752 0.008,-0.74628 -2.41063,-0.13684 -4.81333,-0.29561 -7.20722,-0.47617 0,0.25046 0,0.50092 0,0.75139 0.14425,0.0114 0.28854,0.0227 0.43286,0.034 1.75584,0.13039 1.95086,0.22419 1.94852,0.89372 -5.4e-4,0.15411 -10e-4,0.30822 -0.002,0.46234 -0.009,2.52986 -0.0177,5.05972 -0.0265,7.58958 -5.4e-4,0.15416 -0.001,0.30832 -0.002,0.46248 -0.002,0.66946 -0.1951,0.73769 -1.92521,0.62584 -0.14218,-0.01 -0.28432,-0.0194 -0.42642,-0.0292 0,0.25044 0,0.50088 0,0.75132 2.35355,0.15137 4.71715,0.28397 7.08988,0.39763 0.003,-0.24873 0.005,-0.49746 0.008,-0.7462 -0.14376,-0.006 -0.28749,-0.0129 -0.4312,-0.0194 -1.72177,-0.0841 -1.91459,-0.17405 -1.90994,-0.84197 0.001,-0.1538 0.002,-0.3076 0.003,-0.46141 0.0176,-2.52403 0.0351,-5.04806 0.0527,-7.57209 z m 14.30087,-1.47226 c -1.51702,-0.0145 -3.03276,-0.0377 -4.547,-0.0697 -0.005,0.24761 -0.01,0.49522 -0.0147,0.74283 0.18354,0.004 0.36711,0.008 0.5507,0.0125 1.12391,0.0218 1.62826,0.15648 2.01603,0.55733 -0.0512,2.23615 -0.10246,4.4723 -0.15369,6.70844 -0.0496,2.1627 -0.49619,2.61556 -2.58741,2.64666 -0.005,0.24759 -0.01,0.49517 -0.0147,0.74275 2.06652,0.0314 4.13646,0.048 6.20924,0.0497 0.007,-0.24704 0.0135,-0.49407 0.0202,-0.74111 -2.07346,-0.0655 -2.4985,-0.52539 -2.44591,-2.68718 0.0475,-1.95132 0.0949,-3.90264 0.1424,-5.85395 3.1899,3.17277 6.36049,6.30201 9.51091,9.39104 0.30616,-0.009 0.61232,-0.018 0.91848,-0.0275 0.0988,-2.72603 0.19757,-5.45207 0.29636,-8.17811 0.0782,-2.15841 0.53679,-2.63011 2.66217,-2.77334 0.01,-0.24695 0.0192,-0.49391 0.0288,-0.74087 -2.10239,0.0795 -4.20551,0.14171 -6.30882,0.18685 -0.008,0.24689 -0.0159,0.49378 -0.0239,0.74068 2.09941,0.018 2.52593,0.46355 2.4504,2.62185 -0.0577,1.64916 -0.11543,3.29833 -0.17314,4.94749 -2.82946,-2.72501 -5.67514,-5.48302 -8.53641,-8.27639 z m 24.38526,5.23078 c 0.0719,-1.43488 0.14373,-2.86975 0.21559,-4.30463 0.008,-0.15296 0.0153,-0.30592 0.023,-0.45888 0.0333,-0.66453 0.23442,-0.76188 2.00913,-0.93045 0.1386,-0.0137 0.27718,-0.0275 0.41573,-0.0414 0.0129,-0.24829 0.0259,-0.49658 0.0388,-0.74487 -2.40374,0.23018 -4.81351,0.43673 -7.22845,0.61976 -0.0113,0.24743 -0.0227,0.49486 -0.034,0.74229 0.13218,-0.009 0.26435,-0.0188 0.3965,-0.0283 1.78235,-0.13522 1.97579,-0.0716 1.94398,0.5921 -0.007,0.15278 -0.0147,0.30556 -0.022,0.45835 -0.1202,2.508 -0.2404,5.01601 -0.3606,7.52401 -0.007,0.15283 -0.0147,0.30565 -0.022,0.45848 -0.0318,0.66368 -0.23107,0.75791 -1.99715,0.88581 -0.13093,0.009 -0.26189,0.0179 -0.39285,0.0268 -0.0113,0.24741 -0.0226,0.49482 -0.034,0.74222 2.38959,-0.17172 4.77463,-0.36504 7.15423,-0.58016 0.0129,-0.24826 0.0259,-0.49653 0.0388,-0.74479 -0.13736,0.0131 -0.27473,0.0261 -0.41213,0.039 -1.75919,0.15894 -1.95063,0.0964 -1.91735,-0.56805 0.008,-0.15301 0.0153,-0.30601 0.023,-0.45902 0.0335,-0.66992 0.0671,-1.33984 0.10065,-2.00977 0.87406,-0.6926 1.7483,-1.38857 2.62267,-2.08796 1.19021,1.2202 2.37552,2.43615 3.55585,3.64799 0.3246,0.3423 0.40351,0.45966 0.39464,0.61903 -0.0141,0.25383 -0.42971,0.41121 -1.48813,0.527 -0.22341,0.0238 -0.44688,0.0475 -0.67041,0.071 -0.0134,0.2486 -0.0268,0.4972 -0.0402,0.74581 2.46001,-0.26839 4.9113,-0.56095 7.35288,-0.87792 0.0149,-0.24996 0.0299,-0.49993 0.0448,-0.74989 -0.13543,0.0183 -0.27089,0.0366 -0.40638,0.0548 -1.17816,0.15471 -1.47233,0.0816 -2.05511,-0.52438 -1.63137,-1.6389 -3.2727,-3.2855 -4.92376,-4.94016 1.12286,-0.90582 2.24558,-1.81755 3.36804,-2.7353 1.08678,-0.9407 2.43438,-1.57393 3.73152,-1.75022 0.0148,-0.24981 0.0295,-0.49962 0.0443,-0.74943 -2.22248,0.29855 -4.45305,0.57597 -6.69102,0.83237 -0.0134,0.24861 -0.0268,0.49721 -0.0402,0.74582 0.18195,-0.02 0.36385,-0.0401 0.54571,-0.0603 1.00249,-0.11412 1.40758,-0.0192 1.3891,0.31428 -0.0123,0.22236 -0.47275,0.73369 -1.12871,1.26569 -1.84838,1.49339 -3.69673,2.97103 -5.54458,4.43331 z m 29.26613,-10.87747 c -0.25502,0.0582 -0.51026,0.11619 -0.7657,0.17381 -0.29945,0.38624 -0.599,0.77189 -0.89866,1.15696 -0.92679,-0.51645 -2.23626,-0.62228 -3.72517,-0.31869 -2.76298,0.53277 -4.71717,2.21938 -4.84713,4.22665 -0.11328,1.74966 0.9716,2.4181 4.02106,2.46017 0.6535,9.8e-4 1.30567,1.2e-4 1.95648,-0.003 1.51528,-0.009 1.65784,-0.007 2.07424,0.16062 0.59311,0.23997 0.88493,0.70369 0.84005,1.33621 -0.046,0.6486 -0.39259,1.24976 -1.0415,1.81821 -0.71432,0.61073 -1.40872,0.92747 -2.5491,1.15384 -1.54021,0.29509 -2.62236,0.1291 -3.55142,-0.53034 -0.8329,-0.6003 -1.22578,-1.27876 -1.46141,-2.46088 -0.30275,0.0521 -0.60572,0.10376 -0.9089,0.15502 -0.0703,1.52004 -0.14058,3.04016 -0.21097,4.56036 0.27407,-0.0454 0.54797,-0.091 0.82169,-0.13706 0.33922,-0.41773 0.67838,-0.83613 1.01747,-1.25521 1.34645,0.63558 2.49523,0.74363 4.30437,0.39896 3.03701,-0.61677 5.06471,-2.43097 5.2214,-4.60863 0.0725,-1.00749 -0.29674,-1.77087 -1.05483,-2.20874 -0.52735,-0.29928 -1.31435,-0.40017 -2.95291,-0.37501 -0.73321,0.006 -1.46815,0.01 -2.20481,0.0115 -1.84478,-0.0154 -2.68923,-0.4805 -2.62459,-1.46149 0.0742,-1.12547 1.32973,-2.12333 3.11903,-2.47174 1.46729,-0.29819 2.62321,-0.0625 3.39078,0.68132 0.5548,0.53303 0.87925,1.13189 1.08962,1.89958 0.29589,-0.0657 0.59149,-0.13185 0.88681,-0.19842 0.0182,-1.38838 0.0363,-2.77651 0.0541,-4.1644 z m 19.89606,-5.82319 c -0.24043,0.087 -0.48119,0.17361 -0.72227,0.25989 -0.28104,0.41791 -0.56232,0.83518 -0.84385,1.25183 -1.29188,-0.39461 -2.02381,-0.38952 -3.32381,0.0394 -1.89695,0.6038 -3.52464,1.72911 -4.97644,3.45891 -1.37124,1.61106 -2.07647,3.15505 -2.20557,4.84456 -0.26947,3.5263 2.32562,5.28773 6.16405,4.15007 3.06458,-0.98443 5.12254,-3.20793 5.78812,-6.16323 -0.29122,0.0605 -0.58295,0.12058 -0.87519,0.18012 -0.26201,0.94881 -0.53883,1.62692 -0.92092,2.24361 -0.8726,1.41084 -2.14144,2.39419 -3.69823,2.88964 -2.87514,0.8691 -4.11646,-0.43157 -3.84069,-3.96992 0.14499,-1.86029 0.53892,-3.19807 1.28771,-4.38622 0.68327,-1.10852 1.94605,-2.06434 3.19531,-2.46354 1.35731,-0.44666 2.50158,-0.23623 3.14229,0.57695 0.31767,0.42255 0.54992,0.97172 0.8812,2.10044 0.27767,-0.0981 0.55491,-0.19674 0.83172,-0.29581 0.0391,-1.57263 0.078,-3.14487 0.11657,-4.71671 z m 12.3277,-2.60348 c 0.50823,1.29525 1.01156,2.59066 1.50996,3.88621 -1.27931,0.62517 -2.57256,1.23771 -3.87945,1.83769 0.79182,-1.90157 1.58166,-3.80954 2.36949,-5.7239 z m 1.09936,-3.20275 c -0.24224,0.11911 -0.48498,0.23777 -0.72821,0.356 -1.63336,3.9364 -3.27529,7.84547 -4.92541,11.72721 -0.43345,1.03034 -0.51513,1.17867 -0.80691,1.56146 -0.31487,0.44066 -0.83565,0.85132 -1.3227,1.05043 -0.024,0.01 -0.048,0.0195 -0.072,0.0292 -0.0228,0.2638 -0.0455,0.5276 -0.0683,0.79139 1.58656,-0.65438 3.15515,-1.32615 4.70533,-2.01541 0.0236,-0.26577 0.0472,-0.53154 0.0708,-0.79731 -0.11643,0.0528 -0.23298,0.10549 -0.34963,0.15808 -0.94817,0.42207 -1.39698,0.3093 -1.34051,-0.33346 0.0179,-0.20312 0.0918,-0.46281 0.22161,-0.77998 0.23826,-0.58214 0.47635,-1.16486 0.71429,-1.74816 1.54792,-0.70488 3.07677,-1.42736 4.58611,-2.16751 0.23601,0.60947 0.47089,1.21896 0.70463,1.82846 0.0777,0.20497 0.1003,0.30711 0.0925,0.39313 -0.0249,0.27314 -0.4612,0.65694 -1.08601,0.96889 -0.2374,0.11726 -0.47531,0.23408 -0.71371,0.35045 -0.0241,0.26698 -0.0482,0.53397 -0.0722,0.80095 1.7471,-0.86725 3.46652,-1.759 5.15753,-2.67542 0.025,-0.26924 0.05,-0.53849 0.0749,-0.80773 -0.0758,0.042 -0.1516,0.084 -0.22748,0.12588 -0.81742,0.44623 -0.98526,0.40631 -1.27546,-0.35085 -1.08766,-2.82198 -2.20077,-5.64397 -3.33907,-8.46574 z m 13.39544,-1.87083 c 0.14372,-1.48591 0.28743,-2.97183 0.43114,-4.45774 0.0775,-0.80081 0.17501,-0.95129 0.98548,-1.53273 0.31187,-0.22748 0.62232,-0.45602 0.93134,-0.68563 1.4855,-1.13452 2.08866,-0.81901 1.90534,1.03872 -0.17815,1.80544 -0.9765,3.22323 -2.48638,4.36577 -0.5839,0.42774 -1.17289,0.8516 -1.76692,1.27161 z m -0.0792,0.81836 c 0.55457,-0.39134 1.10475,-0.78606 1.6505,-1.18416 1.28616,-0.96514 1.95932,-1.59923 2.54964,-2.37202 1.03537,-1.38771 1.69053,-2.96372 1.82866,-4.35181 0.13287,-1.33527 -0.24219,-1.95608 -1.09404,-1.79077 -0.50985,0.0853 -1.36646,0.57734 -2.35541,1.3294 -1.70627,1.24614 -3.4546,2.46047 -5.24395,3.64315 -0.0258,0.27135 -0.0516,0.54271 -0.0774,0.81407 0.093,-0.0599 0.18579,-0.11993 0.27852,-0.18001 1.24162,-0.81947 1.36989,-0.82423 1.29996,-0.095 -0.0161,0.16785 -0.0322,0.33569 -0.0483,0.50354 -0.26422,2.7553 -0.52845,5.51061 -0.79267,8.26591 -0.0161,0.1679 -0.0322,0.33579 -0.0483,0.50368 -0.0699,0.72913 -0.21394,0.90577 -1.44684,1.70315 -0.0921,0.0584 -0.18428,0.11679 -0.27657,0.17506 -0.0258,0.27134 -0.0516,0.54267 -0.0774,0.814 1.70471,-1.09965 3.3719,-2.22923 5.00066,-3.38897 0.0267,-0.27356 0.0534,-0.54713 0.0801,-0.8207 -0.12476,0.091 -0.24975,0.18187 -0.37497,0.27253 -1.18134,0.83834 -1.30517,0.84296 -1.23445,0.11184 0.0163,-0.16836 0.0326,-0.33671 0.0488,-0.50507 0.11115,-1.14926 0.22231,-2.29852 0.33346,-3.44779 z m 17.41263,-23.02785 c -2.11887,2.69446 -4.39085,5.29096 -6.81071,7.79024 -0.0282,0.27715 -0.0563,0.55431 -0.0845,0.83146 0.0745,-0.0733 0.1489,-0.14675 0.22315,-0.22026 0.99025,-1.00128 1.08953,-1.02436 1.01342,-0.28013 -0.0175,0.17131 -0.035,0.34261 -0.0526,0.51392 -0.28759,2.81211 -0.57519,5.62422 -0.86278,8.43634 -0.0175,0.17135 -0.0351,0.34271 -0.0526,0.51407 -0.0761,0.74415 -0.19279,0.94336 -1.17583,1.92821 -0.0737,0.0723 -0.14756,0.14445 -0.22153,0.21653 -0.0282,0.27713 -0.0563,0.55426 -0.0845,0.83139 2.44988,-2.50771 4.74647,-5.12192 6.8843,-7.84391 0.23416,-1.6804 0.46828,-3.36117 0.70237,-5.04233 -0.14715,0.20037 -0.29516,0.40019 -0.444,0.59945 -0.26344,1.42529 -0.61575,2.8425 -0.91817,3.68182 -0.39857,1.12677 -1.03889,2.21851 -1.95253,3.31228 -0.24374,0.28355 -0.48929,0.56586 -0.73665,0.84693 -0.34033,0.38143 -0.61524,0.59073 -0.70243,0.54426 -0.0697,-0.0181 -0.0703,-0.11259 -0.0319,-0.48529 0.15538,-1.50941 0.31076,-3.01882 0.46614,-4.52823 0.0772,-0.0844 0.15423,-0.16896 0.2311,-0.25361 0.69556,-0.77947 0.96572,-0.99511 1.15043,-0.88086 0.23945,0.12575 0.29027,0.56507 0.20324,1.58907 0.17123,-0.20436 0.34153,-0.40934 0.5109,-0.61495 0.20288,-1.94793 0.40577,-3.89586 0.60866,-5.8438 -0.17002,0.20695 -0.34098,0.41329 -0.51287,0.61902 -0.23632,1.81022 -0.75174,3.02539 -1.82846,4.24594 -0.0921,0.10167 -0.18449,0.20319 -0.27708,0.30454 0.13893,-1.34968 0.27787,-2.69935 0.4168,-4.04903 0.0786,-0.7635 0.19609,-1.00291 0.8171,-1.69611 0.19703,-0.22402 0.39295,-0.44877 0.58773,-0.67426 0.97154,-1.15633 1.41868,-1.56753 1.72841,-1.52366 0.29806,0.0195 0.44269,0.69404 0.42887,2.09697 0.14678,-0.19467 0.29275,-0.38986 0.43792,-0.58557 0.11302,-1.46027 0.22587,-2.92042 0.33853,-4.38044 z" + style="fill:url(#linearGradient6243);fill-opacity:1;stroke:none" + id="path46094" /> + </g> + <g + id="g46140" + style="display:inline" + transform="translate(135.5209,365.83823)"> + <path + sodipodi:nodetypes="cc" + id="path46118" + d="m 210.75033,215.8898 c 4.50549,5.13037 32.36754,-1.16957 32.79546,-6.47014" + style="opacity:0.295238;fill:none;stroke:#000000;stroke-width:1.02131999px;stroke-opacity:1" /> + <path + style="opacity:0.695238;fill:none;stroke:url(#radialGradient46138-5);stroke-width:1.02131999px;stroke-opacity:1" + d="m 211.10388,217.30401 c 4.50549,5.13037 32.36754,-1.16957 32.79546,-6.47014" + id="path46130" + sodipodi:nodetypes="cc" /> + </g> + <g + id="g46144" + transform="translate(137.64222,375.03062)" + style="display:inline"> + <path + style="opacity:0.295238;fill:none;stroke:#000000;stroke-width:1.02131999px;stroke-opacity:1" + d="m 210.75033,215.8898 c 4.50549,5.13037 32.36754,-1.16957 32.79546,-6.47014" + id="path46146" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path46148" + d="m 211.10388,217.30401 c 4.50549,5.13037 32.36754,-1.16957 32.79546,-6.47014" + style="opacity:0.695238;fill:none;stroke:url(#radialGradient46150-5);stroke-width:1.02131999px;stroke-opacity:1" /> + </g> + <g + transform="translate(139.23321,384.22303)" + id="g46152" + style="display:inline"> + <path + sodipodi:nodetypes="cc" + id="path46154" + d="m 210.75033,215.8898 c 4.50549,5.13037 32.36754,-1.16957 32.79546,-6.47014" + style="opacity:0.295238;fill:none;stroke:#000000;stroke-width:1.02131999px;stroke-opacity:1" /> + <path + style="opacity:0.695238;fill:none;stroke:url(#radialGradient46158-4);stroke-width:1.02131999px;stroke-opacity:1" + d="m 211.10388,217.30401 c 4.50549,5.13037 32.36754,-1.16957 32.79546,-6.47014" + id="path46156" + sodipodi:nodetypes="cc" /> + </g> + <g + id="g46160" + transform="translate(140.8242,393.06183)" + style="display:inline"> + <path + style="opacity:0.295238;fill:none;stroke:#000000;stroke-width:1.02131999px;stroke-opacity:1" + d="m 210.75033,215.8898 c 4.50549,5.13037 32.36754,-1.16957 32.79546,-6.47014" + id="path46162" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path46164" + d="m 211.10388,217.30401 c 4.50549,5.13037 32.36754,-1.16957 32.79546,-6.47014" + style="opacity:0.695238;fill:none;stroke:url(#radialGradient46166-4);stroke-width:1.02131999px;stroke-opacity:1" /> + </g> + </g> + </g> +</svg> diff --git a/packaging/wix/Bitmaps/banner.bmp b/packaging/wix/Bitmaps/banner.bmp Binary files differnew file mode 100644 index 0000000..5f026c9 --- /dev/null +++ b/packaging/wix/Bitmaps/banner.bmp diff --git a/packaging/wix/Bitmaps/banner.svg b/packaging/wix/Bitmaps/banner.svg new file mode 100644 index 0000000..58df167 --- /dev/null +++ b/packaging/wix/Bitmaps/banner.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="493" + height="58" + id="svg2" + version="1.1" + inkscape:version="1.0beta2 (fe19b174b6, 2020-02-11)" + sodipodi:docname="banner.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="banner.png" + inkscape:export-xdpi="384" + inkscape:export-ydpi="384"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3604"> + <stop + style="stop-color:#313c71;stop-opacity:1" + offset="0" + id="stop3606" /> + <stop + id="stop3612" + offset="0.15129296" + style="stop-color:#6168bd;stop-opacity:1" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop3608" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3604" + id="linearGradient3610" + x1="150" + y1="1020.9178" + x2="100.40568" + y2="1020.9178" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.2866667,0,0,1.0175439,0,-18.462523)" /> + <linearGradient + id="WhiteTransparent-7" + gradientUnits="userSpaceOnUse"> + <stop + style="stop-color:white;stop-opacity:1" + offset="0" + id="stop7606-11" /> + <stop + style="stop-color:white;stop-opacity:0" + offset="1" + id="stop7608-5" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8005" + id="linearGradient8007" + x1="163.78543" + y1="277.65921" + x2="107.79591" + y2="236.45535" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient8005"> + <stop + style="stop-color:#7d7d7d;stop-opacity:1" + offset="0" + id="stop8001" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop8003" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#WhiteTransparent-7" + id="linearGradient8017" + x1="39.809143" + y1="207.08017" + x2="130.89851" + y2="240.04326" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2" + inkscape:cx="236.6351" + inkscape:cy="35.361437" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1680" + inkscape:window-height="988" + inkscape:window-x="1912" + inkscape:window-y="-8" + inkscape:window-maximized="1" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:document-rotation="0" + inkscape:snap-center="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="true" + inkscape:snap-nodes="true" + inkscape:bbox-paths="true" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-994.36218)"> + <rect + style="fill:url(#linearGradient3610);fill-opacity:1;stroke:none" + id="rect2830" + width="493" + height="58" + x="0" + y="994.36218" /> + <g + transform="matrix(0.53030987,0,0,0.53030987,377.56869,893.7737)" + id="g2092" + style="display:inline;fill:#000000"> + <path + style="fill:url(#linearGradient8007);fill-opacity:1;stroke-width:0.248721" + inkscape:connector-curvature="0" + id="path2313" + d="m 108.82387,203.71197 -33.413116,34.19162 c -11.289426,13.98058 7.682979,12.35395 15.816141,16.38073 2.917493,2.98216 -11.182476,5.18334 -8.264984,8.16798 2.917492,2.98216 17.641749,5.74545 20.564209,8.72761 2.9175,2.98216 -5.971774,6.14588 -3.05428,9.12804 2.91749,2.98216 9.66528,0.15669 10.92878,7.04128 0.90037,4.91969 12.15995,2.11412 17.66662,-1.91515 2.91749,-2.98465 -5.58129,-2.70359 -2.6638,-5.68575 7.25518,-7.41933 14.01043,-2.69613 16.49266,-10.13039 1.22619,-3.6736 -10.68006,-5.66336 -7.75759,-8.64552 8.39432,-4.90228 37.40757,-8.09337 23.64089,-21.86005 l -34.63434,-35.4004 c -4.23571,-4.06658 -11.30435,-4.11135 -15.32119,0 z m 38.38007,65.90597 c 0,1.69628 12.49821,2.80806 12.49821,-0.40044 -1.78084,-5.15349 -11.02081,-4.80528 -12.49821,0.40044 z m -56.300381,9.01363 c 2.959774,2.55934 7.531257,-0.63672 8.901709,-4.20835 -2.867748,-3.81039 -13.602528,0.1368 -8.901709,4.20835 z M 145.637,273.10252 c -3.81537,3.42239 0.4278,6.89453 4.18846,4.68341 0.83819,-0.85063 -0.0224,-3.83279 -4.18846,-4.68341 z" /> + <path + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1;stroke-width:0.248721" + id="path2315" + d="m 100.82751,256.1348 c 0.8929,0.55465 14.39843,3.29804 17.69895,3.84522 1.14412,0.24126 0.33329,1.4202 -1.2436,2.2161 -3.5567,0.94514 -20.807961,-6.06132 -16.45535,-6.06132 z" /> + <path + inkscape:connector-curvature="0" + style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.248721" + id="path2317" + d="m 122.12545,206.10964 13.2195,13.42593 c 1.25355,1.28092 1.23614,3.76315 0.53474,4.47697 l -6.56373,-5.25049 -1.29086,7.77501 -5.48429,-2.89511 -8.78232,5.54896 -2.90755,-11.69733 -4.71823,8.16301 h -7.212889 c -2.939876,0 -3.285597,-3.73081 -0.614338,-6.40207 4.665997,-5.03659 10.020947,-10.17018 12.930977,-13.14488 2.92496,-2.98962 8.02124,-2.90506 10.88899,0 z" /> + <path + style="fill:url(#linearGradient8017);fill-opacity:1;stroke:none;stroke-width:0.863275px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.36483,205.90357 -35.099585,36.32045 c 0,0 -3.052139,3.66257 0,5.49385 3.052138,1.83128 23.806675,5.49385 23.806675,5.49385 l 21.36497,-47.30815 c 0,0 -2.74693,-2.74692 -5.49385,-2.13649 -2.74692,0.61043 -4.57821,2.13649 -4.57821,2.13649 z" + id="path8009" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccsc" /> + </g> + </g> +</svg> diff --git a/packaging/wix/Bitmaps/dialog.bmp b/packaging/wix/Bitmaps/dialog.bmp Binary files differnew file mode 100644 index 0000000..81cc7cb --- /dev/null +++ b/packaging/wix/Bitmaps/dialog.bmp diff --git a/packaging/wix/Bitmaps/dialog.svg b/packaging/wix/Bitmaps/dialog.svg new file mode 100644 index 0000000..28828dc --- /dev/null +++ b/packaging/wix/Bitmaps/dialog.svg @@ -0,0 +1,10957 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="493" + height="312" + id="svg5029" + version="1.1" + inkscape:version="1.0beta2 (fe19b174b6, 2020-02-11)" + sodipodi:docname="dialog.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="dialog.png" + inkscape:export-xdpi="384" + inkscape:export-ydpi="384"> + <defs + id="defs5031"> + <linearGradient + inkscape:collect="always" + id="linearGradient15343"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop15339" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop15341" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4433"> + <stop + style="stop-color:#5099e3;stop-opacity:1;" + offset="0" + id="stop4429" /> + <stop + style="stop-color:#3380cf;stop-opacity:1" + offset="1" + id="stop4431" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4401"> + <stop + style="stop-color:#90bfed;stop-opacity:1;" + offset="0" + id="stop4397" /> + <stop + style="stop-color:#63a4e7;stop-opacity:1" + offset="1" + id="stop4399" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4395"> + <stop + style="stop-color:#ffffff;stop-opacity:0.07575758" + offset="0" + id="stop4389" /> + <stop + id="stop4391" + offset="0.27291018" + style="stop-color:#c6bebd;stop-opacity:1" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4393" /> + </linearGradient> + <linearGradient + id="linearGradient4387" + inkscape:collect="always"> + <stop + id="stop4383" + offset="0" + style="stop-color:#cec4c4;stop-opacity:1" /> + <stop + id="stop4385" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3813"> + <stop + style="stop-color:#c43631;stop-opacity:1" + offset="0" + id="stop3809" /> + <stop + style="stop-color:#d86360;stop-opacity:1" + offset="1" + id="stop3811" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3731"> + <stop + style="stop-color:#ac9d93;stop-opacity:1;" + offset="0" + id="stop3727" /> + <stop + style="stop-color:#bcb0a8;stop-opacity:1" + offset="1" + id="stop3729" /> + </linearGradient> + <linearGradient + id="linearGradient3717" + inkscape:collect="always"> + <stop + id="stop3713" + offset="0" + style="stop-color:#932520;stop-opacity:1" /> + <stop + id="stop3715" + offset="1" + style="stop-color:#d86360;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3666" + inkscape:collect="always"> + <stop + id="stop3662" + offset="0" + style="stop-color:#9fe4e5;stop-opacity:1" /> + <stop + id="stop3664" + offset="1" + style="stop-color:#e4f6f8;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3660" + inkscape:collect="always"> + <stop + id="stop3656" + offset="0" + style="stop-color:#9fe4e5;stop-opacity:1" /> + <stop + id="stop3658" + offset="1" + style="stop-color:#e8f7fa;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3654" + inkscape:collect="always"> + <stop + id="stop3650" + offset="0" + style="stop-color:#9fe4e5;stop-opacity:1" /> + <stop + id="stop3652" + offset="1" + style="stop-color:#d4f1f5;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3622"> + <stop + style="stop-color:#c6e1ff;stop-opacity:1" + offset="0" + id="stop3618" /> + <stop + style="stop-color:#d6f3f4;stop-opacity:1" + offset="1" + id="stop3620" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9356"> + <stop + style="stop-color:#79160d;stop-opacity:1" + offset="0" + id="stop9352" /> + <stop + style="stop-color:#d86360;stop-opacity:1" + offset="1" + id="stop9354" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9330"> + <stop + style="stop-color:#d45500;stop-opacity:1;" + offset="0" + id="stop9326" /> + <stop + style="stop-color:#a24100;stop-opacity:1" + offset="1" + id="stop9328" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9303"> + <stop + style="stop-color:#c7c7c7;stop-opacity:1" + offset="0" + id="stop9299" /> + <stop + style="stop-color:#596b69;stop-opacity:1" + offset="1" + id="stop9301" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9295"> + <stop + style="stop-color:#916f6f;stop-opacity:1;" + offset="0" + id="stop9291" /> + <stop + style="stop-color:#6c5e59;stop-opacity:1" + offset="1" + id="stop9293" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9277"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop9273" /> + <stop + id="stop9281" + offset="0.34198725" + style="stop-color:#f18989;stop-opacity:0.65490198" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop9275" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9245"> + <stop + style="stop-color:#470c07;stop-opacity:1" + offset="0" + id="stop9241" /> + <stop + style="stop-color:#b42e2a;stop-opacity:1" + offset="1" + id="stop9243" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9208"> + <stop + style="stop-color:#ec4c10;stop-opacity:1;" + offset="0" + id="stop9204" /> + <stop + style="stop-color:#841b12;stop-opacity:1" + offset="1" + id="stop9206" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9200"> + <stop + style="stop-color:#cc3a35;stop-opacity:1;" + offset="0" + id="stop9196" /> + <stop + style="stop-color:#76150b;stop-opacity:1" + offset="1" + id="stop9198" /> + </linearGradient> + <linearGradient + id="linearGradient9138" + inkscape:collect="always"> + <stop + id="stop9134" + offset="0" + style="stop-color:#b9acba;stop-opacity:1;" /> + <stop + id="stop9136" + offset="1" + style="stop-color:#948597;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8771"> + <stop + style="stop-color:#826982;stop-opacity:1" + offset="0" + id="stop8767" /> + <stop + style="stop-color:#b39bb4;stop-opacity:1" + offset="1" + id="stop8769" /> + </linearGradient> + <linearGradient + id="linearGradient8213" + inkscape:collect="always"> + <stop + id="stop8209" + offset="0" + style="stop-color:#cab5cb;stop-opacity:1" /> + <stop + id="stop8211" + offset="1" + style="stop-color:#a89ba9;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8181"> + <stop + style="stop-color:#b9acba;stop-opacity:1;" + offset="0" + id="stop8177" /> + <stop + style="stop-color:#a89ba9;stop-opacity:1" + offset="1" + id="stop8179" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8015"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop8011" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop8013" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8005"> + <stop + style="stop-color:#7d7d7d;stop-opacity:1" + offset="0" + id="stop8001" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop8003" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7213"> + <stop + style="stop-color:#6c7f7d;stop-opacity:1" + offset="0" + id="stop7209" /> + <stop + id="stop7215" + offset="0.49975234" + style="stop-color:#93a6a4;stop-opacity:1" /> + <stop + style="stop-color:#bfd2d0;stop-opacity:1" + offset="1" + id="stop7211" /> + </linearGradient> + <linearGradient + id="linearGradient7175" + inkscape:collect="always"> + <stop + id="stop7171" + offset="0" + style="stop-color:#f2f5f4;stop-opacity:1" /> + <stop + id="stop7173" + offset="1" + style="stop-color:#dce4e3;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7140"> + <stop + style="stop-color:#dce4e3;stop-opacity:1;" + offset="0" + id="stop7136" /> + <stop + style="stop-color:#dce4e3;stop-opacity:0;" + offset="1" + id="stop7138" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7127"> + <stop + style="stop-color:#009bff;stop-opacity:0.26262626" + offset="0" + id="stop7123" /> + <stop + style="stop-color:#0093ff;stop-opacity:0" + offset="1" + id="stop7125" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7090"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop7086" /> + <stop + style="stop-color:#ffffff;stop-opacity:0.30303031" + offset="1" + id="stop7088" /> + </linearGradient> + <linearGradient + id="linearGradient6931" + inkscape:collect="always"> + <stop + id="stop6927" + offset="0" + style="stop-color:#6bd5d7;stop-opacity:1" /> + <stop + id="stop6929" + offset="1" + style="stop-color:#b7ebeb;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6915"> + <stop + style="stop-color:#9fe4e5;stop-opacity:1" + offset="0" + id="stop6911" /> + <stop + style="stop-color:#f8fdfe;stop-opacity:1" + offset="1" + id="stop6913" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6881"> + <stop + style="stop-color:#6c7f7d;stop-opacity:1;" + offset="0" + id="stop6877" /> + <stop + style="stop-color:#916f6f;stop-opacity:1" + offset="1" + id="stop6879" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6873"> + <stop + style="stop-color:#cfc1c1;stop-opacity:1;" + offset="0" + id="stop6869" /> + <stop + style="stop-color:#b8cbc9;stop-opacity:1" + offset="1" + id="stop6871" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6414"> + <stop + style="stop-color:#8385a8;stop-opacity:1;" + offset="0" + id="stop6410" /> + <stop + id="stop6424" + offset="0.74836773" + style="stop-color:#ea8c10;stop-opacity:1" /> + <stop + style="stop-color:#a47d78;stop-opacity:1" + offset="1" + id="stop6412" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6406"> + <stop + style="stop-color:#c0c2e5;stop-opacity:1;" + offset="0" + id="stop6402" /> + <stop + id="stop6422" + offset="0.73528874" + style="stop-color:#fdc579;stop-opacity:1" /> + <stop + style="stop-color:#f9ca94;stop-opacity:1" + offset="1" + id="stop6404" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6398"> + <stop + style="stop-color:#a28888;stop-opacity:1;" + offset="0" + id="stop6394" /> + <stop + id="stop6420" + offset="0.72354031" + style="stop-color:#e78a14;stop-opacity:1" /> + <stop + style="stop-color:#c67f7f;stop-opacity:1" + offset="1" + id="stop6396" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6390"> + <stop + style="stop-color:#c9bdca;stop-opacity:1;" + offset="0" + id="stop6386" /> + <stop + id="stop6418" + offset="0.72347206" + style="stop-color:#fdbf6a;stop-opacity:1" /> + <stop + style="stop-color:#eac5bf;stop-opacity:1" + offset="1" + id="stop6388" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6369"> + <stop + style="stop-color:#666887;stop-opacity:1;" + offset="0" + id="stop6365" /> + <stop + style="stop-color:#3c3d57;stop-opacity:1" + offset="1" + id="stop6367" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6361"> + <stop + style="stop-color:#7d7fa5;stop-opacity:1;" + offset="0" + id="stop6357" /> + <stop + style="stop-color:#515376;stop-opacity:1" + offset="1" + id="stop6359" /> + </linearGradient> + <linearGradient + id="linearGradient5935" + inkscape:collect="always"> + <stop + id="stop5931" + offset="0" + style="stop-color:#666887;stop-opacity:1" /> + <stop + id="stop5933" + offset="1" + style="stop-color:#7d7fa5;stop-opacity:0.11111111" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5893"> + <stop + style="stop-color:#00ffff;stop-opacity:1;" + offset="0" + id="stop5889" /> + <stop + style="stop-color:#00ffff;stop-opacity:0;" + offset="1" + id="stop5891" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5853"> + <stop + style="stop-color:#071a18;stop-opacity:1;" + offset="0" + id="stop5849" /> + <stop + style="stop-color:#333333;stop-opacity:1" + offset="1" + id="stop5851" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5736"> + <stop + style="stop-color:#207eff;stop-opacity:1" + offset="0" + id="stop5732" /> + <stop + style="stop-color:#9fe4e5;stop-opacity:1" + offset="1" + id="stop5734" /> + </linearGradient> + <linearGradient + id="linearGradient3462" + inkscape:collect="always"> + <stop + id="stop3458" + offset="0" + style="stop-color:#8c9f9d;stop-opacity:1" /> + <stop + id="stop3460" + offset="1" + style="stop-color:#bfd2d0;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3335"> + <stop + style="stop-color:#999999;stop-opacity:1;" + offset="0" + id="stop3331" /> + <stop + style="stop-color:#b3b3b3;stop-opacity:1" + offset="1" + id="stop3333" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3213"> + <stop + style="stop-color:#ff8080;stop-opacity:1" + offset="0" + id="stop3209" /> + <stop + style="stop-color:#c83737;stop-opacity:1" + offset="1" + id="stop3211" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3131"> + <stop + style="stop-color:#09a9ff;stop-opacity:1" + offset="0" + id="stop3127" /> + <stop + style="stop-color:#006dff;stop-opacity:1" + offset="1" + id="stop3129" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2478"> + <stop + style="stop-color:#ffffff;stop-opacity:0.07575758" + offset="0" + id="stop2472" /> + <stop + id="stop2474" + offset="0.51615179" + style="stop-color:#fefaf9;stop-opacity:1" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2476" /> + </linearGradient> + <linearGradient + id="linearGradient2365" + inkscape:collect="always"> + <stop + id="stop2361" + offset="0" + style="stop-color:#c8c8c8;stop-opacity:1" /> + <stop + id="stop2363" + offset="1" + style="stop-color:#989898;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient2186" + inkscape:collect="always"> + <stop + id="stop2182" + offset="0" + style="stop-color:#ffffff;stop-opacity:0.07575758" /> + <stop + style="stop-color:#fefaf9;stop-opacity:1" + offset="0.4447301" + id="stop2188" /> + <stop + id="stop2184" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2142"> + <stop + style="stop-color:#f2644a;stop-opacity:1" + offset="0" + id="stop2138" /> + <stop + style="stop-color:#dc3e22;stop-opacity:1" + offset="1" + id="stop2140" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2134"> + <stop + style="stop-color:#674340;stop-opacity:1" + offset="0" + id="stop2130" /> + <stop + style="stop-color:#ac4f41;stop-opacity:1" + offset="1" + id="stop2132" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2004"> + <stop + style="stop-color:#426c6d;stop-opacity:1" + offset="0" + id="stop2000" /> + <stop + style="stop-color:#538889;stop-opacity:1" + offset="1" + id="stop2002" /> + </linearGradient> + <linearGradient + id="linearGradient1959" + inkscape:collect="always"> + <stop + id="stop1955" + offset="0" + style="stop-color:#a0e5e6;stop-opacity:1" /> + <stop + id="stop1957" + offset="1" + style="stop-color:#71b6b7;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1916"> + <stop + style="stop-color:#a0e5e6;stop-opacity:1" + offset="0" + id="stop1912" /> + <stop + id="stop1918" + offset="0.55009604" + style="stop-color:#426c6d;stop-opacity:1" /> + <stop + style="stop-color:#538889;stop-opacity:1" + offset="1" + id="stop1914" /> + </linearGradient> + <linearGradient + id="linearGradient1873" + inkscape:collect="always"> + <stop + id="stop1869" + offset="0" + style="stop-color:#a0e5e6;stop-opacity:1" /> + <stop + id="stop1871" + offset="1" + style="stop-color:#538889;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1824"> + <stop + style="stop-color:#fe6969;stop-opacity:1;" + offset="0" + id="stop1820" /> + <stop + style="stop-color:#fe6969;stop-opacity:0;" + offset="1" + id="stop1822" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1816"> + <stop + style="stop-color:#7d1313;stop-opacity:1;" + offset="0" + id="stop1812" /> + <stop + style="stop-color:#7d1313;stop-opacity:0;" + offset="1" + id="stop1814" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1801"> + <stop + style="stop-color:#e1462e;stop-opacity:1" + offset="0" + id="stop1795" /> + <stop + id="stop1797" + offset="0.45722297" + style="stop-color:#fac0b5;stop-opacity:1" /> + <stop + style="stop-color:#ce382e;stop-opacity:1" + offset="1" + id="stop1799" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1749"> + <stop + style="stop-color:#fe7d7d;stop-opacity:1;" + offset="0" + id="stop1745" /> + <stop + style="stop-color:#fe7d7d;stop-opacity:0;" + offset="1" + id="stop1747" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5865"> + <stop + style="stop-color:#e3462d;stop-opacity:0.39898989" + offset="0" + id="stop5861" /> + <stop + id="stop5869" + offset="0.21562541" + style="stop-color:#a82a19;stop-opacity:1" /> + <stop + style="stop-color:#e4472d;stop-opacity:0.33333334" + offset="1" + id="stop5863" /> + </linearGradient> + <linearGradient + id="linearGradient5822" + inkscape:collect="always"> + <stop + id="stop5818" + offset="0" + style="stop-color:#e1462e;stop-opacity:1" /> + <stop + style="stop-color:#fac0b5;stop-opacity:1" + offset="0.47435614" + id="stop5824" /> + <stop + id="stop5820" + offset="1" + style="stop-color:#ce382e;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5572"> + <stop + style="stop-color:#cd3625;stop-opacity:1" + offset="0" + id="stop5568" /> + <stop + style="stop-color:#7d1313;stop-opacity:1" + offset="1" + id="stop5570" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5507"> + <stop + style="stop-color:#e97d7d;stop-opacity:1;" + offset="0" + id="stop5503" /> + <stop + style="stop-color:#e97d7d;stop-opacity:0;" + offset="1" + id="stop5505" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5499"> + <stop + style="stop-color:#c12d2d;stop-opacity:1;" + offset="0" + id="stop5495" /> + <stop + style="stop-color:#961f1f;stop-opacity:1" + offset="1" + id="stop5497" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5491"> + <stop + style="stop-color:#ec4c10;stop-opacity:1;" + offset="0" + id="stop5487" /> + <stop + style="stop-color:#c12d2d;stop-opacity:1" + offset="1" + id="stop5489" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5463"> + <stop + style="stop-color:#fac0b5;stop-opacity:1;" + offset="0" + id="stop5459" /> + <stop + style="stop-color:#fac0b5;stop-opacity:0;" + offset="1" + id="stop5461" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5451"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop5447" /> + <stop + id="stop5455" + offset="0.53147197" + style="stop-color:#fac0b5;stop-opacity:1" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5449" /> + </linearGradient> + <linearGradient + id="linearGradient5443" + inkscape:collect="always"> + <stop + id="stop5439" + offset="0" + style="stop-color:#fac0b5;stop-opacity:1" /> + <stop + id="stop5441" + offset="1" + style="stop-color:#cb3936;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1856"> + <stop + style="stop-color:#a098fb;stop-opacity:1" + offset="0" + id="stop1852" /> + <stop + style="stop-color:#3e37cc;stop-opacity:0" + offset="1" + id="stop1854" /> + </linearGradient> + <linearGradient + id="linearGradient1798" + inkscape:collect="always"> + <stop + id="stop1794" + offset="0" + style="stop-color:#ffde59;stop-opacity:1" /> + <stop + id="stop1796" + offset="1" + style="stop-color:#ffaa02;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient1688" + inkscape:collect="always"> + <stop + id="stop1684" + offset="0" + style="stop-color:#ff9d10;stop-opacity:1" /> + <stop + id="stop1686" + offset="1" + style="stop-color:#ef6d00;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2368"> + <stop + style="stop-color:#d40000;stop-opacity:1" + offset="0" + id="stop2364" /> + <stop + id="stop2372" + offset="0.32535639" + style="stop-color:#e8492c;stop-opacity:1" /> + <stop + style="stop-color:#d63f31;stop-opacity:1;" + offset="0.67301106" + id="stop2374" /> + <stop + style="stop-color:#c83737;stop-opacity:1" + offset="1" + id="stop2366" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2343"> + <stop + style="stop-color:#3a6587;stop-opacity:1;" + offset="0" + id="stop2339" /> + <stop + style="stop-color:#3a6587;stop-opacity:0;" + offset="1" + id="stop2341" /> + </linearGradient> + <linearGradient + id="linearGradient2127" + inkscape:collect="always"> + <stop + id="stop2123" + offset="0" + style="stop-color:#000000;stop-opacity:0.21428572" /> + <stop + id="stop2125" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2101"> + <stop + style="stop-color:#000000;stop-opacity:0.4732143" + offset="0" + id="stop2097" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop2099" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2093"> + <stop + style="stop-color:#3d6a8e;stop-opacity:1" + offset="0" + id="stop2089" /> + <stop + style="stop-color:#263f54;stop-opacity:1" + offset="1" + id="stop2091" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2153"> + <stop + style="stop-color:#e49dbb;stop-opacity:1" + offset="0" + id="stop2149" /> + <stop + style="stop-color:#cda5c8;stop-opacity:1" + offset="1" + id="stop2151" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2182"> + <stop + style="stop-color:#f2e9f2;stop-opacity:1;" + offset="0" + id="stop2178" /> + <stop + style="stop-color:#968199;stop-opacity:1" + offset="1" + id="stop2180" /> + </linearGradient> + <inkscape:path-effect + effect="simplify" + id="path-effect805" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect800" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect795" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect792" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="powerstroke" + id="path-effect787" + is_visible="true" + offset_points="1.6031372,0.18570875 | 1.9715589,0.21232834 | 2.8336885,0.24071138" + sort_points="true" + interpolator_type="CentripetalCatmullRom" + interpolator_beta="0.75" + start_linecap_type="zerowidth" + linejoin_type="spiro" + miter_limit="4" + scale_width="1" + end_linecap_type="zerowidth" /> + <inkscape:path-effect + effect="simplify" + id="path-effect785" + is_visible="true" + steps="1" + threshold="0.0032025118" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect710" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect705" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <inkscape:path-effect + effect="simplify" + id="path-effect702" + is_visible="true" + steps="1" + threshold="0.0026687598" + smooth_angles="0" + helper_size="0" + simplify_individual_paths="false" + simplify_just_coalesce="false" + step="1" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2182" + id="linearGradient2184" + x1="81.980667" + y1="71.754539" + x2="89.461525" + y2="71.960426" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2182" + id="linearGradient2192" + x1="83.078064" + y1="64.418991" + x2="87.426796" + y2="65.620049" + gradientUnits="userSpaceOnUse" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="83.155289" + x2="88.11174" + y1="82.718597" + x1="82.632668" + id="linearGradient1503" + xlink:href="#linearGradient2182" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2153" + id="linearGradient2155" + x1="39.120117" + y1="106.89397" + x2="81.054131" + y2="116.2279" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2101" + id="linearGradient2103" + x1="-174.9084" + y1="-108.07188" + x2="-226.59836" + y2="-171.48766" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-143.6488,-47.365281)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2137" + x1="-180.07468" + y1="-135.80338" + x2="-217.70445" + y2="-173.55154" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-143.6488,-47.365281)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2093" + id="radialGradient2271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.83210314,-143.6488,-64.118247)" + cx="-140.93111" + cy="-99.781296" + fx="-140.93111" + fy="-99.781296" + r="99.43441" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2273" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-143.6488,-47.365281)" + x1="-111.45802" + y1="-96.397408" + x2="-68.906311" + y2="-174.08859" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2275" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(-92.364269,-251.86501,-58.120452)" + x1="-148.08713" + y1="-119.14465" + x2="-183.59157" + y2="-134.26678" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2277" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(177.63573,-210.44967,-125.75815)" + x1="-145.57951" + y1="-106.67687" + x2="-197.37419" + y2="-133.18727" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2279" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(177.63573,-209.3024,-140.64101)" + x1="-225.84842" + y1="-211.04114" + x2="-161.39096" + y2="-112.15256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2281" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(-92.364269,-269.91027,-62.752992)" + x1="-168.26738" + y1="-100.93788" + x2="-178.31746" + y2="-120.83762" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2283" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(177.63573,-221.63211,-136.04037)" + x1="-166.2701" + y1="-71.590698" + x2="-198.07181" + y2="-140.77466" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2127" + id="linearGradient2279-8" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(177.63573,-196.56633,-139.73131)" + x1="-133.13521" + y1="-181.42682" + x2="-173.14758" + y2="-169.27779" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2343" + id="linearGradient2345" + x1="-184.89165" + y1="-97.862373" + x2="-199.44157" + y2="-67.801643" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2368" + id="linearGradient2370" + x1="127.48694" + y1="285.45941" + x2="113.79148" + y2="253.35014" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1658" + x1="49.047424" + y1="191.91698" + x2="50.940094" + y2="198.13113" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1666" + x1="47.658005" + y1="188.32237" + x2="48.418171" + y2="189.75931" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1674" + x1="46.620922" + y1="192.81369" + x2="49.872433" + y2="200.41447" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1682" + x1="51.777439" + y1="190.72174" + x2="53.381378" + y2="195.8344" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1696" + x1="61.835602" + y1="191.70372" + x2="63.056763" + y2="198.36537" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1704" + x1="71.307335" + y1="194.05963" + x2="73.695602" + y2="198.88661" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1712" + x1="77.06781" + y1="196.87056" + x2="81.337433" + y2="200.83524" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1720" + x1="86.591133" + y1="193.23225" + x2="89.874695" + y2="197.95181" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1728" + x1="95.698845" + y1="191.24284" + x2="97.622353" + y2="197.97285" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1688" + id="linearGradient1736" + x1="103.38288" + y1="189.46896" + x2="106.368" + y2="195.76376" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1744" + x1="54.011269" + y1="190.13614" + x2="56.201206" + y2="199.96028" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1752" + x1="228.38199" + y1="307.43832" + x2="243.60822" + y2="354.45377" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1760" + x1="261.54636" + y1="320.58774" + x2="275.91272" + y2="359.75836" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1768" + x1="76.627373" + y1="197.13812" + x2="80.603378" + y2="205.20459" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1776" + x1="302.71448" + y1="721.08661" + x2="310.64301" + y2="757.55042" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1784" + x1="334.60065" + y1="723.78894" + x2="349.79459" + y2="764.21423" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1798" + id="linearGradient1792" + x1="370.63516" + y1="725.38263" + x2="386.28214" + y2="754.3891" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1856" + id="radialGradient1858" + cx="100.74828" + cy="182.6633" + fx="100.74828" + fy="182.6633" + r="60.371323" + gradientTransform="matrix(1,0,0,0.90996779,-10.025162,21.141768)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5443" + id="linearGradient5437" + x1="100.3382" + y1="259.25647" + x2="104.96861" + y2="264.43817" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5451" + id="linearGradient5453" + x1="97.95031" + y1="258.64862" + x2="102.33461" + y2="258.69153" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5463" + id="linearGradient5465" + x1="99.836853" + y1="256.65952" + x2="99.329041" + y2="251.58076" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5491" + id="linearGradient5493" + x1="103.70621" + y1="261.58749" + x2="107.57946" + y2="265.97992" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5499" + id="linearGradient5501" + x1="432.31735" + y1="506.32312" + x2="448.77618" + y2="532.99725" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5507" + id="linearGradient5509" + x1="89.759438" + y1="253.5235" + x2="92.729401" + y2="250.1992" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5451" + id="linearGradient5521" + x1="123.78666" + y1="248.78648" + x2="126.22018" + y2="248.78648" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5572" + id="linearGradient5574" + x1="107.65202" + y1="271.91544" + x2="109.0341" + y2="277.50891" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + gradientTransform="translate(10.895394,-0.03731586)" + inkscape:collect="always" + xlink:href="#linearGradient5822" + id="linearGradient5574-1" + x1="109.8844" + y1="270.09552" + x2="109.61646" + y2="278.35818" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5865" + id="radialGradient5871" + cx="484.14655" + cy="559.60339" + fx="484.14655" + fy="559.60339" + r="50.772198" + gradientTransform="matrix(0.38264988,-0.27602328,0.10361158,0.14363626,-101.7135,329.07379)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1749" + id="linearGradient1751" + x1="110.79502" + y1="284.23889" + x2="113.3787" + y2="291.37277" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1816" + id="linearGradient1766" + x1="110.57137" + y1="281.93372" + x2="114.24696" + y2="292.78015" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + gradientTransform="translate(3.2055584,0.60026896)" + inkscape:collect="always" + xlink:href="#linearGradient1801" + id="linearGradient5574-1-0" + x1="109.8844" + y1="270.09552" + x2="109.61646" + y2="278.35818" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1816" + id="linearGradient1818" + x1="117.36659" + y1="282.32178" + x2="125.10149" + y2="280.05695" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1824" + id="linearGradient1826" + x1="116.54169" + y1="282.23895" + x2="120.63911" + y2="279.25348" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1959" + id="linearGradient1850" + x1="95.560585" + y1="266.64401" + x2="98.468903" + y2="273.47287" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1959" + id="linearGradient1859" + x1="101.89999" + y1="281.58646" + x2="96.961571" + y2="277.5715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1873" + id="linearGradient1867" + x1="86.99482" + y1="279.86798" + x2="95.772545" + y2="276.2991" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1916" + id="linearGradient1910" + x1="367.21609" + y1="502.75912" + x2="367.75583" + y2="539.98242" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1959" + id="linearGradient1953" + x1="372.97504" + y1="584.71906" + x2="398.66269" + y2="559.77386" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2004" + id="linearGradient1998" + x1="351.55087" + y1="539.5257" + x2="352.55878" + y2="574.92584" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient2014" + x1="97.533173" + y1="265.34024" + x2="94.415115" + y2="264.45456" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient2024" + x1="104.50703" + y1="276.21896" + x2="103.76228" + y2="280.93741" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient2034" + x1="93.602226" + y1="285.99313" + x2="93.28775" + y2="278.71817" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2134" + id="linearGradient2136" + x1="139.80453" + y1="258.5845" + x2="149.15398" + y2="254.6725" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2142" + id="radialGradient2146" + cx="146.92781" + cy="258.69992" + fx="146.92781" + fy="258.69992" + r="7.5281217" + gradientTransform="matrix(1,0,0,0.46400087,10.583333,138.34581)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2186" + id="linearGradient2164" + x1="141.65044" + y1="259.93835" + x2="150.83614" + y2="259.93835" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2186" + id="linearGradient2172" + x1="156.58759" + y1="254.92441" + x2="158.16434" + y2="254.8031" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient2180" + x1="157.09332" + y1="255.27631" + x2="156.46956" + y2="257.66165" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + gradientTransform="translate(10.892181,0.24021476)" + inkscape:collect="always" + xlink:href="#linearGradient2209" + id="linearGradient2211" + x1="132.52798" + y1="265.60092" + x2="143.98949" + y2="250.98236" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2209"> + <stop + style="stop-color:#c61b10;stop-opacity:0" + offset="0" + id="stop2205" /> + <stop + style="stop-color:#f34a2e;stop-opacity:1" + offset="1" + id="stop2207" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2365" + id="linearGradient2359" + x1="391.29086" + y1="410.49789" + x2="574.1355" + y2="366.84381" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.26458333,0,0,0.26458333,10.583333,131.6354)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2478" + id="linearGradient2470" + x1="46.134453" + y1="189.10133" + x2="47.782082" + y2="189.9709" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3131" + id="radialGradient3133" + cx="112.19923" + cy="183.47735" + fx="112.19923" + fy="183.47735" + r="5.4423261" + gradientTransform="matrix(1,0,0,0.76843489,0,42.486954)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3213" + id="linearGradient3215" + x1="55.205528" + y1="87.586723" + x2="66.870529" + y2="86.110115" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3335" + id="linearGradient3337" + x1="53.994965" + y1="198.4433" + x2="57.193489" + y2="198.29448" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3335" + id="linearGradient3353" + x1="60.321545" + y1="199.85323" + x2="66.741997" + y2="198.8941" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(10.583333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3462" + id="linearGradient3456" + x1="141.38148" + y1="86.132889" + x2="171.71672" + y2="86.132889" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7213" + id="linearGradient3470" + x1="137.67491" + y1="101.67153" + x2="140.25513" + y2="70.853043" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3213" + id="linearGradient5722" + gradientUnits="userSpaceOnUse" + x1="64.740524" + y1="87.874657" + x2="68.27195" + y2="87.901047" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3213" + id="linearGradient5724" + gradientUnits="userSpaceOnUse" + x1="65.16906" + y1="84.987465" + x2="68.304024" + y2="84.974266" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3213" + id="linearGradient5726" + gradientUnits="userSpaceOnUse" + x1="64.754951" + y1="83.82959" + x2="68.269485" + y2="83.85598" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5736" + id="linearGradient5738" + x1="80.209724" + y1="135.82549" + x2="68.121544" + y2="169.54279" + gradientUnits="userSpaceOnUse" + gradientTransform="rotate(9.8261043,145.87655,109.85227)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5853" + id="linearGradient5855" + x1="132.65871" + y1="86.101562" + x2="127.17634" + y2="87.526802" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5893" + id="linearGradient5895" + x1="138.61208" + y1="201.57948" + x2="140.24069" + y2="203.81168" + gradientUnits="userSpaceOnUse" /> + <linearGradient + gradientTransform="translate(0.04960863,131.78423)" + inkscape:collect="always" + xlink:href="#linearGradient5935" + id="linearGradient5905" + x1="138.12279" + y1="71.454033" + x2="142.89778" + y2="71.454033" + gradientUnits="userSpaceOnUse" /> + <linearGradient + gradientTransform="matrix(1.1845034,-0.10762437,0.08962705,0.98642653,-31.535097,150.32383)" + inkscape:collect="always" + xlink:href="#linearGradient5935" + id="linearGradient5905-1" + x1="138.12279" + y1="71.454033" + x2="142.89778" + y2="71.454033" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6361" + id="linearGradient6363" + x1="137.61082" + y1="80.033249" + x2="143.72246" + y2="109.37137" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6369" + id="linearGradient6371" + x1="484.16217" + y1="261.63379" + x2="522.39258" + y2="341.63379" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6390" + id="linearGradient6392" + x1="102.09664" + y1="173.66351" + x2="139.02469" + y2="162.25111" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6398" + id="linearGradient6400" + x1="101.14867" + y1="177.12999" + x2="140.42969" + y2="164.59505" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6406" + id="linearGradient6408" + x1="94.582085" + y1="185.18106" + x2="147.77621" + y2="173.11385" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6414" + id="linearGradient6416" + x1="93.866913" + y1="187.52071" + x2="149.65094" + y2="176.76311" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2478" + id="linearGradient6460" + x1="104.37839" + y1="175.91054" + x2="147.83046" + y2="161.42461" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2478" + id="linearGradient6494" + x1="94.341217" + y1="190.49155" + x2="149.69829" + y2="174.02124" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6873" + id="linearGradient6875" + x1="76.371437" + y1="126.70215" + x2="81.608719" + y2="126.96609" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6881" + id="linearGradient6883" + x1="84.542679" + y1="120.18748" + x2="76.826401" + y2="120.18747" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6873" + id="linearGradient6899" + x1="76.347641" + y1="123.40604" + x2="81.479736" + y2="124.37894" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6931" + id="linearGradient6909" + x1="96.142067" + y1="126.01895" + x2="104.65712" + y2="126.25505" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3666" + id="linearGradient6917" + x1="90.191467" + y1="127.63151" + x2="107.96541" + y2="126.10258" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6915" + id="linearGradient6925" + x1="91.392937" + y1="126.52495" + x2="104.06738" + y2="122.72456" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3660" + id="linearGradient6996" + gradientUnits="userSpaceOnUse" + x1="91.392937" + y1="126.52495" + x2="104.06738" + y2="122.72456" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3654" + id="linearGradient7000" + gradientUnits="userSpaceOnUse" + x1="90.191467" + y1="127.63151" + x2="106.57357" + y2="125.62816" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7090" + id="linearGradient7092" + x1="93.82683" + y1="237.69422" + x2="141.67752" + y2="237.69422" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7127" + id="linearGradient7129" + x1="171.91302" + y1="56.193466" + x2="154.11978" + y2="67.835136" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.36380208,0.26458333)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7140" + id="linearGradient7142" + x1="165.0061" + y1="186.15584" + x2="157.02106" + y2="191.74512" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7175" + id="linearGradient7169" + x1="141.57433" + y1="80.888321" + x2="163.10696" + y2="80.888321" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-0.05278672)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8005" + id="linearGradient8007" + x1="163.78543" + y1="277.65921" + x2="107.79591" + y2="236.45535" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8015" + id="linearGradient8017" + x1="39.809143" + y1="207.08017" + x2="130.89851" + y2="240.04326" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8005" + id="linearGradient8025" + x1="48.837944" + y1="307.58972" + x2="49.078606" + y2="315.98849" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9138" + id="linearGradient8183" + x1="116.62489" + y1="111.43256" + x2="123.4342" + y2="116.13562" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8181" + id="linearGradient8191" + x1="110.6484" + y1="108.39176" + x2="118.72864" + y2="108.39176" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8181" + id="linearGradient8199" + x1="112.97784" + y1="104.46082" + x2="120.7669" + y2="104.46082" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8213" + id="linearGradient8207" + x1="123.85036" + y1="112.58893" + x2="130.25452" + y2="114.5672" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8771" + id="linearGradient8773" + x1="84.599838" + y1="88.800003" + x2="84.298767" + y2="81.172318" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9200" + id="linearGradient9202" + x1="153.21982" + y1="278.35431" + x2="157.40152" + y2="293.64468" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9208" + id="linearGradient9210" + x1="56.420364" + y1="312.17862" + x2="67.043205" + y2="330.67242" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9245" + id="linearGradient9247" + x1="60.699871" + y1="325.91476" + x2="62.549652" + y2="312.0795" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9277" + id="linearGradient9279" + x1="143.97565" + y1="281.30991" + x2="156.46088" + y2="294.06696" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9200" + id="linearGradient9289" + x1="160.7417" + y1="280.28775" + x2="165.93733" + y2="287.46204" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9295" + id="linearGradient9297" + x1="163.6188" + y1="287.35489" + x2="165.63641" + y2="282.53198" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9303" + id="linearGradient9305" + x1="161.40216" + y1="271.19415" + x2="167.51399" + y2="277.62466" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9330" + id="linearGradient9332" + x1="149.15614" + y1="285.58084" + x2="151.64053" + y2="290.65381" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3717" + id="linearGradient9358" + x1="144.00711" + y1="269.91507" + x2="145.00533" + y2="268.62897" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9356" + id="linearGradient9366" + x1="179.584" + y1="287.74097" + x2="180.1403" + y2="285.99045" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3622" + id="linearGradient3624" + x1="3.9681463" + y1="105.39001" + x2="21.54732" + y2="108.07631" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3622" + id="linearGradient3632" + x1="3.0088601" + y1="103.99979" + x2="29.506241" + y2="103.99979" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3622" + id="linearGradient3640" + x1="92.056038" + y1="124.83705" + x2="103.53277" + y2="124.83705" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3622" + id="linearGradient3648" + x1="92.056038" + y1="126.10258" + x2="107.96541" + y2="126.10258" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3733" + x1="28.624508" + y1="121.07088" + x2="40.449108" + y2="131.52213" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3741" + x1="28.776918" + y1="120.38439" + x2="40.531261" + y2="132.63091" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3749" + x1="28.565771" + y1="122.17914" + x2="41.270275" + y2="134.00336" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3757" + x1="31.099535" + y1="123.02373" + x2="41.69257" + y2="131.57518" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3731" + id="linearGradient3765" + x1="31.310682" + y1="122.91815" + x2="41.375847" + y2="132.73648" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3717" + id="linearGradient3791" + x1="153.88297" + y1="261.8468" + x2="155.18002" + y2="260.13199" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3717" + id="linearGradient3799" + x1="175.40033" + y1="271.49759" + x2="175.84297" + y2="270.03287" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3813" + id="linearGradient3807" + x1="161.08191" + y1="268.16992" + x2="166.2769" + y2="264.56168" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3666" + id="linearGradient3830" + gradientUnits="userSpaceOnUse" + x1="13.946231" + y1="210.95882" + x2="29.535089" + y2="216.07622" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4395" + id="linearGradient2172-0" + x1="156.58759" + y1="254.92441" + x2="160.05861" + y2="253.21284" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5276256,0,0,1.5276256,-74.192452,-112.35327)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4387" + id="linearGradient2180-1" + x1="157.09332" + y1="255.27631" + x2="156.84373" + y2="257.70844" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5276256,0,0,1.5276256,-74.192452,-112.35327)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4401" + id="linearGradient4403" + x1="73.401077" + y1="136.26422" + x2="75.163254" + y2="146.09053" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4401" + id="linearGradient4419" + x1="73.490952" + y1="136.54501" + x2="74.387398" + y2="143.09975" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4401" + id="linearGradient4427" + x1="73.371223" + y1="135.85503" + x2="75.614868" + y2="144.61761" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4433" + id="linearGradient4435" + x1="75.407547" + y1="136.18597" + x2="77.168404" + y2="145.21268" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4433" + id="linearGradient4443" + x1="75.51873" + y1="135.66606" + x2="76.747078" + y2="144.48468" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient15343" + id="linearGradient15345" + x1="84.344109" + y1="165.37276" + x2="96.488579" + y2="165.37276" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6931" + id="linearGradient10910" + gradientUnits="userSpaceOnUse" + x1="96.142067" + y1="126.01895" + x2="104.65712" + y2="126.25505" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-74.085794" + inkscape:cy="256.19516" + inkscape:document-units="px" + inkscape:current-layer="svg5029" + showgrid="false" + inkscape:window-width="1680" + inkscape:window-height="988" + inkscape:window-x="1912" + inkscape:window-y="-8" + inkscape:window-maximized="1" + showborder="true" + inkscape:document-rotation="0" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-page="true" /> + <metadata + id="metadata5034"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" /> + <g + transform="matrix(1.8951538,0,0,1.8951538,-17.359102,0.30269462)" + id="g15281"> + <g + transform="translate(0,-131.6354)" + style="display:inline" + inkscape:label="background" + id="layer4"> + <rect + y="131.77419" + x="10.695659" + height="165.47937" + width="198.86882" + id="rect2158" + style="fill:#4e4c61;fill-opacity:1;stroke:none;stroke-width:0.144033" /> + <g + transform="translate(394.09537,360.54646)" + id="g2269"> + <rect + style="display:inline;fill:url(#radialGradient2271);fill-opacity:1;stroke:none;stroke-width:0.144033" + id="rect2158-7" + width="198.86882" + height="168.47279" + x="-384.01431" + y="-229.88626" /> + <path + style="fill:url(#linearGradient2103);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m -386.2988,-231.00642 55.58354,-11.20851 -58.39542,118.65009 z" + id="path2087" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient2273);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m -333.89611,-229.14063 150.44087,135.067353 0.54905,-138.361683 z" + id="path2105" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient2137);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m -393.2054,-158.14569 162.29264,-81.00306 -153.49634,7.53737 z" + id="path2129" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:url(#linearGradient2275);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m -245.87217,-53.830845 -139.26598,-193.801305 7.71024,185.779838 z" + id="path2129-3" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:url(#linearGradient2277);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m -177.91138,-212.96271 -132.82673,157.067879 151.06901,4.529768 z" + id="path2129-3-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="display:inline;fill:url(#linearGradient2279);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m -220.10289,-248.58669 -56.7317,195.503644 113.40501,-8.93014 -9.66818,-176.378734 z" + id="path2129-3-4-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:url(#linearGradient2281);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M -236.7388,-37.860371 -358.14574,-255.34435 -396.04325,-60.423698 Z" + id="path2129-3-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="display:inline;fill:url(#linearGradient2283);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m -200.69089,-233.05708 -168.15658,174.150434 125.05221,-1.165339 109.95783,-177.934285 z" + id="path2129-3-4-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:url(#linearGradient2279-8);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m -194.60407,-247.29346 -56.7317,195.503651 68.36917,-4.6595 -0.73866,-187.249461 z" + id="path2129-3-4-7-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:url(#linearGradient2345);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m -204.21661,-138.82059 -92.96928,75.535268 111.75784,0.67831 1.86196,-59.430158 z" + id="path2129-3-4-7-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <ellipse + ry="54.935959" + rx="60.371323" + cy="187.35947" + cx="90.723122" + id="path1850" + style="fill:url(#radialGradient1858);fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + style="display:inline" + inkscape:label="background 1" + id="layer7"> + <path + sodipodi:nodetypes="ccsscccsssssc" + inkscape:connector-curvature="0" + id="path2273" + d="m 115.59914,29.19912 c 0,0 2.28787,-4.666961 1.27104,-6.039597 -1.01683,-1.372636 -8.64308,-4.941489 -5.59258,-10.981086 3.0505,-6.0395965 11.69357,-3.5688523 16.52353,-6.0395965 4.82995,-2.4707445 7.62624,-6.58865092 7.62624,-6.58865092 l 74.22879,0.27452671 0.5084,77.41665571 c 0,0 -6.10099,-22.511227 -15.25248,-22.785756 -9.1515,-0.274526 -5.59257,-20.315006 -11.69357,-23.609333 -6.10099,-3.294326 -10.42254,-1.921689 -20.08245,-1.098108 -9.65991,0.823579 -8.38887,-12.353722 -19.57403,-14.000885 -11.18515,-1.647163 -16.26932,2.196217 -17.79457,7.137706 -1.52524,4.941489 -1.01683,7.961287 -10.16832,6.314124 z" + style="fill:#4ed2ef;fill-opacity:0.227679;stroke:none;stroke-width:0.254604px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csssccccc" + inkscape:connector-curvature="0" + id="path2291" + d="m 65.574314,-1.0495631 c 0,0 -31.718671,35.6917031 -9.801882,87.2888251 3.287395,7.739277 42.294635,4.705894 49.630088,12.029271 42.29737,42.227717 17.60794,51.571507 39.75313,51.298347 22.14518,-0.27318 -0.10169,41.86129 -0.10169,41.86129 L 209.61777,166.18816 -0.74163649,166.56235 -0.94319717,-1.222589 Z" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.263384px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cscscc" + inkscape:connector-curvature="0" + id="path5371" + d="m 161.89695,136.74034 c 0,0 22.30524,30.29247 -6.36432,29.94578 -28.4722,-0.34431 -60.107488,-0.7176 -73.10689,-0.83785 23.54908,-41.40752 48.50076,-68.769601 112.09757,-68.769601 5.25675,0 15.5734,0.585214 15.5734,0.585214 z" + style="fill:#000000;fill-opacity:0.09375;stroke:none;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.8689655,0,0,0.8689655,5.6375035,-0.67425985)" + id="g5622"> + <g + style="display:inline;opacity:0.07;fill:#4d4d4d;fill-opacity:1" + transform="matrix(0.11801229,0.02167799,-0.02167799,0.11801229,112.40629,-70.017645)" + id="g4665-1-9-30"> + <g + id="g5598-4"> + <path + inkscape:connector-curvature="0" + id="rect3381-3-0-5" + d="m 492.62799,570.69064 c -3.06742,0 -5.53392,2.4665 -5.53392,5.53393 v 5.05959 c -2.48593,0.61956 -4.83306,1.59009 -6.95694,2.89872 l -3.58387,-3.58388 c -2.169,-2.16899 -5.68391,-2.16899 -7.85291,0 -2.16899,2.169 -2.16899,5.68391 0,7.85291 l 3.53117,3.53117 c -1.3715,2.15754 -2.40541,4.51954 -3.05683,7.06234 h -4.84877 c -3.06743,0 -5.53393,2.4665 -5.53393,5.53393 0,3.06742 2.4665,5.53392 5.53393,5.53392 h 4.53254 c 0.54334,2.68432 1.56178,5.19224 2.89873,7.48398 l -3.05684,3.05683 c -2.16899,2.169 -2.16899,5.68391 0,7.85291 2.169,2.16899 5.68391,2.16899 7.85291,0 l 2.79331,-2.79332 c 2.32696,1.55627 4.95327,2.73002 7.7475,3.42577 v 3.74199 c 0,3.06742 2.4665,5.53392 5.53392,5.53392 3.06743,0 5.53393,-2.4665 5.53393,-5.53392 v -3.53118 c 2.94023,-0.6161 5.66234,-1.76036 8.11642,-3.32035 l 2.47709,2.47709 c 2.169,2.16899 5.68391,2.16899 7.85291,0 2.16899,-2.169 2.16899,-5.68391 0,-7.85291 l -2.5298,-2.52979 c 1.49742,-2.42764 2.63013,-5.12179 3.21495,-8.01102 h 3.68929 c 3.06742,0 5.53392,-2.4665 5.53392,-5.53392 0,-3.06743 -2.4665,-5.53393 -5.53392,-5.53393 h -4.00551 c -0.70391,-2.74763 -1.83491,-5.29808 -3.37306,-7.58938 l 3.00413,-3.00413 c 2.16899,-2.169 2.16899,-5.68391 0,-7.85291 -2.169,-2.16899 -5.68391,-2.16899 -7.85291,0 l -3.26765,3.26765 c -2.24723,-1.3104 -4.6999,-2.29715 -7.32586,-2.84602 v -4.79606 c 0,-3.06743 -2.4665,-5.53393 -5.53393,-5.53393 z m 0.42164,20.87081 c 7.5272,0 13.65035,6.12314 13.65035,13.65035 0,7.5272 -6.12315,13.59764 -13.65035,13.59764 -7.52721,0 -13.59765,-6.07044 -13.59765,-13.59764 0,-7.52721 6.07044,-13.65035 13.59765,-13.65035 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 547.61623,603.67335 c -1.86375,-0.67431 -3.90457,0.2821 -4.5789,2.14583 l -1.11225,3.07417 c -1.64662,-0.17006 -3.28607,-0.0963 -4.8642,0.23186 l -1.38967,-2.96537 c -0.84105,-1.79467 -2.97667,-2.56736 -4.77134,-1.72632 -1.79468,0.84105 -2.56737,2.97668 -1.72632,4.77135 l 1.36925,2.92176 c -1.30761,1.00941 -2.45505,2.21725 -3.40983,3.61902 l -2.94607,-1.0659 c -1.86375,-0.67432 -3.90458,0.28209 -4.5789,2.14583 -0.67431,1.86373 0.2821,3.90456 2.14583,4.57888 l 2.75394,0.9964 c -0.25998,1.75041 -0.1925,3.49807 0.11602,5.18442 l -2.52929,1.1853 c -1.79468,0.84105 -2.56737,2.97669 -1.72633,4.77136 0.84105,1.79466 2.97668,2.56735 4.77135,1.72631 l 2.31125,-1.08313 c 1.07173,1.45711 2.40942,2.74762 3.95422,3.7846 l -0.82261,2.27359 c -0.67432,1.86374 0.28208,3.90457 2.14582,4.57889 1.86374,0.67433 3.90458,-0.28208 4.57888,-2.14583 l 0.77628,-2.14549 c 1.92188,0.27201 3.82736,0.17517 5.66136,-0.23317 l 0.96052,2.04959 c 0.84104,1.79469 2.97668,2.56736 4.77135,1.72632 1.79466,-0.84105 2.56736,-2.97667 1.72631,-4.77134 l -0.98094,-2.09321 c 1.44349,-1.14583 2.72396,-2.53377 3.71443,-4.16066 l 2.24158,0.81102 c 1.86373,0.6743 3.90456,-0.28209 4.57888,-2.14583 0.67433,-1.86374 -0.28208,-3.90458 -2.14582,-4.57889 l -2.43371,-0.88054 c 0.17634,-1.82417 0.0499,-3.62243 -0.38105,-5.35274 l 2.48568,-1.16487 c 1.79469,-0.84105 2.56736,-2.97667 1.72632,-4.77134 -0.84105,-1.79468 -2.97667,-2.56737 -4.77134,-1.72632 l -2.70373,1.26706 c -1.07734,-1.29021 -2.35062,-2.42891 -3.82547,-3.33967 l 1.05432,-2.91404 c 0.67432,-1.86375 -0.28209,-3.90458 -2.14582,-4.5789 z m -4.33189,12.77359 c 4.57345,1.65471 6.94776,6.72114 5.29305,11.29458 -1.65473,4.57346 -6.70957,6.91574 -11.28301,5.26102 -4.57345,-1.65471 -6.92731,-6.67753 -5.27261,-11.25099 1.65472,-4.57344 6.68912,-6.95934 11.26257,-5.30461 z" + id="path3395-4-7-2" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="g8561-9" + transform="matrix(0.09683675,-0.03704459,0.03798087,0.09928426,193.42871,109.59089)" + style="display:inline;opacity:0.07"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3082-1-8-2-9" + d="m 88.420345,-859.48575 79.285695,-20 -3.5714,64.2857 -71.071495,22.6786 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3084-6-9-5-6" + d="m 92.706045,-792.34295 62.857095,17.8572 60,-27.8572 -50.7142,-13.5714 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path3086-8-3-5-8" + d="m 99.134645,-803.77145 -3.5715,-50 64.999995,-17.8572 -2.1428,49.2857 z" + style="fill:#8897a7;fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3205-7-6-2-5" + d="m 110.38464,-792.52145 54.4643,-18.9286 22.4999,6.6071 -46.0714,21.0715 z" + style="fill:#8897a7;fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3207-9-7-8-8" + d="m 159.67034,-788.23575 15,-7.3214 13.0357,3.2142 -16.7857,7.5 z" + style="fill:#8897a7;fill-opacity:1;stroke:none" /> + </g> + <g + id="g5565-6" + transform="matrix(0.14098869,0.03690014,-0.03690014,0.14098869,128.72216,217.84287)" + style="display:inline;opacity:0.07"> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 225.23567,-1376.6831 11.6167,-7.5761 -6.8185,-11.1117 -11.3642,9.3438 z" + id="path3339-4-8-26" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 235.58967,-1385.2695 -10.6066,6.8185 3.0305,4.5457 6.0609,2.273 6.8185,-4.7984 -1.2627,-5.5558 z" + id="path3341-5-9-78" + inkscape:connector-curvature="0" /> + <ellipse + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3343-3-7-64" + transform="translate(31.033765,-2052.5109)" + cx="189.27733" + cy="652.97314" + rx="15.531096" + ry="15.026019" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 194.93107,-1398.9064 h -11.1117" + id="path3349-0-2-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 207.81047,-1419.6146 -6.3134,-10.8591" + id="path3355-8-28-02" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 231.54907,-1425.1704 1.7678,-12.3744" + id="path3361-9-2-1" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#8897a7;stroke-width:1.78268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 214.45927,-1391.8374 v -6.7856 l 7.5,1.9643 0.5357,-7.5 5.3572,3.9286 0.3571,-6.4286" + id="path5483-5-8-1" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline;opacity:0.07;fill:#b6d7d0;fill-opacity:1" + id="g3191-3-2-9-46" + transform="matrix(0.05544805,-0.02067438,0.01818409,0.04876917,145.41997,23.482564)"> + <rect + rx="10.101525" + ry="10.354064" + transform="matrix(1.8844786,0,0,1.9491873,-506.85253,-347.28497)" + y="81.605591" + x="551.03821" + height="42.931484" + width="71.720833" + id="rect3175-8-0-5-5" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path3177-7-3-3-46" + d="m 555.33295,-164.3275 64.19105,0.53624" + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path3179-4-5-25-7" + d="m 554.87173,-146.43238 81.74893,0.9845" + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3181-2-6-25-6" + d="m 554.87173,-126.56094 87.56611,-0.9845" + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + transform="matrix(1.8844786,0,0,1.9491873,-506.85253,-347.28497)" + inkscape:connector-curvature="0" + id="path3183-7-6-86-8" + d="m 577.30217,122.51676 24.24367,27.27412 -0.50508,-28.28427" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + </g> + <g + id="g6142-4-2" + transform="matrix(0.23193221,-0.1198233,0.11645613,0.23863824,291.25443,176.87963)" + style="display:inline;opacity:0.07"> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m -166.7966,-812.10869 20.7081,2.5253 -1.2627,15.91 -19.9505,-2.778 z" + id="path3327-9-1-9-1-6" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m -159.2204,-815.89679 v 7.8287 l 7.8286,0.2525 -0.2525,-7.3236 z" + id="path3329-5-3-6-6-4" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#37353a;stroke-width:2.7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m -164.1588,-805.42759 13.6371,1.5152" + id="path4653-6-8-7-1-7" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#37353a;stroke-width:2.7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m -164.4113,-800.37689 12.6269,1.5153" + id="path4655-3-7-9-6-2" + inkscape:connector-curvature="0" /> + </g> + <g + id="g5778-6-4" + transform="matrix(-0.02058078,-0.16047057,0.16047057,-0.02058078,417.19379,-5.5708008)" + style="display:inline;opacity:0.07"> + <path + style="fill:#ffffff;stroke:none" + d="m 111.55728,-1374.5434 11.5577,-46.2309 39.58516,1.7336 -14.73607,51.1429 z" + id="path3680-5-4-1-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#8897a7;fill-opacity:1;stroke:none" + d="m 126.87119,-1417.1627 30.05014,1.5893 -10.97986,41.03 -29.47222,-4.9121 z" + id="path3684-6-2-8-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 130.33848,-1404.8825 16.18091,0.5779" + id="path3686-6-5-6-4" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 126.87119,-1396.7921 15.02507,0.8668" + id="path3688-1-8-2-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 124.84859,-1387.2569 14.44715,0.8668" + id="path3690-4-6-1-3" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:none" + d="m 134.81719,-1414.9955 0.72226,-10.402 15.02507,1.7338 -2.60045,10.4018 z" + id="path3682-1-2-4-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="g6772-9" + transform="matrix(0.10337933,0.10050375,-0.10050375,0.10337933,-56.278004,60.718851)" + style="display:inline;opacity:0.07"> + <g + id="g6820-25" + transform="matrix(0.90155579,0.63995361,-0.63995361,0.90155579,-459.65513,-565.61688)"> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path3652-0-5-40" + d="m 616.47141,-1393.9366 43.91929,1.7336 -0.57792,5.201 -16.75867,-0.1723 -0.68305,7.1068 -9.71889,-1.1557 0.57792,-5.7788 -15.02507,-0.5779 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path3654-1-9-5" + d="m 644.78779,-1383.5347 -11.8467,-0.5779 c -1.85233,-0.024 -3.49578,0.4392 -4.53547,2.3115 l -4.99963,25.138 c 0,2.6588 1.32231,4.7877 4.04521,6.3568 l 10.69086,0.8669 c 3.67018,0.5983 6.33841,-3.0549 6.37133,-6.0533 l 2.29701,-24.5748 c 0.25662,-1.466 -0.65208,-2.5437 -2.02261,-3.4672 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path3656-5-6-6" + d="m 630.91856,-1352.9595 -0.95155,6.0183 -5.86345,-0.6305 2.80186,13.7176 7.07178,1.1908 6.47639,-12.4421 -5.50737,-1.1207 1.31051,-6.0853 c -1.37402,-1.7841 -3.69517,-1.554 -5.33817,-0.6481 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path9181-2-5" + d="m 637.66803,-1379.8774 -2.21843,24.4031 -8.31924,-0.2773 4.71421,-23.5712 z" + style="fill:#8897a7;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + id="g8080-0-2" + transform="matrix(0.04080815,-0.0271914,0.0280271,0.03540497,193.01664,39.571935)" + style="display:inline;opacity:0.07"> + <path + inkscape:connector-curvature="0" + id="path4949-8-2-7-8" + d="m 467.28125,-318.28125 c -9.59789,1.39202 -17.9039,5.4961 -28.78125,4.3125 -12.38851,-1.6272 -25.34399,2.57984 -37.25,-1.65625 -11.96927,-2.18718 -29.85667,5.15813 -33.65625,10.09375 -33.37772,27.73315 -65.79415,76.99091 -64.65111,116.12271 0.54207,22.57556 14.5679,50.30469 40.11986,50.15854 11.72366,-0.38056 23.09965,-6.45906 29.03125,-16.78125 5.48662,-7.64498 11.74,-15.14409 17.15625,-22.65625 4.21285,-1.60515 14.15578,-1.1032 14.15578,-1.1032 0,0 41.05114,-0.28586 57.68797,11.91566 19.63805,12.36934 33.55134,31.8791 51.34375,46.375 17.64711,11.47569 44.02079,4.03924 53.34375,-14.75 8.98824,-14.70658 8.26695,-32.95118 4.25756,-49.14431 -4.78782,-33.13415 -10.56028,-67.76771 -29.11648,-96.1865 -9.80726,-12.80727 -17.72715,-20.13636 -31.53133,-28.09342 -12.97502,-6.2263 -27.64937,-9.19898 -42.10975,-8.60702 z" + style="fill:#ffffff;stroke:none" + sodipodi:nodetypes="ccccccccccccccccc" /> + <path + style="fill:#37353a;fill-opacity:1;stroke:none" + d="m 521.84458,-284.67744 c 7.8722,19.74622 17.66278,39.83526 19.99886,61.17902 3.30157,23.1362 5.8573,46.61661 3.34456,70.00112 -0.53057,6.76177 -1.04268,13.89277 -1.57325,20.65454 11.83084,-9.29251 16.80513,-25.91559 14.05478,-40.48221 -2.84713,-25.64869 -7.47821,-51.18106 -14.94832,-75.90273 -3.51474,-11.49682 -9.0783,-22.06398 -15.2007,-32.26316 -1.65246,-0.92956 -4.02347,-2.25701 -5.67593,-3.18658 z" + id="path4951-2-7-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <ellipse + transform="matrix(1.6341964,0,0,1.6799594,234.481,-514.17198)" + id="path4997-3-8-7" + style="fill:#37353a;fill-opacity:1;stroke:none" + cx="134.85536" + cy="160.65002" + rx="9.0913725" + ry="8.8388348" /> + <ellipse + id="path4997-0-3-7-7" + style="fill:#37353a;fill-opacity:1;stroke:none" + transform="matrix(1.6341964,0,0,1.6799594,267.44417,-540.28614)" + cx="134.85536" + cy="160.65002" + rx="9.0913725" + ry="8.8388348" /> + <ellipse + id="path4997-0-9-41-3-6" + style="fill:#37353a;fill-opacity:1;stroke:none" + transform="matrix(1.6341964,0,0,1.6799594,268.37501,-483.90688)" + cx="134.85536" + cy="160.65002" + rx="9.0913725" + ry="8.8388348" /> + <ellipse + id="path4997-0-9-4-1-0-7" + style="fill:#37353a;fill-opacity:1;stroke:none" + transform="matrix(1.6341964,0,0,1.6799594,293.55256,-512.90075)" + cx="134.85536" + cy="160.65002" + rx="9.0913725" + ry="8.8388348" /> + <path + sodipodi:nodetypes="csccccc" + inkscape:connector-curvature="0" + id="path5057-7-3-4" + d="m 379.30061,-188.65217 c -13.55794,0.0253 -18.48358,0.63582 -24.68619,3.88525 -10.05678,5.26856 -16.20698,15.41866 -19.28571,23.21429 -1.54391,4.55372 -5.08084,11.77112 -1.48985,13.43779 6.09342,0.90841 10.72566,-1.79037 19.34699,-5.93779 l 19.20957,-24.86257 z" + style="fill:#37353a;fill-opacity:1;stroke:none" /> + <path + style="fill:#37353a;fill-opacity:1;stroke:none" + d="m 358.65814,-255.79225 -1.02004,-21.555 h 21.42104 l -1.02004,20.65689 h 20.40099 v 21.55501 l -17.34087,-0.89813 v 17.06439 h -24.48116 v -16.16626 h -15.30078 l -1.27502,-20.6569 z" + id="path7090-8-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + </g> + <g + id="g7330-9" + transform="matrix(0.0240281,0.0224291,-0.02292236,0.02655519,90.407818,32.854397)" + style="display:inline;opacity:0.07"> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 807.89479,-1355.2916 h 95.1015 c 8.2379,0 19.7767,5.8446 19.7767,13.1045 v 171.2769 c 0,7.2599 -11.5388,13.1045 -19.7767,13.1045 h -95.1015 c -8.2379,0 -19.7767,-5.8446 -19.7767,-13.1045 v -171.2769 c 0,-7.2599 11.5388,-13.1045 19.7767,-13.1045 z" + id="rect3823-1-5-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sssssssss" /> + <rect + style="fill:#37353a;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="rect3821-7-2-6" + width="104.92254" + height="147.94579" + x="802.59802" + y="-1331.0696" + ry="0" /> + </g> + <path + style="display:inline;opacity:0.07;fill:#ffffff;stroke:none;stroke-width:0.144181" + d="m 228.68584,36.388144 -6.33757,3.115416 c -0.41217,0.399915 -0.73657,0.836427 -0.53369,1.492797 l 4.40295,7.139493 c 0.48089,0.408435 0.75581,0.215636 1.06738,0.129802 l 6.00401,-3.310115 0.26684,-0.778851 -6.27085,3.439935 c -0.37973,-0.540665 -0.39857,-1.12522 -0.0667,-1.752428 l 5.9373,-3.050516 z" + id="path7459-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.07;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.690601;marker:none;enable-background:accumulate" + d="m 218.00475,12.706679 c -0.50398,0.01334 -1.01455,0.125334 -1.47195,0.340316 -0.60363,0.283713 -1.12136,0.759784 -1.34191,1.422152 h -0.003 c -0.002,0.0066 -0.003,0.01269 -0.006,0.01937 -0.39448,1.01636 -0.37764,1.879983 -0.0609,2.542713 0.31884,0.667083 0.91806,1.101767 1.57985,1.319783 0.66179,0.218018 1.39452,0.232865 2.05022,0.06088 0.6557,-0.172006 1.24964,-0.540954 1.56326,-1.13164 l -0.6087,-0.323717 c -0.19753,0.37202 -0.61152,0.652113 -1.13163,0.788542 -0.52011,0.13643 -1.13289,0.122971 -1.65734,-0.0498 -0.52445,-0.172776 -0.94951,-0.492221 -1.17314,-0.960086 -0.22361,-0.467866 -0.26724,-1.115269 0.0858,-2.014253 l 0.006,-0.01108 0.003,-0.0083 c 0.14642,-0.455136 0.50645,-0.803047 0.98776,-1.029264 0.48132,-0.226222 1.07648,-0.317506 1.60476,-0.260082 0.52829,0.05741 0.97638,0.26374 1.22294,0.567196 0.24656,0.30346 0.34726,0.715153 0.11345,1.380654 l -0.003,0.0055 v 0.0055 c -0.0463,0.147814 -0.11763,0.334489 -0.18262,0.426093 -0.0163,0.02288 -0.0175,0.02111 -0.0276,0.03042 -0.20718,-0.240012 -0.36747,-0.533535 -0.50356,-0.846651 0.0176,-0.168214 0.0245,-0.338005 0,-0.514631 l -0.011,-0.07747 -0.0415,-0.06363 c -0.0394,-0.0612 -0.0815,-0.118214 -0.16602,-0.174314 -0.0434,-0.02878 -0.10995,-0.05271 -0.18261,-0.06087 l 0.0138,-0.06916 c -0.555,-0.109666 -1.13668,0.04622 -1.60199,0.362448 -0.46532,0.316233 -0.83266,0.819212 -0.83835,1.424923 v 0.0027 c -0.002,0.553066 0.3014,1.114386 0.83281,1.383418 l 0.0415,0.01937 0.0471,0.01108 c 0.31576,0.06382 0.60849,-0.058 0.80792,-0.213042 0.19942,-0.155043 0.33825,-0.342505 0.44822,-0.492498 v -0.0027 c 0.13209,-0.181591 0.25265,-0.384751 0.35969,-0.597635 0.11226,0.173377 0.23464,0.341892 0.38459,0.495259 l 0.0525,0.05534 0.0719,0.0249 c 0.17447,0.06703 0.37693,0.06624 0.534,-0.0027 0.15707,-0.06902 0.26451,-0.182549 0.34309,-0.293283 0.15331,-0.216071 0.22193,-0.451017 0.27115,-0.608704 h 0.003 c 0.002,-0.0047 0.001,-0.0091 0.002,-0.01386 0.28396,-0.8203 0.16638,-1.542796 -0.23242,-2.033616 -0.40108,-0.49365 -1.02998,-0.744716 -1.68777,-0.81622 -0.16444,-0.01788 -0.33003,-0.02381 -0.49802,-0.01937 z m 0.19922,1.981051 c 0.004,0.04671 -0.003,0.09269 0.008,0.141106 0.0178,0.07425 0.0564,0.158508 0.12173,0.240719 -0.0748,0.359587 -0.2539,0.716133 -0.48971,1.040327 -0.1019,0.138986 -0.21406,0.278118 -0.31543,0.356916 -0.0813,0.06321 -0.13845,0.07921 -0.20198,0.07747 -0.2249,-0.143769 -0.41211,-0.484989 -0.41225,-0.727671 0,-9.95e-4 -2e-5,-0.0021 0,-0.0027 0.004,-0.326602 0.20989,-0.637454 0.53399,-0.857719 0.22531,-0.15312 0.49871,-0.245482 0.75535,-0.268388 z" + id="path7469-3" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.07;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.690601;marker:none;enable-background:accumulate" + d="m 172.48496,8.8206819 c -0.50398,0.01334 -1.01455,0.125334 -1.47195,0.340316 -0.60363,0.283713 -1.12136,0.759784 -1.34191,1.4221521 h -0.003 c -0.002,0.0066 -0.003,0.01269 -0.006,0.01937 -0.39448,1.01636 -0.37764,1.879983 -0.0609,2.542713 0.31884,0.667083 0.91806,1.101767 1.57985,1.319783 0.66179,0.218018 1.39452,0.232865 2.05022,0.06088 0.6557,-0.172005 1.24964,-0.540954 1.56326,-1.131639 l -0.6087,-0.323717 c -0.19753,0.372019 -0.61152,0.652113 -1.13163,0.788542 -0.52011,0.136429 -1.13289,0.12297 -1.65734,-0.0498 -0.52445,-0.172777 -0.94951,-0.492221 -1.17314,-0.960087 -0.22361,-0.467865 -0.26724,-1.115269 0.0858,-2.014253 l 0.006,-0.01108 0.003,-0.0083 c 0.14642,-0.455135 0.50645,-0.803046 0.98776,-1.0292631 0.48132,-0.226222 1.07648,-0.317506 1.60476,-0.260082 0.52829,0.05741 0.97638,0.26374 1.22294,0.5671961 0.24656,0.30346 0.34726,0.715153 0.11345,1.380654 l -0.003,0.0055 v 0.0055 c -0.0463,0.147814 -0.11763,0.334489 -0.18262,0.426093 -0.0163,0.02288 -0.0175,0.02111 -0.0276,0.03042 -0.20718,-0.240012 -0.36747,-0.533535 -0.50356,-0.846651 0.0176,-0.168214 0.0245,-0.338005 0,-0.514631 l -0.011,-0.07747 -0.0415,-0.06363 c -0.0394,-0.0612 -0.0815,-0.118214 -0.16602,-0.174314 -0.0434,-0.02878 -0.10995,-0.05271 -0.18261,-0.06087 l 0.0138,-0.06916 c -0.555,-0.109666 -1.13668,0.04622 -1.60199,0.362448 -0.46532,0.316233 -0.83266,0.819212 -0.83835,1.424923 v 0.0027 c -0.002,0.553066 0.3014,1.114386 0.83281,1.383418 l 0.0415,0.01937 0.0471,0.01108 c 0.31576,0.06382 0.60849,-0.058 0.80792,-0.213043 0.19942,-0.155042 0.33825,-0.342505 0.44822,-0.492498 v -0.0027 c 0.13209,-0.181591 0.25265,-0.384751 0.35969,-0.597635 0.11226,0.173377 0.23464,0.341892 0.38459,0.495259 l 0.0525,0.05534 0.0719,0.0249 c 0.17447,0.06703 0.37693,0.06624 0.534,-0.0027 0.15707,-0.06902 0.26451,-0.182549 0.34309,-0.293283 0.15331,-0.216071 0.22193,-0.451017 0.27115,-0.608704 h 0.003 c 0.002,-0.0047 0.001,-0.0091 0.002,-0.01386 0.28393,-0.820291 0.16635,-1.542787 -0.23245,-2.0336071 -0.40108,-0.49365 -1.02998,-0.744716 -1.68777,-0.81622 -0.16444,-0.01788 -0.33003,-0.02381 -0.49802,-0.01937 z m 0.19922,1.9810511 c 0.004,0.04671 -0.003,0.09269 0.008,0.141106 0.0178,0.07425 0.0564,0.158508 0.12173,0.240719 -0.0748,0.359587 -0.2539,0.716133 -0.48971,1.040327 -0.1019,0.138986 -0.21406,0.278118 -0.31543,0.356916 -0.0813,0.06321 -0.13845,0.07921 -0.20198,0.07747 -0.2249,-0.143769 -0.41211,-0.484989 -0.41225,-0.727671 0,-10e-4 -2e-5,-0.0021 0,-0.0027 0.004,-0.326592 0.20989,-0.637444 0.53399,-0.857709 0.22531,-0.15312 0.49871,-0.245482 0.75535,-0.268388 z" + id="path7469-3-7" + inkscape:connector-curvature="0" /> + <g + id="g5565-6-9" + transform="matrix(0.14098869,0.03690014,-0.03690014,0.14098869,47.629484,212.03514)" + style="display:inline;opacity:0.07"> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 225.23567,-1376.6831 11.6167,-7.5761 -6.8185,-11.1117 -11.3642,9.3438 z" + id="path3339-4-8-26-2" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 235.58967,-1385.2695 -10.6066,6.8185 3.0305,4.5457 6.0609,2.273 6.8185,-4.7984 -1.2627,-5.5558 z" + id="path3341-5-9-78-1" + inkscape:connector-curvature="0" /> + <ellipse + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3343-3-7-64-3" + transform="translate(31.033765,-2052.5109)" + cx="189.27733" + cy="652.97314" + rx="15.531096" + ry="15.026019" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 194.93107,-1398.9064 h -11.1117" + id="path3349-0-2-5-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 207.81047,-1419.6146 -6.3134,-10.8591" + id="path3355-8-28-02-7" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:4.37875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 231.54907,-1425.1704 1.7678,-12.3744" + id="path3361-9-2-1-5" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#8897a7;stroke-width:1.78268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 214.45927,-1391.8374 v -6.7856 l 7.5,1.9643 0.5357,-7.5 5.3572,3.9286 0.3571,-6.4286" + id="path5483-5-8-1-3" + inkscape:connector-curvature="0" /> + </g> + <g + id="g5778-6-4-8" + transform="matrix(-0.01365965,-0.10650584,0.10650584,-0.01365965,284.57941,8.6141118)" + style="display:inline;opacity:0.07"> + <path + style="fill:#ffffff;stroke:none" + d="m 111.55728,-1374.5434 11.5577,-46.2309 39.58516,1.7336 -14.73607,51.1429 z" + id="path3680-5-4-1-5-3" + inkscape:connector-curvature="0" /> + <path + style="fill:#8897a7;fill-opacity:1;stroke:none" + d="m 126.87119,-1417.1627 30.05014,1.5893 -10.97986,41.03 -29.47222,-4.9121 z" + id="path3684-6-2-8-6-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 130.33848,-1404.8825 16.18091,0.5779" + id="path3686-6-5-6-4-7" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 126.87119,-1396.7921 15.02507,0.8668" + id="path3688-1-8-2-5-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 124.84859,-1387.2569 14.44715,0.8668" + id="path3690-4-6-1-3-6" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:none" + d="m 134.81719,-1414.9955 0.72226,-10.402 15.02507,1.7338 -2.60045,10.4018 z" + id="path3682-1-2-4-2-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + style="display:inline;opacity:0.07;fill:#b6d7d0;fill-opacity:1" + id="g3191-3-2-9-46-2" + transform="matrix(0.05690379,0.01624423,-0.01428756,0.05004956,110.95131,8.9152538)"> + <rect + rx="10.101525" + ry="10.354064" + transform="matrix(1.8844786,0,0,1.9491873,-506.85253,-347.28497)" + y="81.605591" + x="551.03821" + height="42.931484" + width="71.720833" + id="rect3175-8-0-5-5-6" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path3177-7-3-3-46-0" + d="m 555.33295,-164.3275 64.19105,0.53624" + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path3179-4-5-25-7-1" + d="m 554.87173,-146.43238 81.74893,0.9845" + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3181-2-6-25-6-5" + d="m 554.87173,-126.56094 87.56611,-0.9845" + style="fill:#37353a;fill-opacity:1;stroke:#37353a;stroke-width:7.516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + transform="matrix(1.8844786,0,0,1.9491873,-506.85253,-347.28497)" + inkscape:connector-curvature="0" + id="path3183-7-6-86-8-2" + d="m 577.30217,122.51676 24.24367,27.27412 -0.50508,-28.28427" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + </g> + <g + style="display:inline;opacity:0.07;fill:#4d4d4d;fill-opacity:1" + transform="matrix(0.11801229,0.02167799,-0.02167799,0.11801229,167.61995,-43.36287)" + id="g4665-1-9-30-8"> + <g + id="g5598-4-9"> + <path + inkscape:connector-curvature="0" + id="rect3381-3-0-5-6" + d="m 492.62799,570.69064 c -3.06742,0 -5.53392,2.4665 -5.53392,5.53393 v 5.05959 c -2.48593,0.61956 -4.83306,1.59009 -6.95694,2.89872 l -3.58387,-3.58388 c -2.169,-2.16899 -5.68391,-2.16899 -7.85291,0 -2.16899,2.169 -2.16899,5.68391 0,7.85291 l 3.53117,3.53117 c -1.3715,2.15754 -2.40541,4.51954 -3.05683,7.06234 h -4.84877 c -3.06743,0 -5.53393,2.4665 -5.53393,5.53393 0,3.06742 2.4665,5.53392 5.53393,5.53392 h 4.53254 c 0.54334,2.68432 1.56178,5.19224 2.89873,7.48398 l -3.05684,3.05683 c -2.16899,2.169 -2.16899,5.68391 0,7.85291 2.169,2.16899 5.68391,2.16899 7.85291,0 l 2.79331,-2.79332 c 2.32696,1.55627 4.95327,2.73002 7.7475,3.42577 v 3.74199 c 0,3.06742 2.4665,5.53392 5.53392,5.53392 3.06743,0 5.53393,-2.4665 5.53393,-5.53392 v -3.53118 c 2.94023,-0.6161 5.66234,-1.76036 8.11642,-3.32035 l 2.47709,2.47709 c 2.169,2.16899 5.68391,2.16899 7.85291,0 2.16899,-2.169 2.16899,-5.68391 0,-7.85291 l -2.5298,-2.52979 c 1.49742,-2.42764 2.63013,-5.12179 3.21495,-8.01102 h 3.68929 c 3.06742,0 5.53392,-2.4665 5.53392,-5.53392 0,-3.06743 -2.4665,-5.53393 -5.53392,-5.53393 h -4.00551 c -0.70391,-2.74763 -1.83491,-5.29808 -3.37306,-7.58938 l 3.00413,-3.00413 c 2.16899,-2.169 2.16899,-5.68391 0,-7.85291 -2.169,-2.16899 -5.68391,-2.16899 -7.85291,0 l -3.26765,3.26765 c -2.24723,-1.3104 -4.6999,-2.29715 -7.32586,-2.84602 v -4.79606 c 0,-3.06743 -2.4665,-5.53393 -5.53393,-5.53393 z m 0.42164,20.87081 c 7.5272,0 13.65035,6.12314 13.65035,13.65035 0,7.5272 -6.12315,13.59764 -13.65035,13.59764 -7.52721,0 -13.59765,-6.07044 -13.59765,-13.59764 0,-7.52721 6.07044,-13.65035 13.59765,-13.65035 z" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none" + d="m 547.61623,603.67335 c -1.86375,-0.67431 -3.90457,0.2821 -4.5789,2.14583 l -1.11225,3.07417 c -1.64662,-0.17006 -3.28607,-0.0963 -4.8642,0.23186 l -1.38967,-2.96537 c -0.84105,-1.79467 -2.97667,-2.56736 -4.77134,-1.72632 -1.79468,0.84105 -2.56737,2.97668 -1.72632,4.77135 l 1.36925,2.92176 c -1.30761,1.00941 -2.45505,2.21725 -3.40983,3.61902 l -2.94607,-1.0659 c -1.86375,-0.67432 -3.90458,0.28209 -4.5789,2.14583 -0.67431,1.86373 0.2821,3.90456 2.14583,4.57888 l 2.75394,0.9964 c -0.25998,1.75041 -0.1925,3.49807 0.11602,5.18442 l -2.52929,1.1853 c -1.79468,0.84105 -2.56737,2.97669 -1.72633,4.77136 0.84105,1.79466 2.97668,2.56735 4.77135,1.72631 l 2.31125,-1.08313 c 1.07173,1.45711 2.40942,2.74762 3.95422,3.7846 l -0.82261,2.27359 c -0.67432,1.86374 0.28208,3.90457 2.14582,4.57889 1.86374,0.67433 3.90458,-0.28208 4.57888,-2.14583 l 0.77628,-2.14549 c 1.92188,0.27201 3.82736,0.17517 5.66136,-0.23317 l 0.96052,2.04959 c 0.84104,1.79469 2.97668,2.56736 4.77135,1.72632 1.79466,-0.84105 2.56736,-2.97667 1.72631,-4.77134 l -0.98094,-2.09321 c 1.44349,-1.14583 2.72396,-2.53377 3.71443,-4.16066 l 2.24158,0.81102 c 1.86373,0.6743 3.90456,-0.28209 4.57888,-2.14583 0.67433,-1.86374 -0.28208,-3.90458 -2.14582,-4.57889 l -2.43371,-0.88054 c 0.17634,-1.82417 0.0499,-3.62243 -0.38105,-5.35274 l 2.48568,-1.16487 c 1.79469,-0.84105 2.56736,-2.97667 1.72632,-4.77134 -0.84105,-1.79468 -2.97667,-2.56737 -4.77134,-1.72632 l -2.70373,1.26706 c -1.07734,-1.29021 -2.35062,-2.42891 -3.82547,-3.33967 l 1.05432,-2.91404 c 0.67432,-1.86375 -0.28209,-3.90458 -2.14582,-4.5789 z m -4.33189,12.77359 c 4.57345,1.65471 6.94776,6.72114 5.29305,11.29458 -1.65473,4.57346 -6.70957,6.91574 -11.28301,5.26102 -4.57345,-1.65471 -6.92731,-6.67753 -5.27261,-11.25099 1.65472,-4.57344 6.68912,-6.95934 11.26257,-5.30461 z" + id="path3395-4-7-2-3" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="g7330-9-2" + transform="matrix(0.0240281,0.0224291,-0.02292236,0.02655519,170.75834,44.858624)" + style="display:inline;opacity:0.07"> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 807.89479,-1355.2916 h 95.1015 c 8.2379,0 19.7767,5.8446 19.7767,13.1045 v 171.2769 c 0,7.2599 -11.5388,13.1045 -19.7767,13.1045 h -95.1015 c -8.2379,0 -19.7767,-5.8446 -19.7767,-13.1045 v -171.2769 c 0,-7.2599 11.5388,-13.1045 19.7767,-13.1045 z" + id="rect3823-1-5-2-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sssssssss" /> + <rect + style="fill:#37353a;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="rect3821-7-2-6-6" + width="104.92254" + height="147.94579" + x="802.59802" + y="-1331.0696" + ry="0" /> + </g> + <g + id="g5778-6-4-1" + transform="matrix(-0.02058078,-0.16047057,0.16047057,-0.02058078,443.07912,43.528004)" + style="display:inline;opacity:0.07"> + <path + style="fill:#ffffff;stroke:none" + d="m 111.55728,-1374.5434 11.5577,-46.2309 39.58516,1.7336 -14.73607,51.1429 z" + id="path3680-5-4-1-5-32" + inkscape:connector-curvature="0" /> + <path + style="fill:#8897a7;fill-opacity:1;stroke:none" + d="m 126.87119,-1417.1627 30.05014,1.5893 -10.97986,41.03 -29.47222,-4.9121 z" + id="path3684-6-2-8-6-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 130.33848,-1404.8825 16.18091,0.5779" + id="path3686-6-5-6-4-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 126.87119,-1396.7921 15.02507,0.8668" + id="path3688-1-8-2-5-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:#ffffff;stroke-width:2.544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 124.84859,-1387.2569 14.44715,0.8668" + id="path3690-4-6-1-3-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff;stroke:none" + d="m 134.81719,-1414.9955 0.72226,-10.402 15.02507,1.7338 -2.60045,10.4018 z" + id="path3682-1-2-4-2-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + sodipodi:nodetypes="cscscc" + inkscape:connector-curvature="0" + id="path5847" + d="m 71.187237,-2.4539529 c 0,0 -21.60874,21.5151969 -21.515195,52.1041939 0.09458,30.926128 19.924941,52.665459 19.924941,52.665459 0,0 -29.934185,-36.48229 -31.430896,-48.643053 C 36.669379,41.511884 59.681284,-7.1311695 59.681284,-7.1311695 Z" + style="fill:#ffffff;fill-opacity:0.186869;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.4455495,0.48781957,-0.48781957,0.4455495,223.95731,8.0473802)" + id="g5976-9" + style="display:inline"> + <circle + style="fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-4" + cx="56.319801" + cy="177.62117" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-39" + cx="60.795223" + cy="169.99994" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-1" + cx="54.886158" + cy="184.32758" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-67" + cx="66.347733" + cy="178.35974" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-1" + cx="65.697533" + cy="173.39439" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-4" + cx="134.26445" + cy="-133.07188" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3" + cx="141.95882" + cy="-131.68369" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-5-4" + cx="138.98499" + cy="-134.43965" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-2" + cx="135.24774" + cy="-130.967" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-3-4" + cx="139.39973" + cy="-127.10815" + r="0.32027039" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-8" + cx="133.41142" + cy="117.36374" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-9" + cx="131.39594" + cy="121.3326" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1" + cx="133.33705" + cy="127.30769" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-4-1" + cx="146.26036" + cy="128.08867" + r="0.55344278" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2" + cx="114.41163" + cy="-127.37165" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-4" + cx="108.96425" + cy="-123.91449" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-67-7" + cx="66.495689" + cy="160.04765" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-1-8" + cx="65.845497" + cy="155.08231" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7" + cx="128.92426" + cy="115.50705" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-4-7" + cx="101.64738" + cy="-123.74488" + r="0.55785602" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-4-7-7" + cx="107.65559" + cy="-129.01219" + r="0.55785602" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-4-7-7-2" + cx="121.50475" + cy="-126.38529" + r="0.55785602" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-4-7-7-4" + cx="87.129845" + cy="-125.07603" + r="0.55785602" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-4-7-7-3" + cx="101.2291" + cy="-130.13832" + r="0.55785602" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-41" + cx="92.581078" + cy="-126.72153" + r="0.71714538" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7" + cx="133.48918" + cy="101.48734" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-0" + cx="135.74258" + cy="90.212624" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-72" + cx="134.28307" + cy="92.050896" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-3" + cx="132.94377" + cy="86.103096" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-3-3" + cx="127.44612" + cy="85.804016" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-3-2" + cx="124.98568" + cy="80.062126" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-3-7" + cx="132.96303" + cy="80.822235" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-39-9" + cx="49.583637" + cy="181.74942" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-39-6" + cx="46.016808" + cy="183.76508" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-39-0" + cx="48.491772" + cy="186.4091" + r="0.71714538" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-2" + cx="125.83287" + cy="101.69645" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-1" + cx="127.47049" + cy="102.55019" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-29" + cx="127.10728" + cy="107.47958" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-0" + cx="130.58003" + cy="99.917145" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-5" + cx="130.97922" + cy="95.658409" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-4-7-7-4-7" + cx="78.554184" + cy="-120.3063" + r="0.55785602" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-4-7-7-4-73" + cx="84.285736" + cy="-127.41341" + r="0.55785602" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.205411;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-3-2-4-7-7-4-0" + cx="78.91317" + cy="-115.98283" + r="0.55785602" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-5-3" + cx="130.23428" + cy="77.294228" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-5-0" + cx="138.14334" + cy="78.740433" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-5-9" + cx="137.3353" + cy="85.838425" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-5-5" + cx="143.52402" + cy="89.20005" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.20202;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-1-7-7-5-98" + cx="149.6286" + cy="83.609207" + r="0.32027039" /> + </g> + <g + transform="matrix(-0.274637,0.60088003,-0.60088003,-0.274637,220.69279,59.084073)" + id="g5976-93" + style="display:inline"> + <circle + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-10" + cx="66.915405" + cy="176.85785" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-4" + cx="69.816925" + cy="171.25676" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-36" + cx="71.635941" + cy="175.49008" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-15" + cx="67.898705" + cy="178.96274" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-19" + cx="67.83255" + cy="170.463" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-1" + cx="134.26445" + cy="-133.07188" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-9" + cx="137.16597" + cy="-138.67297" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-5-42" + cx="138.98499" + cy="-134.43965" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-8" + cx="135.24774" + cy="-130.967" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-3-88" + cx="135.18159" + cy="-139.46674" + r="0.32027039" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-83" + cx="131.70023" + cy="119.31641" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-2" + cx="133.22725" + cy="121.4063" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-38" + cx="133.33705" + cy="127.30769" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-4-17" + cx="146.26036" + cy="128.08867" + r="0.55344278" /> + </g> + </g> + <g + transform="translate(0,-131.6354)" + style="display:inline" + inkscape:label="Illustrations" + id="layer2"> + <g + id="g1789-6" + transform="matrix(0.60423618,0,0,0.68220614,49.370499,143.97876)" + style="display:inline;fill:#ffffff;fill-opacity:0.454545;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none"> + <g + transform="translate(-17.296286,7.1749452)" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" + id="g6774"> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 70.747849,37.581741 2.415416,-0.26742 4.528913,8.824857 0.201284,21.661012 -2.314776,2.228498 z" + id="path1397-9" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1797-4" + d="m 59.979103,71.811486 -0.402573,-20.32391 5.937908,1.06968 0.402569,20.145631 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1801-8" + d="m 59.526212,51.353867 1.71092,-0.713121 -0.100641,-2.183928 4.830838,0.846827 1.056748,4.858129 -7.548187,-1.73823 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1799-4" + d="m 66.017651,72.257186 4.428268,-1.961077 -0.503213,-19.254234 -1.509635,-0.623979 -0.201284,-2.13936 -2.918634,0.8914 -0.100644,2.228498 -3.522487,-0.534838 -0.905781,0.802259 4.428268,0.713121 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1803-4" + d="m 61.880629,49.140702 0.03558,0.945473 2.633105,0.44122 v -0.913954 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1805-8" + d="m 61.133395,48.384327 2.8466,-1.04002 4.376647,0.882441 -2.98893,1.008505 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 62.317661,58.81744 -0.720635,-0.377475 v -1.201058 l -0.995159,-0.686316 -1.304004,-1.92169 -3.328644,-0.686318 -2.402112,0.857898 2.09327,7.3436 z" + id="path1782-9" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 51.094181,75.112666 50.799552,58.988929 56.925691,60.662502 57.16834,76.72593 Z" + id="path1774-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 57.11981,76.58034 62.700762,74.49355 62.26399,58.866891 56.828631,60.711032 Z" + id="path1776-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 61.597026,57.341857 0.06863,1.166741 -4.735595,1.509897 -0.03431,-1.201055 z" + id="path1778-7" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 60.601867,56.689854 -1.304004,-1.921689 -2.951168,0.892212 0.274527,1.92169 z" + id="path1780-8" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1791-6" + d="m 53.532793,54.802481 -2.196219,3.191378 0.06863,1.441267 5.456227,1.441268 -0.514739,-5.387597 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1793-7" + d="m 56.655538,57.616383 -3.50022,-0.617686 -0.549056,0.514739 4.117909,1.304004 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1795-4" + d="m 56.930064,59.984179 -4.461065,-1.098108 -0.583369,0.617685 4.975804,1.406954 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 75.478043,70.117829 -4.226982,-0.4457 -0.402572,-32.179529 4.528912,9.716258 z" + id="path1395-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 75.421301,47.146555 -2.59199,-0.638028 -0.338952,0.35889 2.891066,0.817475 z" + id="path1795-9-3" + inkscape:connector-curvature="0" /> + <use + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" + x="0" + y="0" + xlink:href="#path1795-9-3" + id="use1414-9" + width="100%" + height="100%" + transform="translate(0,1.3745788)" /> + <use + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" + x="0" + y="0" + xlink:href="#path1795-9-3" + id="use1416-1" + width="100%" + height="100%" + transform="translate(0,2.7491576)" /> + <use + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" + x="0" + y="0" + xlink:href="#path1795-9-3" + id="use1418-0" + transform="translate(0,4.1237364)" + width="100%" + height="100%" /> + <use + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" + x="0" + y="0" + xlink:href="#path1795-9-3" + id="use1420-9" + transform="translate(0,5.4983152)" + width="100%" + height="100%" /> + <g + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-miterlimit:4;stroke-dasharray:none" + id="g1460-6" + transform="translate(-1.5519528,1.3745788)"> + <path + inkscape:connector-curvature="0" + id="path1423-1" + d="m 80.420841,65.569362 1.636794,-8.572279 2.063787,10.211096 -2.917765,1.386693 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1425-1" + d="M 82.199969,57.186177 V 46.849014 l 1.138636,-0.945473 4.198735,0.06303 1.067476,1.26063 0.213494,20.233106 -6.618341,-0.189097 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1427-0" + d="m 83.125111,46.218701 -0.213495,-6.870433 2.633106,0.31516 0.355824,7.752868 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1429-9" + d="m 85.687051,39.411299 1.56563,-0.378188 0.569318,7.752872 -1.992618,0.882442 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1431-1" + d="M 85.615887,47.542362 86.25637,67.019085 89.814621,66.136647 89.031805,47.92055 87.964329,46.344764 Z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 86.512037,47.277048 -2.59199,-0.638028 -0.338952,0.358889 2.891066,0.817475 z" + id="path1795-9-7-2" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1448-9" + d="m 83.051389,39.319972 1.383838,-4.033585 1.107066,4.412429 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1450-5" + d="m 84.435227,34.706978 2.893468,4.479282 -1.912207,0.646265 z" + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 69.416353,61.337674 2.701286,-1.010648 2.77115,1.691289 0.372593,9.446471 -2.817724,1.54691 z" + id="path1560-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 66.878072,72.784816 -0.512312,-10.147738 3.073879,-1.340655 2.747863,1.835668 0.558887,10.127112 z" + id="path1558-9" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 65.227118,69.79247 -4.376647,2.8049 7.329994,1.008504 3.522669,-3.025509 z" + id="path1562-9" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 61.313046,72.628889 0.03558,4.097046 7.57907,1.134563 -0.747234,-4.254624 z" + id="path1564-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 68.038135,73.574359 3.771746,-3.057026 0.533736,3.718858 -3.98524,2.363681 z" + id="path1566-3" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 51.071275,66.262321 -0.30963,-7.19882 h 0.541851 l 0.07741,-1.09696 2.322212,-3.22233 2.399617,-0.75416 3.328506,0.685599 0.154817,-3.290888 1.780361,-0.891279 -0.232221,-2.125367 2.709246,0.685603 0.154817,3.016646 -1.161106,1.302644 0.387034,4.456409 -0.851476,0.959845 -2.012585,3.702249 -3.173691,1.371201 -6.115161,6.376095 z" + id="path6599-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccc" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 70.964898,53.167329 4.412203,-5.896176 2.399621,-0.891284 -4.644424,-9.04994 -2.322213,0.342799 z" + id="path6601-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 82.88559,36.850006 1.006293,4.319294 -0.387034,7.130255 -0.387038,0.548484 0.154817,8.227219 -2.709251,3.702248 V 48.093874 l 0.851477,-0.822721 v -6.650337 z" + id="path6603-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7f1ff;fill-opacity:0.348485;stroke:none;stroke-width:2.09022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 67.017137,69.278967 3.096284,-2.742408 2.477026,-0.959841 -0.30963,-2.742407 2.631842,-0.685603 -2.322212,-2.056805 -6.347383,2.331047 z" + id="path6605-2" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + transform="matrix(0.4455495,0.48781957,-0.48781957,0.4455495,202.82943,164.78235)" + id="g5976-3" + style="display:inline"> + <circle + style="fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-2" + cx="66.915405" + cy="176.85785" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-5" + cx="69.816925" + cy="171.25676" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-09" + cx="71.635941" + cy="175.49008" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-6" + cx="67.898705" + cy="178.96274" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-9" + cx="67.83255" + cy="170.463" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-3" + cx="134.26445" + cy="-133.07188" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-4" + cx="137.16597" + cy="-138.67297" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-5-92" + cx="138.98499" + cy="-134.43965" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-9" + cx="135.24774" + cy="-130.967" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-3-8" + cx="135.18159" + cy="-139.46674" + r="0.32027039" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-28" + cx="131.70023" + cy="119.31641" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-8" + cx="133.22725" + cy="121.4063" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-3" + cx="133.33705" + cy="127.30769" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.181818;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-4-3" + cx="146.26036" + cy="128.08867" + r="0.55344278" /> + </g> + <g + transform="matrix(0.65638937,-0.07506861,0.07506861,0.65638937,32.510582,65.043709)" + id="g5976-2-4" + style="display:inline"> + <circle + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-0-5" + cx="64.494247" + cy="173.35623" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-3-2" + cx="69.816925" + cy="171.25676" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-3-7" + cx="71.635941" + cy="175.49008" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-8-6" + cx="53.46983" + cy="175.59944" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-7-7" + cx="67.83255" + cy="170.463" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-26-9" + cx="134.26445" + cy="-133.07188" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-7-9" + cx="143.45297" + cy="-127.39359" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-5-9-4" + cx="138.98499" + cy="-134.43965" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-0-7" + cx="135.24774" + cy="-130.967" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-3-0-2" + cx="143.54533" + cy="-136.26918" + r="0.32027039" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-2-6" + cx="131.70023" + cy="119.31641" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-4-1" + cx="133.22725" + cy="121.4063" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-9-7" + cx="133.33705" + cy="127.30769" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-4-7-0" + cx="146.26036" + cy="128.08867" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-2-6-0" + cx="117.27026" + cy="108.14397" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-2-6-01" + cx="105.67155" + cy="131.68532" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-2-6-7" + cx="148.74918" + cy="81.168297" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-2-6-1" + cx="136.95624" + cy="110.45168" + r="0.55344278" /> + </g> + <g + transform="matrix(0.60930812,0.25539364,-0.25539364,0.60930812,113.247,39.299484)" + id="g5976-2" + style="display:inline"> + <circle + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-0" + cx="66.915405" + cy="176.85785" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-3" + cx="69.816925" + cy="171.25676" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-3" + cx="71.635941" + cy="175.49008" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-8" + cx="67.898705" + cy="178.96274" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-7" + cx="67.83255" + cy="170.463" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-26" + cx="134.26445" + cy="-133.07188" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-7" + cx="137.16597" + cy="-138.67297" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-5-9" + cx="138.98499" + cy="-134.43965" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-0" + cx="135.24774" + cy="-130.967" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-3-0" + cx="135.18159" + cy="-139.46674" + r="0.32027039" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-2" + cx="131.70023" + cy="119.31641" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-4" + cx="133.22725" + cy="121.4063" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-9" + cx="133.33705" + cy="127.30769" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-4-7" + cx="146.26036" + cy="128.08867" + r="0.55344278" /> + </g> + <g + transform="matrix(0.4455495,0.48781956,-0.48781956,0.4455495,154.04563,61.67587)" + id="g5976"> + <circle + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973" + cx="66.915405" + cy="176.85785" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1" + cx="69.816925" + cy="171.25676" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7" + cx="71.635941" + cy="175.49008" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0" + cx="67.898705" + cy="178.96274" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7" + cx="67.83255" + cy="170.463" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3" + cx="134.26445" + cy="-133.07188" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8" + cx="137.16597" + cy="-138.67297" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-5" + cx="138.98499" + cy="-134.43965" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1" + cx="135.24774" + cy="-130.967" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-3" + cx="135.18159" + cy="-139.46674" + r="0.32027039" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2" + cx="131.70023" + cy="119.31641" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4" + cx="133.22725" + cy="121.4063" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6" + cx="133.33705" + cy="127.30769" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-4" + cx="146.26036" + cy="128.08867" + r="0.55344278" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-7" + cx="163.15636" + cy="-97.020065" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-40" + cx="180.23828" + cy="-113.85796" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-79" + cx="157.23447" + cy="-120.80077" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-1" + cx="124.55238" + cy="-120.62488" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-6" + cx="181.03282" + cy="-130.351" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-67" + cx="157.9874" + cy="-112.20711" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-85" + cx="142.18866" + cy="-115.30206" + r="0.32027039" /> + </g> + <path + style="fill:#8789ac;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.17817,216.9979 -30.44434,-4.98806 -1.806018,8.29909 13.330135,11.52412 7.009085,10.23411 52.933568,-14.49114 -2.15002,-17.07119 -9.3741,-1.33301 z" + id="path369" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,21.347445,155.88061)" + id="g1350-0" + style="display:inline"> + <path + inkscape:connector-curvature="0" + id="path1340-0" + d="m 110.26016,73.62001 -1.18898,11.889851 4.3677,1.11619 3.20297,-2.960331 -2.86326,-11.06484 z" + style="fill:#c8b7b7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3531-3" + d="m 109.49229,78.037838 -2.92966,1.02934 -0.76541,1.39885 3.5631,0.554259 z" + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3533-4" + d="m 105.85001,80.439634 -0.87099,3.93261 4.3813,1.372456 0.8182,-4.671625 z" + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1332-3-3" + d="m 104.01257,90.724447 -0.34316,-5.471277 1.28474,0.255259 1.25464,5.627806 z" + style="display:inline;fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1326-9" + d="m 113.31108,86.613311 -4.87286,-0.686316 1.64716,-12.285091 2.74527,0.34316 z" + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1328-9" + d="m 110.15401,73.573274 1.54422,-1.166742 2.71096,-0.24021 -1.57854,2.024638 z" + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1330-5" + d="m 114.34055,72.26927 3.63749,10.77519 -4.46107,3.568851 -0.61768,-12.559615 z" + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1332-3" + d="m 114.54645,85.446573 -0.34316,-5.284648 1.09811,0.06863 1.44127,5.627806 z" + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1334-0" + d="m 114.20329,80.058976 1.26969,-1.132425 0.92653,0.274529 -1.02948,1.132425 z" + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1336-5" + d="m 116.26224,79.132448 4.35871,4.782547 -3.87828,1.977684 -1.37264,-5.662123 z" + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1338-8" + d="m 111.56097,73.899275 1.1839,-0.03432 0.87505,-0.652003 -0.61769,0.875057 -0.0858,1.57853 -0.29168,-1.527058 z" + style="fill:#c8b7b7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1334-0-4" + d="m 103.66941,85.33685 1.26969,-1.132425 2.30759,0.815754 -2.41054,0.5912 z" + style="display:inline;fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3539-8" + d="m 109.07,80.888321 -1.84754,0.739013 -1.24049,3.008842 2.37541,0.950161 z" + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3525-2" + d="m 111.2274,81.386015 -2.09025,-0.149304 -1.23175,0.858495 4.10584,1.045124 z" + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1336-5-5" + d="m 107.24006,85.026199 1.98852,3.158872 -3.01979,2.985482 -1.37264,-5.662123 z" + style="display:inline;fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3527-9" + d="m 107.98005,82.05788 -2.35152,8.99553 4.55374,-0.746518 1.75432,-7.166562 z" + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path3529-0" + d="m 111.97392,83.028352 -2.31421,6.942608 4.03119,-1.418383 z" + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g990"> + <path + id="path135" + style="fill:#b26b89;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.33134,93.916091 c -0.0717,0.5832 0.192464,1.135934 0.214471,1.713056 0.354232,0.262485 1.068442,0.427136 0.992241,0.952317 -0.0136,1.063225 0.174385,2.118489 0.206764,3.176905 0.118192,0.546051 0.623,0.860591 0.958167,1.269511 0.970132,1.01167 2.071898,1.89356 2.955564,2.9877 0.34374,0.41843 0.660617,0.87213 0.889424,1.35968 -0.407317,-0.71014 -0.44159,-1.56042 -0.693922,-2.32872 -0.154632,-0.72085 -0.224175,-1.46448 -0.488529,-2.15707 -0.39839,-1.881094 -0.310239,-3.761022 -0.859365,-5.445484 -0.491719,-0.09773 -1.032843,-0.002 -1.481941,0.20223 -0.576797,0.418944 -0.481261,-0.563583 -0.651378,-0.880319 -0.183577,-0.464168 -0.740556,-0.5478 -1.169066,-0.658821 -0.291386,-0.06069 -0.586976,-0.104744 -0.87243,-0.190985 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccc" /> + <path + style="fill:url(#linearGradient2155);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.737361,95.535442 -0.480422,3.225694 0.892212,2.264854 1.5099,1.16674 1.304004,5.55917 0.41179,3.98064 2.745271,1.02948 1.578531,-1.23537 v -0.61769 l 0.754952,0.0686 0.617685,1.85306 1.853057,0.34316 0.549056,2.47075 2.196216,0.48042 1.235371,1.71579 0.823582,1.37264 1.990323,-0.61769 0.411789,3.56885 2.058953,2.95117 h 1.372637 l 2.26485,-1.78442 0.480422,-3.77475 4.804225,-2.40211 0.686318,1.44126 -0.823581,2.67664 1.235371,4.5297 4.255169,4.39243 3.500223,3.08843 13.45183,3.70612 -0.274529,-12.90278 2.127586,-7.00044 -1.578531,-9.19666 -37.198426,-9.539814 -9.53982,-2.882534 z" + id="path683" + inkscape:connector-curvature="0" /> + <path + style="fill:#ca83a1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 39.223063,112.59044 0.137266,-10.26045 0.480422,-0.27453 1.406951,4.42675 0.652003,1.30401 -0.17158,3.19137 -1.166741,-0.0343 z" + id="path893" + inkscape:connector-curvature="0" /> + <path + style="fill:#86597a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 39.215888,112.4072 0.08299,-6.41685 0.46876,3.09516 1.051904,1.78757 -0.04934,0.71435 -1.610381,1.20442 z" + id="path685" + inkscape:connector-curvature="0" /> + <path + style="fill:#b98cad;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 47.834404,113.53165 0.36794,-1.28144 5.598395,-1.83812 -0.04758,1.62718 -2.064903,3.24644 -0.789803,3.29084 -1.960231,0.26327 -1.401977,-2.71673 z" + id="path697" + inkscape:connector-curvature="0" /> + <path + style="fill:#86597a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 51.161407,116.88509 -0.275873,1.76401 -2.000639,0.55175 -2.175584,-3.31608 -1.632807,-2.47725 2.220439,1.95578 0.432874,-1.9883 0.28933,3.4585 1.238064,1.52067 1.576737,-1.28293 0.181671,-3.85773 2.586029,-1.33339 -1.964753,3.24768 z" + id="path687" + inkscape:connector-curvature="0" /> + <path + style="fill:#cb84a2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.938416,99.012787 1.287407,1.666453 1.527394,2.15427 1.177507,2.33932 0.998075,-2.31464 2.11727,-3.635695 -0.08747,-1.327779 -3.707464,0.176067 -2.202497,0.827616 z" + id="path689" + inkscape:connector-curvature="0" /> + <path + style="fill:#b98cad;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 45.599093,100.16338 0.231015,2.30343 1.433193,2.31015 0.336431,2.38529 0.248957,-3.33514 0.780518,-2.34605 -0.242229,-1.42422 z" + id="path691" + inkscape:connector-curvature="0" /> + <path + style="fill:#b48caf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 57.343746,119.67244 1.938028,-4.8419 -0.916678,-4.604 3.09577,-3.6461 -0.478957,6.3089 0.948397,3.18617 0.352081,1.01977 z" + id="path693" + inkscape:connector-curvature="0" /> + <path + style="fill:#b98cad;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 53.730956,124.8458 -0.19983,-6.117 0.704162,-5.08772 3.054536,5.89338 -0.444066,3.83007 -2.185435,1.8175 z" + id="path695" + inkscape:connector-curvature="0" /> + <path + style="fill:#ebc8da;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 44.535632,115.3999 -0.694645,-3.23692 -0.142735,-1.9634 1.018178,1.12443 0.513847,2.25046 1.865074,2.5962 z" + id="path699" + inkscape:connector-curvature="0" /> + <path + d="m 42.334337,112.41515 c -0.0595,-0.15969 -0.151381,-0.48025 -0.259885,-0.85592 v 0 c -0.08002,-0.27704 -0.174793,-0.57404 -0.322981,-0.85313 l -0.0037,-0.006 c -0.002,-0.0113 -8.33e-4,-0.0218 0.0011,-0.0319 v 0 c 0.0021,-0.0105 0.0056,-0.0233 0.01005,-0.0369 v 0 c 0.005,-0.0153 0.01115,-0.0318 0.01861,-0.0502 l 0,0 c 0.0084,-0.0207 0.01778,-0.0421 0.02724,-0.0635 v 0 c 0.0099,-0.0225 0.01834,-0.0413 0.02678,-0.0612 v 0 c 0.01648,-0.0388 0.02875,-0.0698 0.0391,-0.10045 v 0 c 0.01422,-0.0421 0.03357,-0.10935 0.03682,-0.18781 v 0 c 3.73e-4,-0.009 5.85e-4,-0.0183 5.65e-4,-0.028 l -0.0014,0.041 c 0.0699,-0.43442 0.201492,-1.07877 0.184676,-1.68682 v 0 c -0.0029,-0.106 -0.01091,-0.22256 -0.02517,-0.34573 l -1.77e-4,-0.004 c -0.03681,-0.20696 -0.09781,-0.43786 -0.194219,-0.64897 l 0,0 c -0.05143,-0.11262 -0.108217,-0.20956 -0.16877,-0.29363 v 0 c -0.08517,-0.11824 -0.166489,-0.19519 -0.221961,-0.24493 0.03777,0.0654 0.08247,0.16387 0.115165,0.29538 v 0 c 0.02312,0.093 0.03817,0.1935 0.04561,0.30385 l 0,0 c 0.01408,0.20882 -0.0012,0.41615 -0.015,0.61356 l -1.77e-4,-0.004 c -0.0045,0.11458 -0.01091,0.22241 -0.01667,0.32103 v 0 c -0.03262,0.558 -0.08393,1.19691 -0.127638,1.63842 -6.85e-4,0.007 -0.0024,0.0137 -0.0035,0.0205 -5.78e-4,0.003 -8.35e-4,0.007 -4.49e-4,0.0104 3.86e-4,0.003 0.0015,0.007 0.0026,0.0101 7.15e-4,0.002 0.0013,0.004 0.0019,0.007 v 0 c 0.005,0.0229 0.0035,0.0584 4.87e-4,0.0937 v 0 c -0.0021,0.0244 -0.0049,0.0495 -0.01032,0.0921 v 0 c -0.0024,0.0186 -0.0059,0.0466 -0.0087,0.0735 v 0 c -0.0028,0.0274 -0.0058,0.0613 -0.0065,0.0963 l 0,0 c -6.97e-4,0.0311 1.9e-4,0.0664 0.0052,0.10276 v 0 c 0.0047,0.034 0.013,0.0701 0.02787,0.10607 v 0 c 0.01433,0.0346 0.03422,0.0678 0.06116,0.0979 l -0.0037,-0.006 c 0.169828,0.23867 0.296564,0.50352 0.413695,0.76926 v 0 c 0.156375,0.35477 0.292616,0.66452 0.372279,0.81517 z" + id="path-1" + inkscape:path-effect="#path-effect785;#path-effect787" + inkscape:original-d="m 42.334337,112.41515 c -0.110511,-0.24898 -0.195831,-0.49776 -0.285471,-0.75174 -0.05145,-0.14577 -0.323831,-0.88352 -0.453581,-0.9484 -0.0088,-0.004 0.03956,-0.17701 0.04124,-0.18873 0.03127,-0.21889 0.07327,-0.44059 0.09833,-0.6661 0.08951,-0.80554 0.307885,-2.22832 -0.253752,-2.90228" + style="fill:#ebc8da;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="fill:#a05a2c;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 57.410487,119.4193 3.568853,-6.31412 1.269688,4.08359 z" + id="path895" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 62.111765,117.2574 3.637484,1.92169 2.779588,4.46107 0.720632,0.34316 2.642325,5.55917 0.308843,2.64233 -8.441709,-6.48571 -1.92169,-4.49538 0.926529,-2.67664 z" + id="path901" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1417" + d="m 68.700416,123.67448 -3.019798,-4.5297 4.461066,-10.02024 z" + style="fill:#81597c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1419" + d="m 67.602308,114.34055 -3.637484,-0.82358 6.245493,-4.5297 z" + style="fill:#b48caf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + style="display:inline" + id="g1450-5-0" + transform="matrix(1.5619414,0,0,1.464647,0.0957062,-12.89113)"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1498-5-3" + d="m 30.855154,82.697299 -2.887701,0.947689 -0.188738,0.480422 2.65948,0.223054 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1500-9-9" + d="m 27.778715,84.12541 1.338321,2.264849 1.338318,0.223052 -0.03431,-2.350638 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1502-6-9" + d="m 27.967453,83.644988 2.007478,-1.715794 h 1.818743 l -0.829182,0.892212 z" + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path1466-2-2" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.06863,-1.046635 z" + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-7-9" + d="m 31.010669,86.165017 -1.108802,-0.279048 -0.890729,-1.710532 2.569761,-0.09721 z" + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1462-1-7" + d="m 31.59303,84.041828 -0.853846,2.011136 1.897241,-1.428775 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1464-6-6" + d="m 29.901867,85.885969 0.344455,0.887415 1.062083,0.04152 -0.576781,-0.771208 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-0-7" + d="m 32.600027,84.63632 0.01304,1.700295 -1.304662,0.478285 -0.588915,-0.746943 z" + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1468-3-2" + d="m 33.269258,85.446573 1.531433,-1.424658 -1.233448,-2.327727 -0.726935,1.453219 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1470-9-7" + d="m 30.180827,83.593514 0.907012,-1.234222 2.001943,0.28939 -0.246632,0.493044 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1472-6-0" + d="m 31.063679,82.355291 0.855178,-0.948785 1.648386,0.287682 -0.469564,0.955638 z" + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1525-0" + d="m 34.088901,82.605457 -0.701729,1.394555 0.760206,0.17103 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1527-4" + d="m 33.387172,83.9737 0.146193,1.197212 0.540917,0.06578 0.131574,-1.118276 z" + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1529-6" + d="m 34.088901,82.605457 0.994116,1.868178 -1.008735,0.763057 z" + style="fill:#445016;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <path + inkscape:connector-curvature="0" + id="path462" + d="m 84.584604,252.75184 2.428095,-2.67927 -0.334912,-2.80487 0.08369,-0.921 -2.553686,1.5071 z" + style="fill:#6c5353;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 176.12456,203.73868 c 0,0 -3.71992,6.03461 -2.86857,10.59549 0.85137,4.56087 -4.31762,5.53387 -4.31762,5.53387 l -17.81787,5.5947 -0.79056,-7.90555 z" + id="path1387" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient3353);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 70.210347,200.98596 1.307453,-4.40885 c 0,0 0.881774,-0.5169 2.098008,-0.5169 1.216234,0 2.006789,0.60812 2.006789,0.60812 l 1.702731,4.34805 c 0,0 -2.341262,0.82095 -4.712915,0.69934 -2.371664,-0.12164 -2.402066,-0.72976 -2.402066,-0.72976 z" + id="path1068" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3410" + d="m 72.776953,197.23553 -0.479557,4.13411 -2.067058,-0.3638 1.256771,-4.31601 c 0.158066,0.35668 0.516189,0.58475 1.289844,0.5457 z" + style="fill:#eee9ee;fill-opacity:0.328283;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + style="display:inline;fill:#d1d1d1;fill-opacity:0.348485;stroke:none;stroke-width:0.383579" + id="path1066-5-4" + cx="82.847504" + cy="199.48825" + rx="2.0257719" + ry="0.52077442" + transform="matrix(0.99953573,-0.03046826,-0.04655884,0.99891555,0,0)" /> + <ellipse + transform="rotate(-2.5153431)" + ry="0.29562819" + rx="1.3330141" + cy="199.82579" + cx="64.786873" + id="path1066-0" + style="display:inline;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.234436" /> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path2416" + d="m 148.55231,244.76049 8.1634,3.85146 c 0.86232,0.43001 0.92272,0.49382 1.10052,0.84169 l -0.19451,1.45243 -22.9263,10.55802 -7.78664,-3.72587 2.63742,-8.37272 z" + style="opacity:1;fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2414" + d="m 133.15289,259.66186 23.10875,-9.6705 c 0.5195,-0.23852 0.85907,-0.71243 0,-1.1722 l -9.54492,-4.52125 -17.20597,6.36327 0.62796,8.12154 z" + style="opacity:1;fill:#6c5353;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2271" + d="m 132.24805,258.95246 18.19875,-12.86045 -3.44563,-1.55296 -16.83991,5.77507 z" + style="fill:#614848;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2298" + d="m 148.89384,244.58758 -17.42227,10.53101 -0.33971,-5.09565 z" + style="fill:#000000;fill-opacity:0.217172;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cscccc" + inkscape:connector-curvature="0" + id="path2418" + d="m 143.88907,251.94461 c 0,0 0.47296,0.46713 1.18073,0.4318 0.96676,-0.0483 1.39897,-0.55567 1.39897,-0.55567 l 0.0266,-6.48105 -2.593,1.03143 z" + style="opacity:1;fill:#c8b7b7;stroke:none;stroke-width:0.201928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.71526705,0.03581234,-0.02857876,0.5707931,37.713548,170.79809)" + style="display:inline" + id="g3788-4"> + <path + sodipodi:nodetypes="cccscc" + inkscape:connector-curvature="0" + id="path3783-8" + d="m 83.538903,120.64457 0.878192,11.33435 -0.892212,0.48042 c 0,0 -3.84338,-3.22569 -3.84338,-6.31412 0,-3.08843 2.058953,-5.10429 2.058953,-5.10429 z" + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3779-45" + d="m 77.649345,119.53103 -1.605328,1.05502 6.108229,1.37263 1.562871,-1.26091 z" + style="fill:#807675;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccscc" + inkscape:connector-curvature="0" + id="path3781-3" + d="m 76.143491,120.55214 c 0,0 -0.553721,3.46656 0.04129,6.49008 0.425192,1.95947 1.437762,3.97586 1.437762,3.97586 l 5.833703,1.23537 c 0,0 -1.04638,-2.78624 -1.333684,-4.88988 -0.241329,-1.76701 0.02968,-5.47352 0.02968,-5.47352 z" + style="fill:url(#linearGradient6899);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,18.501508,125.3425)" + style="display:inline" + id="g3788-5"> + <path + inkscape:connector-curvature="0" + id="path3783-4" + d="m 84.897517,119.89973 -0.480422,12.07919 -0.892212,0.48042 c 0,0 -3.84338,-3.22569 -3.84338,-6.31412 0,-3.08843 2.058953,-5.90233 2.058953,-5.90233 z" + style="fill:#8c9f9d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3779-4" + d="m 78.583392,118.73299 -2.539375,1.85306 6.108229,1.37263 2.539375,-2.05895 z" + style="fill:url(#linearGradient6883);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccscc" + inkscape:connector-curvature="0" + id="path3781-2" + d="m 76.044017,120.51741 c 0,0 -0.41179,6.10823 0.480422,7.96129 0.892215,1.85306 1.098108,2.53938 1.098108,2.53938 l 5.939276,1.44652 c 0,0 -1.95863,-3.84864 -1.821367,-5.63306 0.137263,-1.78443 0.41179,-4.94149 0.41179,-4.94149 z" + style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g3788"> + <path + style="fill:#8c9f9d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 84.897517,119.89973 -0.480422,12.07919 -0.892212,0.48042 c 0,0 -3.84338,-3.22569 -3.84338,-6.31412 0,-3.08843 2.058953,-5.90233 2.058953,-5.90233 z" + id="path3783" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 78.583392,118.73299 -2.539375,1.85306 6.108229,1.37263 2.539375,-2.05895 z" + id="path3779" + inkscape:connector-curvature="0" /> + <path + style="fill:#b8cbc9;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 76.044017,120.51741 c 0,0 -0.41179,6.10823 0.480422,7.96129 0.892215,1.85306 1.098108,2.53938 1.098108,2.53938 l 5.833703,1.23537 c 0,0 -1.853057,-3.63749 -1.715794,-5.42191 0.137263,-1.78443 0.41179,-4.94149 0.41179,-4.94149 z" + id="path3781" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path2697" + d="m 77.578141,131.0294 0.485236,-1.30641 4.458112,-1.35141 0.20762,-1.9146 1.761911,-2.46662 -0.362192,5.88194 -2.762113,1.661 z" + style="fill:#000000;fill-opacity:0.131313;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + id="g1358-4" + style="display:inline;fill:#808080" + transform="matrix(0.88605929,0,0,0.88605929,6.1181401,155.21156)"> + <path + inkscape:connector-curvature="0" + id="path1352-8" + d="m 105.93316,89.770375 3.12275,-2.402113 4.1179,0.514739 -3.26001,4.392433 -3.91201,-1.441267 z" + style="fill:#999999;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1354-7" + d="m 105.89884,89.839005 -0.68631,2.127586 -0.34316,2.745272 5.31896,1.406951 -0.27453,-4.08359 z" + style="fill:#666666;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#4d4d4d;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 113.0749,87.912095 -3.20298,4.149315 0.16986,4.003725 4.97432,-3.421364 z" + id="path1360-6" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#a7a7a7;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.26909,91.878463 3.99621,0.838103 -1.55296,1.11619 -3.81136,0.373129 z" + id="path1362-8" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.84498,94.215202 0.12629,2.868201 3.69254,-0.654291 0.12132,-2.620621 z" + id="path1364-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#4f5257;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.14397,92.740831 0.70369,3.227244 -2.15959,0.533832 0.0728,-2.741946 z" + id="path1366-6" + inkscape:connector-curvature="0" /> + <path + style="fill:#cccccc;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 108.56161,91.272798 1.31031,0.485301 0.38824,-0.206253 -0.35184,0.727951 z" + id="path1368-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#8c8c8c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.49234,94.986389 0.30884,-3.225693 1.47558,3.311483 z" + id="path1370-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.73255,91.81217 1.28684,-1.115267 2.0418,3.088431 -1.85306,1.321163 z" + id="path1372-6" + inkscape:connector-curvature="0" /> + <path + style="fill:#b3b3b3;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.05591,87.351104 1.87021,3.345799 2.1619,-2.813902 z" + id="path1374-6" + inkscape:connector-curvature="0" /> + </g> + <g + id="g3788-4-5" + style="display:inline" + transform="matrix(0.71526705,0.03581234,-0.02857876,0.57079309,42.909316,171.39202)"> + <path + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 83.538903,120.64457 0.878192,11.33435 -0.892212,0.48042 c 0,0 -3.84338,-3.22569 -3.84338,-6.31412 0,-3.08843 2.058953,-5.10429 2.058953,-5.10429 z" + id="path3783-8-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccscc" /> + <path + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 77.649345,119.53103 -1.605328,1.05502 6.108229,1.37263 1.562871,-1.26091 z" + id="path3779-45-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#bbcac8;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 76.044017,120.51741 c 0,0 -0.454247,3.50129 0.140768,6.52481 0.425192,1.95947 1.437762,3.97586 1.437762,3.97586 l 5.833703,1.23537 c 0,0 -1.04638,-2.78624 -1.333684,-4.88988 -0.241329,-1.76701 0.02968,-5.47352 0.02968,-5.47352 z" + id="path3781-3-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccscc" /> + </g> + <path + inkscape:connector-curvature="0" + id="path2663" + d="m 88.436894,243.95301 0.09355,-0.63142 3.765161,0.98221 0.561266,0.11694 0.748355,-0.0468 0.02339,0.44434 4.747376,1.26285 0.608036,2.75956 -10.336645,-2.57248 z" + style="display:inline;fill:#000000;fill-opacity:0.227273;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.89401639,0.04580274,-0.0415274,0.81056681,29.693717,132.85986)" + id="g3949"> + <path + style="fill:#011f3d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 74.963067,145.87686 1.647163,0.49758 -1.647163,-5.78223 -2.041795,-0.0171 -0.06863,2.74527 z" + id="path3942" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccccc" + style="fill:#3380cf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 74.671267,146.07954 0.549224,-0.13294 c 0,0 -0.939802,-1.35078 -0.888327,-1.98562 0.05147,-0.63485 0.363121,-1.53739 1.169544,-1.15991 0.806424,0.37747 -1.979909,-2.3976 -1.979909,-2.3976 l -0.634844,2.29917 c 0.358384,1.31484 0.812434,2.6783 1.784312,3.3769 z" + id="path3940" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient4403);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.616066,133.85752 c 0,0 0.72114,7.45301 0.81475,8.56087 0.130668,1.96917 0.977935,3.35986 1.334784,3.46279 0.955378,0.27556 0.888588,0.18071 0.888588,0.18071 0,0 -0.553929,-0.73578 -0.872611,-1.70558 -0.445968,-1.35715 0.580903,-1.88755 0.735763,-1.8571 0.41508,0.0816 0.66714,0.0603 1.032838,1.76423 0.399245,1.86024 0.826201,2.15695 0.826201,2.15695 l 2.404916,0.9923 -3.511264,-12.98459 z" + id="path3938" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscssscccc" /> + <path + style="fill:#c8dff6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.63028,133.89427 3.471618,0.80785 0.445098,-0.95344 -3.625534,-0.82501 z" + id="path3934" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient4435);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 75.027382,134.62222 c 0,0 0.841323,7.89175 1.552958,10.23983 0.717993,2.36906 1.672021,2.21772 1.672021,2.21772 -0.861232,-3.40731 -1.053473,-5.21676 -2.205849,-11.82666 l -0.436772,-1.55296 z" + id="path3936" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscccc" /> + <path + inkscape:connector-curvature="0" + id="path2595" + d="m 72.184754,139.79583 3.47866,0.82348 0.491982,-0.55823" + style="display:inline;fill:none;stroke:#1c64ad;stroke-width:0.310403px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.90431855,0,0,0.88838521,26.854897,126.91383)" + style="display:inline" + id="g3949-5"> + <path + inkscape:connector-curvature="0" + id="path3942-8" + d="m 74.963067,145.87686 1.647163,0.49758 -1.647163,-5.78223 -2.041795,-0.0171 -0.06863,2.74527 z" + style="fill:#011f3d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path3940-2" + d="m 74.685153,146.03533 0.556061,-0.08 c 0,0 -0.927387,-1.64413 -0.875912,-2.27897 0.05147,-0.63485 0.342418,-1.45843 1.148841,-1.08095 0.806424,0.37747 -1.992344,-2.19198 -1.992344,-2.19198 l -0.634844,2.29917 z" + style="fill:#3380cf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccscssscccc" + inkscape:connector-curvature="0" + id="path3938-6" + d="m 71.706578,133.68641 c 0,0 0.630628,7.62412 0.724238,8.73198 0.316665,1.46818 0.775352,2.98309 1.316498,3.20219 1.307604,0.52942 1.060399,0.42689 1.060399,0.42689 0,0 -0.420386,-0.40164 -0.894427,-1.93931 -0.423048,-1.37226 0.518673,-1.53782 0.673533,-1.50737 0.41508,0.0816 0.66714,0.0603 1.032838,1.76423 0.399245,1.86024 0.756722,2.05537 0.756722,2.05537 l 2.484871,0.72257 -3.591219,-12.71486 z" + style="fill:url(#linearGradient4419);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3934-9" + d="m 71.694931,133.69684 3.406967,1.00528 0.445098,-0.95344 -3.353999,-0.96979 z" + style="fill:#c8dff6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cscccc" + inkscape:connector-curvature="0" + id="path3936-9" + d="m 75.027382,134.62222 c 0,0 0.582358,8.00745 1.552958,10.23983 0.9706,2.23238 2.18385,2.08679 2.18385,2.08679 -0.861232,-3.40731 -1.565302,-5.08583 -2.717678,-11.69573 l -0.436772,-1.55296 z" + style="fill:url(#linearGradient4443);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2595-7" + d="m 72.217501,139.12033 3.401215,0.9307 0.512012,-0.48397" + style="display:inline;fill:none;stroke:#1c64ad;stroke-width:0.29519px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="cscccc" + inkscape:connector-curvature="0" + id="path2418-1" + d="m 148.53898,250.33398 c 0,0 0.51999,0.32036 1.21504,0.32885 1.04661,0.0128 1.36464,-0.4527 1.36464,-0.4527 l 0.0266,-6.48108 -2.59301,1.03144 z" + style="display:inline;opacity:1;fill:#c8b7b7;stroke:none;stroke-width:0.201928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2275" + d="m 133.65542,250.21706 9.31776,5.24124 -10.28836,4.51329 -2.96033,-4.17358 1.84414,-5.8236 z" + style="fill:#3a2a2a;fill-opacity:0.29798;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8253" + d="m 143.86719,246.10076 v 1.45521 l 2.57968,1.15755 0.0662,-3.63802 z" + style="fill:#000000;fill-opacity:0.131313;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8253-8" + d="m 148.49737,244.74477 v 1.45521 l 2.57968,1.15755 0.0662,-3.63802 z" + style="display:inline;fill:#000000;fill-opacity:0.131313;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2412" + d="m 133.05376,250.62701 33.70925,-11.7693 1.63267,-5.65159 -32.97868,10.02754 z" + style="opacity:1;fill:#c83737;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g939" + transform="matrix(0.88605929,0,0,0.88605929,16.95583,10.9195)"> + <g + transform="translate(30.921316,30.789538)" + style="display:inline" + id="g898-1"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path862-6" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path854-3" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + style="fill:url(#linearGradient3749);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path856-6" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path858-4" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path860-4" + d="m 40.616472,122.54036 0.653802,11.33929 2.291482,-1.48828 -0.472472,-11.22117 z" + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path864-3" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + style="display:inline" + id="g942-7" + transform="translate(30.392149,30.789538)"> + <path + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.665;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.196078" + d="m 33.687128,119.68063 4.326994,1.04156 0.202185,6.99172 -2.414953,2.82419 -2.066979,-3.01318 z" + id="rect939-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + </g> + <path + sodipodi:nodetypes="czzcccc" + inkscape:connector-curvature="0" + id="path1004" + d="m 61.238011,155.76464 c 0,0 -0.255417,0.36275 0.02965,0.8283 0.285059,0.46554 1.677878,1.37993 2.16321,1.44493 0.485291,0.0654 0.695671,-0.25258 0.695671,-0.25258 l 0.05602,-1.80206 -1.469984,-0.55124 z" + style="opacity:1;fill:#c8ab37;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cczccccc" + style="opacity:1;fill:#e9ddaf;stroke:none;stroke-width:0.372552px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 62.453264,153.89499 -1.215251,1.86965 c 0,0 1.013985,-0.17301 1.884446,0.40541 0.870461,0.57842 1.004065,1.61524 1.004065,1.61524 l 1.201204,-1.96712 0.174931,-3.33887 -1.615228,0.34356 z" + id="path902-75" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cczccccc" + inkscape:connector-curvature="0" + id="path1002" + d="m 62.276085,153.56427 -0.03196,0.73892 c 0,0 0.761664,-0.18112 1.783582,0.4724 1.02192,0.65351 0.980376,1.52371 0.980376,1.52371 l 0.48501,-0.24498 0.259132,-2.07012 -2.208797,-1.07487 z" + style="opacity:1;fill:#1863d5;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="opacity:1;fill:#4187f1;fill-opacity:1;stroke:none;stroke-width:0.372552px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 65.82551,147.41019 -3.549423,6.15408 c 0,0 1.035984,-0.1152 2.095859,0.56823 1.339819,0.86394 1.12115,1.92189 1.12115,1.92189 l 3.570543,-6.44851 c 0.10993,-0.17781 0.121216,-0.37607 0.03813,-0.71661 0,0 -0.205081,-0.85153 -0.961267,-1.39352 -0.756186,-0.542 -1.789261,-0.31775 -1.789261,-0.31775 -0.192582,0.0372 -0.355096,0.13417 -0.525738,0.23223 z" + id="path900-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscccsccc" /> + <path + style="display:inline;opacity:1;fill:#d7d7d7;fill-opacity:1;stroke:none;stroke-width:0.372552px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 61.924415,156.36687 -0.927432,1.73934 c 0,0 -0.33484,0.58445 0.360633,0.99262 0.695472,0.40818 1.073298,-0.15105 1.073298,-0.15105 l 0.929983,-1.52899 c 0.121816,-0.20073 -0.04197,-0.58943 -0.451566,-0.89804 -0.29091,-0.21098 -0.869901,-0.35356 -0.984918,-0.15386 z" + id="path902-7-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cczccccc" /> + <path + style="opacity:1;fill:#afdde9;stroke:none;stroke-width:0.372552px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 66.106643,147.54547 -3.326107,5.76393 c 0.362985,-0.10777 0.722697,-0.0175 1.13621,0.11279 l 3.259633,-5.88296 c -0.299237,-0.0316 -0.487938,-0.12699 -1.069728,0.006 z" + id="path924-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cczzc" + inkscape:connector-curvature="0" + id="path1006" + d="m 61.380689,158.16397 c 0.219179,-0.36501 1.187719,0.10573 0.956752,0.5079 0,0 -0.251854,0.55873 -0.521621,0.75069 -0.269765,0.19195 -0.881022,-0.0506 -0.804631,-0.44717 0.07639,-0.39662 0.3695,-0.81142 0.3695,-0.81142 z" + style="opacity:1;fill:#000000;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="opacity:1;fill:none;stroke:#ffffff;stroke-width:0.89046;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 59.791743,161.11716 -5.953124,-1.93714 c 0,0 3.874256,0.28349 4.252233,-2.55133 0.377976,-2.83483 -6.636119,-6.72391 -6.636119,-6.72391 l 11.933111,-5.4664" + id="path1027" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscc" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.703113;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1033" + width="2.3720169" + height="2.3720171" + x="52.199635" + y="157.89577" + rx="0" + ry="0" /> + <rect + style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.648941;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1033-8" + width="1.4515328" + height="1.4515327" + x="59.184483" + y="160.22691" + rx="0" + ry="0" /> + </g> + <g + id="g3949-5-8" + style="display:inline" + transform="matrix(0.88605929,0,0,0.88605929,32.03012,128.59821)"> + <path + style="fill:url(#linearGradient4427);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.576476,133.59359 c 0,0 0.76073,7.71694 0.85434,8.8248 0.316665,1.46818 0.793638,3.24369 1.334784,3.46279 0.905988,0.29909 1.648441,0.33122 2.610779,0.53921 l 2.484871,0.72257 -3.591219,-12.71486 z" + id="path3938-6-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#c8dff6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 71.577493,133.59075 3.524405,1.11137 0.445098,-0.95344 -3.506764,-1.20771 z" + id="path3934-9-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ff9955;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 75.027382,134.62222 c 0,0 0.582358,8.00745 1.552958,10.23983 0.9706,2.23238 2.18385,2.08679 2.18385,2.08679 -0.861232,-3.40731 -1.565302,-5.08583 -2.717678,-11.69573 l -0.436772,-1.55296 z" + id="path3936-9-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscccc" /> + <path + inkscape:connector-curvature="0" + id="path2595-7-6" + d="m 72.08325,138.62992 3.471305,0.93314 0.522563,-0.48524" + style="display:inline;fill:none;stroke:#1c64ad;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="ccccsccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path1059" + d="m 97.855386,245.30471 0.802601,9.25354 c 0.07266,1.00511 2.839453,5.34745 8.574863,8.07802 3.60029,1.5071 6.88598,2.96513 6.88598,2.96513 0,0 0.90067,2.14225 -1.27624,3.73308 -2.17691,1.59081 -3.85147,1.17217 -3.85147,1.17217 l 0.83729,8.28899 4.15168,0.24698 6.23051,9.96775 c 1.85141,2.23978 3.768,3.17623 5.77718,2.26064 7.99681,-1.05931 14.47971,-4.3207 20.76439,-7.87036 1.93157,-1.16042 0.25117,-2.17691 0.25117,-2.17691 l -7.24364,-2.27499 c -1.56893,-0.65648 -2.55849,-1.88923 -1.12909,-3.33474 l 20.84811,-16.74546 c 1.01966,-1.3258 0.79973,-2.51385 0.41864,-3.684 l -2.08113,-5.73091 c -0.10046,0.3867 -0.37099,0.51409 -0.72648,0.66062 l -22.14313,9.34038 c -1.3253,0.33412 -2.48413,-0.79496 -2.51183,-1.92573 l -0.0261,-15.33775 -2.6539,-0.86881 -19.71706,5.61505 z" + style="opacity:1;fill:url(#linearGradient2370);fill-opacity:1;stroke:#ff9955;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2195" + d="m 157.42105,249.95289 -22.30533,9.53982 -2.33348,13.1773 23.93044,-11.70974 3.5909,-5.51684 -2.50369,-6.02854 c -0.058,0.23397 -0.15988,0.43281 -0.37884,0.538 z" + style="display:inline;fill:url(#linearGradient2211);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#982112;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 97.998029,247.95823 12.040141,2.88103 0.043,-3.87005 -12.154055,-2.43443 z" + id="path1809" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path6355" + d="m 123.69271,218.35259 -2.05057,0.99218 -2.3151,0.33073 2.87734,0.74414 1.14102,5.63894 0.6847,0.39283 1.18392,2.68295 -0.0661,2.51354 7.01145,-1.38906 -0.7276,-13.95677 z" + style="fill:#64681e;fill-opacity:0.333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path1199" + d="m 161.27853,223.73107 -28.16882,7.72924 -5.44153,-1.39009 -6.40685,2.10685 c -0.37698,1.59167 -1.24309,2.53747 -2.03295,3.09231 l -25.401551,6.9696 10.316211,3.85298 23.13808,-5.65907 11.69644,1.80609 33.02435,-12.04009 z" + style="fill:url(#linearGradient2359);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path2109" + d="m 152.30797,259.69861 c 0,0 -0.652,0.36031 -1.06379,0.326 -0.41179,-0.0343 -0.82358,-0.84075 -0.0172,-1.69864 0.80642,-0.8579 2.48789,-2.93401 6.21117,-3.65464 l 1.81875,-0.0686 z" + style="fill:url(#linearGradient2136);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsccscc" + inkscape:connector-curvature="0" + id="path2247" + d="m 110.03772,246.9374 c -0.31758,4.00496 0.11422,8.00991 0.79541,12.01487 0,0 4.68874,7.24241 9.62865,8.79137 4.93991,1.54895 12.18233,-4.85618 12.18233,-4.85618 -3.32655,1.62377 -6.79369,2.7086 -10.5078,2.84673 0,0 -4.68872,-1.67456 -8.24712,-6.74005 -1.32377,-1.88439 -1.46524,-12.72655 -1.46524,-12.72655 z" + style="opacity:1;fill:url(#linearGradient5493);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="czsccc" + inkscape:connector-curvature="0" + id="path2185" + d="m 108.4469,271.17647 c 0,0 6.2927,-2.6792 10.29845,-2.72114 4.00579,-0.0419 7.82097,0.95137 8.24715,2.88859 0.46051,2.09318 -0.83725,4.52127 -6.27954,6.53074 -5.44227,2.00945 -10.88455,0.92098 -10.88455,0.92098 z" + style="opacity:1;fill:#e1462e;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path5562" + d="m 111.71227,272.60138 0.34316,-0.24021 6.48175,-1.54041 c 0,0 -0.61369,-0.67297 -2.32952,-1.63381 l -5.23318,1.01232 c 0,0 -0.39463,0.24021 -0.5319,0.61769 -0.13726,0.37747 10e-6,0.51474 10e-6,0.51474 0,0 0.68631,0.36031 1.26968,1.26968 z" + style="fill:#de7474;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path2235" + d="m 101.04746,246.82304 4.01153,1.00415 c 0.49738,0.1415 0.64047,0.47865 0.61479,0.90893 l 0.21387,5.48096 -4.83187,-1.35878 z" + style="opacity:1;fill:#4b3b3b;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2231" + d="m 100.12055,247.72414 c 0.008,-0.61129 0.40448,-0.83548 0.92691,-0.76078 l 0.10246,5.37998 c -0.003,0.4182 0.1893,0.59253 0.4575,0.67188 l -0.7577,0.60724 c -0.3385,-0.22172 -0.60325,-0.52019 -0.64276,-1.05306 z" + style="opacity:1;fill:#902828;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2233" + d="m 100.84968,253.62246 4.47269,1.11883 c 0.45312,-0.0633 0.59356,-0.45659 0.54019,-0.73307 l -4.25518,-0.993 z" + style="opacity:1;fill:#b23131;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2237" + d="m 110.15905,246.8646 c -0.42946,4.07443 0.0923,7.93866 0.66551,11.8303" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient5465);stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path2239" + d="m 98.717184,254.32143 c 0.880896,0.7977 1.909246,1.22676 2.944926,1.63752 l 9.17102,2.99332 2.53489,-0.95229" + style="opacity:1;fill:none;stroke:#000000;stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39899" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path2243" + d="m 122.13633,265.73419 -1.67455,2.00945 c -4.28896,-2.24872 -7.39392,-5.0029 -9.56192,-8.59118" + style="opacity:1;fill:none;stroke:url(#linearGradient5437);stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsscccccccc" + inkscape:connector-curvature="0" + id="path2249" + d="m 100.85195,246.79746 c -0.42608,8.8e-4 -0.72482,0.39187 -0.73135,0.92676 l 0.0173,1.04847 c 0,0 0.26314,-0.72132 0.94041,-0.61766 0.22349,0.0342 0.49095,0.0854 0.80704,0.16072 1.27394,0.30399 2.27048,0.54753 3.02402,2.32674 0.75355,1.7792 0.95305,3.36572 0.95305,3.36572 l 0.0165,-0.009 -0.20513,-5.26336 c 0.0256,-0.43031 -0.11756,-0.7674 -0.61494,-0.90891 l -4.01152,-1.01603 c -0.0653,-0.009 -0.0761,-0.0257 -0.16034,0.01 z" + style="opacity:1;fill:#000000;fill-opacity:0.40404;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path2239-3" + d="m 98.657987,254.55825 c 1.019411,0.77631 1.687413,1.20484 3.010893,1.65252 l 9.16784,2.99228" + style="display:inline;opacity:1;fill:none;stroke:#e76d6d;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2235-5" + d="m 99.983001,247.71543 0.120809,4.84532 c 0.0481,0.64441 0.26146,0.90004 0.74582,1.06171 l 4.62703,1.17008 c 0.34939,-0.0488 0.48569,-0.41349 0.51776,-0.64988" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient5509);stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsssccc" + inkscape:connector-curvature="0" + id="path2331" + d="m 119.51985,267.42966 c 0.47911,0.1819 1.81125,0.0219 0.0837,1.08846 -0.87739,0.15815 -1.86728,0.34745 -2.91953,0.55419 -0.0814,0.016 -0.0472,0.27657 -0.12932,0.29275 -0.077,0.0152 -0.31584,-0.19437 -0.63609,-0.11835 -1.45414,0.34519 -2.74692,0.52869 -4.29008,0.8413 1.69951,-0.97785 2.89442,-2.69286 2.49026,-4.48661 z" + style="opacity:1;fill:#982112;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2367" + d="m 126.75586,273.61977 c 0,0 -1.42092,6.36444 2.33855,9.59107 3.75946,3.22662 7.01569,4.64753 7.01569,4.64753 l -0.0592,0.71044" + style="opacity:1;fill:none;stroke:url(#linearGradient1818);stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2367-2" + d="m 126.54864,273.70854 c 0,0 -1.42091,6.36446 2.33855,9.59108 3.75947,3.22663 7.0157,4.64754 7.0157,4.64754 l -0.0592,0.71045" + style="display:inline;opacity:1;fill:none;stroke:url(#linearGradient1826);stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csccc" + inkscape:connector-curvature="0" + id="path2400" + d="m 129.77527,242.15275 c 0,0 -5.38759,2.90101 -5.32838,5.56519 0.0592,2.66418 8.70302,2.54578 10.12391,0.17762 l -1.48969,-5.23023 z" + style="opacity:1;fill:#982112;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#550000;fill-opacity:0.429719;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.94718,246.79866 c -0.25073,1.33707 -0.0546,2.76725 -0.0617,4.06371 l 2.58907,-2.13913 17.36178,-1.91557 0.57771,-4.80413 -5.35143,-0.30406 z" + id="path978" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:nodetypes="czcccc" + inkscape:connector-curvature="0" + id="path2406" + d="m 130.36253,241.9347 c 0,0 -1.32512,1.18033 -1.04659,3.95611 0.27853,2.77579 3.87122,4.10031 4.87712,3.30723 l 2.40715,-2.49089 -0.0629,-4.64686 z" + style="opacity:1;fill:#ac9d93;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5523" + d="m 129.74528,242.69508 c 0,0 -0.84074,2.23053 -0.42895,3.68896 0.41179,1.45842 1.49274,2.50506 3.39727,2.95117" + style="fill:none;stroke:#510d07;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + ry="2.9409223" + rx="2.9304566" + cy="245.02214" + cx="133.41856" + id="path2402" + style="opacity:1;fill:#6c5d53;fill-opacity:1;stroke:none;stroke-width:0.33294;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2277" + d="m 135.7334,243.29561 -6.17686,-0.68632 c 0,0 -0.78927,2.74527 -0.0686,4.25517 l 5.76504,-1.13242 z" + style="fill:#000000;fill-opacity:0.277778;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2279" + d="m 132.70909,243.05888 c 0,0 -0.0728,1.18899 0.87354,1.91694 0.94633,0.72795 1.77134,0.77648 1.77134,0.77648 l 0.41251,-2.57209 z" + style="fill:#312b26;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccczccc" + inkscape:connector-curvature="0" + id="path2281" + d="m 129.82155,242.50079 -2.47503,-0.4853 -10.62807,2.81474 c 0,0 6.39651,3.77998 9.07511,4.3677 2.6786,0.58772 6.14136,-0.0372 6.14136,-0.0372 -0.40334,0.47056 -4.386,-1.66905 -2.21635,-6.62565 z" + style="display:inline;fill:#71180d;fill-opacity:0.469697;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="czcssscc" + inkscape:connector-curvature="0" + id="path2404" + d="m 135.41701,243.23366 c 0,0 0.0892,3.89331 -1.54168,5.01037 -1.63084,1.11704 -4.18463,1.56094 -8.01294,0.98554 0,0 2.66975,1.40346 4.23209,1.61977 0.70434,0.0975 1.2618,0.10722 2.27488,-0.0781 1.39311,-0.25472 2.90631,-0.8449 3.82613,-2.60933 0.75804,-1.45404 1.05429,-3.15217 1.11352,-4.60311 z" + style="opacity:1;fill:#b03232;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path978-2" + d="m 135.1878,242.88533 0.24325,1.97638 1.64191,0.57772 28.67279,-10.06438 0.21283,-2.1284 -27.30452,9.85152 z" + style="display:inline;fill:#550000;fill-opacity:0.429719;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path5544" + d="m 126.10421,270.13335 c -1.15889,0.80021 -3.85547,2.83938 -5.74434,3.63469 -3.31875,1.39737 -8.06608,1.66581 -10.00009,1.79533 l -0.53134,3.23204 c 0,0 5.44234,1.08858 10.88461,-0.92088 5.44229,-2.00947 6.73971,-4.43768 6.2792,-6.53086 -0.16195,-0.73618 -0.50615,-0.71747 -0.88804,-1.21032 z" + style="fill:#d73f2e;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + ry="3.694319" + rx="2.1588202" + cy="275.37405" + cx="108.43056" + id="path996" + style="fill:#982112;fill-opacity:1;stroke:#800000;stroke-width:0.234436" /> + <path + sodipodi:nodetypes="scccccs" + inkscape:connector-curvature="0" + id="path2185-4" + d="m 124.74089,273.59279 c -1.7751,1.09844 -2.06816,1.23367 -4.07216,2.26871 -2.52374,1.30346 -7.96454,1.71777 -10.2759,1.67114 l -0.56439,1.26277 c 0,0 5.44234,1.08858 10.88461,-0.92088 5.44229,-2.00947 6.73971,-4.43768 6.2792,-6.53086 -0.0882,-0.4008 -1.84858,1.99987 -2.25136,2.24912 z" + style="display:inline;opacity:1;fill:#c4352c;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccscczcc" + inkscape:connector-curvature="0" + id="path2435" + d="m 108.99112,270.50665 -1.59081,1.46523 c 0,0 2.18994,1.41993 2.12715,3.40845 -0.0793,2.5109 -1.08056,3.70837 -1.08056,3.70837 l 3.13978,-0.0418 c 0,0 0.78507,-1.16643 0.71168,-4.41662 -0.0734,-3.25019 -3.30724,-4.12357 -3.30724,-4.12357 z" + style="opacity:1;fill:#916f6f;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + inkscape:connector-curvature="0" + id="path1202" + d="m 104.34425,274.52094 c 0,0 -0.37676,-2.26064 -1.61175,-2.36529 -1.23498,-0.1046 -3.746789,8.7495 0.37678,12.49628 2.13505,1.5071 0.66068,-2.68202 1.19311,-4.4166 0.74718,-2.43416 1.06753,-3.49561 0.85821,-4.06078 -0.20932,-0.56514 -0.81635,-1.65361 -0.81635,-1.65361 z" + style="opacity:1;fill:url(#linearGradient1867);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path1961" + d="m 102.73275,272.1555 c -0.0642,-0.005 -0.13261,0.019 -0.20258,0.0599 1.69319,1.05497 1.36108,3.68361 2.08012,5.56661 0,0 -0.87354,2.45065 -0.75222,3.78523 0.0915,1.00619 0.30571,2.07444 0.35572,3.10373 0.31697,-0.84029 -0.28171,-3.23025 0.0884,-4.43591 0.74719,-2.43416 1.06767,-3.49556 0.85835,-4.06073 -0.20932,-0.56514 -0.81649,-1.65365 -0.81649,-1.65365 0,0 -0.37628,-2.26058 -1.61127,-2.36523 z" + style="fill:url(#linearGradient1998);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccssc" + inkscape:connector-curvature="0" + id="path1196" + d="m 105.32695,272.39653 c -3.07862,1.03607 -5.813532,5.01944 0.76664,6.11047 0.1695,-0.1211 0.54811,-0.1743 0.69054,-0.29658 2.72223,-2.3372 0.42647,-4.91025 -0.71539,-5.73114 -0.35153,-0.25271 -0.77173,-0.1576 -0.74179,-0.0828 z" + style="opacity:1;fill:#ac6158;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1756" + d="m 119.54775,278.26729 1.85546,5.12372" + style="fill:none;stroke:#f26f3e;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2333" + d="m 121.45171,283.573 2.78794,8.04484" + style="fill:none;stroke:url(#linearGradient1751);stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2333-5" + d="m 119.80939,278.26729 4.69194,13.35055" + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient1766);stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#8d9e9c;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 93.826995,242.23916 0.01958,1.16743 12.238145,3.45438 0.0227,-1.23658 z" + id="path233" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccc" + style="fill:#778382;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.92037,245.57761 -0.0695,1.18982 2.29563,0.68648 19.13484,-4.99975 v -2.02101 z" + id="path235" + inkscape:connector-curvature="0" /> + <path + style="fill:#656766;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 127.28136,242.45416 10.94362,1.41903 0.7525,-1.63403 -11.69612,-1.80601 z" + id="path237" + inkscape:connector-curvature="0" /> + <path + style="fill:#596b69;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.97748,242.23916 -0.7525,1.63403 27.7568,-9.67511 -0.4747,-2.1269 z" + id="path247" + inkscape:connector-curvature="0" /> + <path + inkscape:original-d="m 42.334337,112.41515 c -0.03091,-0.20055 -0.160086,-0.35569 -0.228376,-0.53923" + inkscape:path-effect="#path-effect702" + id="path707" + d="m 42.334337,112.41515 c -0.02075,-0.13775 -0.09186,-0.25988 -0.155621,-0.38134 -0.02683,-0.0514 -0.05253,-0.10351 -0.07276,-0.15789" + sodipodi:insensitive="true" + inkscape:connector-curvature="0" /> + <path + inkscape:original-d="m 42.334337,112.41515 c -0.143442,-0.27447 -0.202368,-0.58554 -0.339393,-0.85959" + inkscape:path-effect="#path-effect705" + id="path712" + d="m 42.334337,112.41515 c -0.143342,-0.27414 -0.201478,-0.58314 -0.339393,-0.85959" + sodipodi:insensitive="true" + inkscape:connector-curvature="0" /> + <path + inkscape:original-d="m 42.334337,112.41515 c -0.191144,-0.371 -0.260776,-0.79415 -0.469441,-1.15457" + inkscape:path-effect="#path-effect710" + id="path717" + d="m 42.334337,112.41515 c -0.19105,-0.3706 -0.260051,-0.79235 -0.469441,-1.15457" + sodipodi:insensitive="true" + inkscape:connector-curvature="0" /> + <path + inkscape:original-d="m 56.07816,123.79432 c -0.227863,0.17199 -0.449229,0.36219 -0.650239,0.56777" + inkscape:path-effect="#path-effect792" + id="path797" + d="m 56.07816,123.79432 c -0.229784,0.17355 -0.448779,0.36187 -0.650239,0.56777" + sodipodi:insensitive="true" + inkscape:connector-curvature="0" /> + <path + inkscape:original-d="m 56.07816,123.79432 c -0.346603,0.23805 -0.630675,0.54715 -0.897646,0.86751" + inkscape:path-effect="#path-effect795" + id="path802" + d="m 56.07816,123.79432 c -0.345181,0.23682 -0.631191,0.54756 -0.897646,0.86751" + sodipodi:insensitive="true" + inkscape:connector-curvature="0" /> + <path + inkscape:original-d="m 56.07816,123.79432 c -0.465333,0.33799 -0.889665,0.74665 -1.119679,1.27986" + inkscape:path-effect="#path-effect800" + id="path807" + d="m 56.07816,123.79432 c -0.366708,0.26644 -0.710295,0.57785 -0.953193,0.96422 -0.06333,0.10083 -0.119334,0.2063 -0.166486,0.31564" + sodipodi:insensitive="true" + inkscape:connector-curvature="0" /> + <path + inkscape:original-d="m 56.07816,123.79432 c -0.590387,0.16644 -0.845361,1.06571 -1.186289,1.34647" + inkscape:path-effect="#path-effect805" + id="path812" + d="m 56.07816,123.79432 c -0.211115,0.0592 -0.378594,0.21454 -0.511842,0.38253 -0.196405,0.24577 -0.333316,0.53151 -0.515525,0.787 -0.04695,0.0639 -0.09764,0.1261 -0.158922,0.17694" + sodipodi:insensitive="true" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g550"> + <rect + style="fill:#656766;fill-opacity:1;stroke:none;stroke-width:0.264583" + id="rect541" + width="6.2140164" + height="8.6862593" + x="58.966335" + y="122.6433" /> + <rect + style="fill:#90a3a1;fill-opacity:1;stroke:none;stroke-width:0.24961" + id="rect509" + width="2.319284" + height="8.9869385" + x="58.46521" + y="123.0108" /> + <rect + y="123.0275" + x="61.211269" + height="8.9869385" + width="2.9334137" + id="rect509-2" + style="display:inline;fill:#9eb1af;fill-opacity:1;stroke:none;stroke-width:0.280719" /> + <rect + style="display:inline;fill:#bacdcb;fill-opacity:1;stroke:none;stroke-width:0.213944" + id="rect509-2-3" + width="1.7038432" + height="8.9869385" + x="64.512184" + y="122.32591" /> + <path + style="fill:#768684;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 58.451117,122.16894 0.01526,0.97391 c 0,0 3.525562,1.48275 7.679714,0.002 l 0.154063,-0.9926 c 0,0 -3.824257,1.54291 -7.849035,0.0164 z" + id="path466" + inkscape:connector-curvature="0" /> + <ellipse + style="fill:#bfd2d0;fill-opacity:1;stroke:none;stroke-width:0.264583" + id="path503" + cx="60.862511" + cy="122.65894" + rx="3.9923384" + ry="1.0857824" + transform="rotate(-0.71214196)" /> + <path + inkscape:connector-curvature="0" + id="path3343" + d="m 60.741338,123.7093 -0.02048,6.12083" + style="fill:none;stroke:#bacdcb;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3343-6" + d="m 63.985924,123.65224 -0.02034,7.71976" + style="display:inline;fill:none;stroke:#bacdcb;stroke-width:0.334203px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#000000;fill-opacity:0.166667;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 58.454499,125.02002 0.01526,0.97391 c 0,0 3.525562,1.48275 7.679714,0.002 l 0.154063,-0.9926 c 0,0 -3.824257,1.54291 -7.849035,0.0164 z" + id="path466-9" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path5075" + d="m 58.57141,123.11086 c 0,0 1.514853,0.88025 4.217027,0.71649 2.702171,-0.16377 3.439126,-0.73696 3.439126,-0.73696" + style="fill:none;stroke:#000000;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + inkscape:connector-curvature="0" + id="path448" + d="m 79.560973,239.3136 0.879131,7.78665 -2.804858,4.35382 -2.009466,-2.67928 -0.586083,-3.51655 1.548953,-4.89804 z" + style="fill:#6c5353;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="czc" + inkscape:connector-curvature="0" + id="path5566-2-0" + d="m 112.27863,278.19461 c 0,0 1.047,-1.26816 0.58338,-4.13508 -0.46361,-2.86691 -2.52775,-3.47992 -2.52775,-3.47992" + style="display:inline;fill:none;stroke:url(#linearGradient5574-1-0);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> + <path + sodipodi:nodetypes="csccscc" + inkscape:connector-curvature="0" + id="path1810" + d="m 110.1305,271.25482 c 0,0 1.81987,0.98273 2.00186,3.40923 0.18199,2.4265 -0.54596,3.85813 -0.54596,3.85813 l 0.61876,-0.0607 c 0,0 0.89781,-1.43163 0.5217,-4.39196 -0.31877,-2.50902 -2.30518,-3.3971 -2.30518,-3.3971 z" + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1196-2" + d="m 102.09868,275.38942 c -0.27556,1.27541 0.66871,2.5661 3.99511,3.11763 0.39255,-0.0353 0.54796,-0.17434 0.69039,-0.29662 0.43831,-0.37631 0.7454,-0.7587 0.9493,-1.13895 -0.70567,0.0724 -1.8525,0.14363 -2.66134,-0.0434 -0.90523,-0.20933 -2.17906,-1.05929 -2.97346,-1.63865 z" + style="display:inline;opacity:1;fill:#92524b;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path2038" + d="m 107.37131,274.04265 c 0,0 0.82358,0.20589 1.3898,0.94369 0.56621,0.73779 0.72063,1.70721 0.72063,1.70721 0,0 0.27452,-2.43643 -0.11153,-2.86537 -0.38605,-0.42896 -1.89595,-0.7378 -1.89595,-0.7378 z" + style="fill:#740000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccczcc" + inkscape:connector-curvature="0" + id="path2036" + d="m 108.711,273.59639 c 0,0 0.59449,0.9706 0.53383,2.03826 -0.0607,1.06766 -0.60663,2.48716 -0.60663,2.48716 l 0.4853,0.40037 c 0,0 0.7463,-0.84224 0.77648,-3.04525 0.0302,-2.203 -1.17685,-2.88754 -1.17685,-2.88754 z" + style="fill:#ff8080;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2063" + d="m 105.5548,272.31518 c -0.14525,0.002 -0.24286,0.0437 -0.22789,0.0811 -1.99032,0.66981 -3.8331,2.57128 -3.11196,4.12687 0.85318,-0.75443 2.48256,-2.09643 3.59513,-2.37763 1.11689,-0.28229 1.2664,-0.31747 1.52187,-0.38034 -0.40255,-0.56709 -0.8926,-1.01945 -1.26297,-1.28571 -0.17576,-0.12635 -0.36893,-0.16587 -0.51418,-0.16433 z" + style="fill:#d2aaa6;fill-opacity:0.474747;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cczccczccccc" + inkscape:connector-curvature="0" + id="path2040" + d="m 106.05398,272.49233 c 0,0 -0.70368,-0.24265 -0.64302,0.4853 0.0607,0.72795 0.27141,1.08579 0.81288,1.69855 0.54146,0.61276 1.18898,0.86141 1.18898,0.86141 l 0.31545,-0.14559 c 0,0 0.0364,0.40037 0.0121,0.53383 0,0 -0.64834,0.0584 -0.95846,0.99487 -0.31011,0.93643 -0.24265,1.40737 -0.24265,1.40737 l 0.90994,-0.42464 c 0,0 0.74008,-1.32244 0.63089,-2.24451 -0.10919,-0.92207 -1.24965,-3.23938 -1.24965,-3.23938 z" + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2042" + d="m 111.55001,272.78351 c 0,0 -1.28605,0.80075 -1.79562,1.48017 l -0.60662,0.50956 c 0,0 -0.0728,-0.87354 -0.70369,-2.18385 l 1.5287,-1.67428 c 0,0 1.21326,0.825 1.57723,1.8684 z" + style="fill:#e9afaf;fill-opacity:0.525253;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path1198" + d="m 105.7467,272.7208 c 0,0 0.7954,-1.25591 -0.46051,-4.56315 -1.2559,-3.30721 -1.71641,-4.87711 0.69076,-4.27007 2.40716,0.607 5.25388,3.72586 4.89805,6.90751 -0.35586,3.18162 -0.94194,3.43281 -2.19785,2.99323 -1.25591,-0.43955 -0.77447,1.19312 -0.77447,1.19312 l -0.54423,0.20931 c -1.16349,-0.57978 -1.61156,-1.43778 -1.61175,-2.46995 z" + style="opacity:1;fill:url(#linearGradient1850);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5826" + d="m 114.17063,279.06815 c 0,0 5.14418,0.12132 9.12364,-2.37797 3.97946,-2.4993 3.42136,-3.25151 3.42136,-3.25151" + style="fill:none;stroke:#982112;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cczccc" + inkscape:connector-curvature="0" + id="path5828" + d="m 113.97712,279.19003 1.88738,2.84822 c 0,0 5.85942,-2.20454 7.78971,-4.18653 1.93029,-1.982 2.67663,-3.50023 2.67663,-3.50023 0,0 -3.22569,3.36296 -7.41223,4.08359 -4.18654,0.72064 -4.94149,0.75495 -4.94149,0.75495 z" + style="fill:#2b0000;fill-opacity:0.116162;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path2044" + d="m 112.20556,276.78792 c 0,0 -2.00319,0.10292 -3.15277,-0.15442 -0.15344,0.82488 -0.44709,1.46284 -0.87505,1.92169 l 3.55169,1.75011 -0.03,-1.24395 c 0,0 0.43752,-1.43269 0.50615,-2.27343 z" + style="fill:#411212;fill-opacity:0.474747;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsccc" + inkscape:connector-curvature="0" + id="path1200" + d="m 107.8035,276.03317 c 0,0 2.12956,4.24403 4.64138,1.69033 2.51181,-2.55367 2.78395,-2.97232 3.64214,-1.40242 0.85821,1.56989 -0.43957,8.56113 -5.81905,9.46119 -3.53749,-0.0837 -3.51484,-7.78353 -3.51484,-7.78353 0.0654,-0.53036 0.14334,-1.3709 1.05037,-1.96557 z" + style="opacity:1;fill:url(#linearGradient1859);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path390" + d="m 69.746728,199.92672 -6.106061,1.72001 -6.278066,1.11802 -1.462014,1.29001 -4.214047,2.15003 -2.064019,2.83802 0.946009,0.344 -0.08601,1.29002 1.680364,0.22492 0.377011,1.09816 1.296649,0.31095 -0.688007,1.63401 2.150024,1.11802 2.83803,-1.29003 3.870043,0.25801 -0.258005,1.07501 1.419015,-0.215 1.76302,0.98901 1.763018,0.12901 0.429999,0.68799 4.042046,1.54802 15.265165,2.70904 15.867158,3.56903 4.64405,-0.86001 -29.1113,-10.75012 -4.988055,-8.08408 z" + style="fill:#c1cd7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8528" + d="m 55.214543,213.88584 0.561266,-0.93544 0.608039,1.47332 -1.028988,0.6782 z" + style="fill:#445500;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#cba088;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 60.450042,205.15158 -0.851364,4.0744 -1.459483,1.39866 6.446053,-0.18243 0.243249,-2.79735 z" + id="path1058" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path3041" + d="m 101.73229,218.22029 c 0,0 13.22917,2.64584 19.38074,1.19063 6.15156,-1.45521 27.05364,-7.01146 27.05364,-7.01146 v -2.38125 l -30.8901,7.67292 -9.45886,0.66146 z" + style="fill:#000000;fill-opacity:0.267677;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path3400" + d="M 70.048437,201.08852 71.6194,199.5837 c 1.620172,-0.28437 3.515539,-0.0819 4.613673,-1.28984 l 0.677995,1.27331 -3.852995,2.00091 z" + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsccscccsc" + style="fill:url(#linearGradient3337);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 62.213587,202.29343 c 0,0 1.489889,-2.00681 1.550701,-3.61831 0.04666,-1.2364 0.111053,-3.35029 0.138504,-4.26739 0.0083,-0.27825 0.294376,-0.46286 0.294376,-0.46286 1.179107,-0.5179 1.768829,-0.46951 2.926171,-0.33447 0,0 0.201805,0.14094 0.211344,0.37579 0.04011,0.98746 0.189312,3.63507 0.656028,4.44568 0.577716,1.0034 2.250043,3.16221 2.250043,3.16221 0,0 -1.581109,1.79395 -4.01359,1.70273 -2.432473,-0.0912 -4.01358,-1.00338 -4.013579,-1.00338 z" + id="path1064" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path3296-3" + d="m 63.331855,200.60342 c 0,0 1.398058,0.61628 3.200373,0.38097 1.802311,-0.2353 2.57714,-0.79555 2.57714,-0.79555" + style="display:inline;fill:none;stroke:#666666;stroke-width:0.311349;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsccccc" + inkscape:connector-curvature="0" + id="path3402" + d="m 64.144922,202.97368 2.000911,-1.25677 c 0,0 1.329078,-1.17928 1.709417,-1.8242 0.380339,-0.64492 0.202936,-1.32595 0.202936,-1.32595 l 1.990251,2.88557 c 0,0 -0.909505,1.33945 -2.497005,1.5875 -1.5875,0.24804 -3.40651,-0.0661 -3.40651,-0.0661 z" + style="fill:#000000;fill-opacity:0.257576;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3296-2-3" + d="m 63.315014,200.82752 c 0,0 1.398056,0.61628 3.200372,0.38097 1.80231,-0.23531 2.577139,-0.79555 2.577139,-0.79555" + style="display:inline;fill:none;stroke:#c4c4c4;stroke-width:0.311349;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g1612"> + <path + inkscape:connector-curvature="0" + id="path3175" + d="m 157.92204,61.64064 c 0,0 -4.4791,-2.463506 -10.6752,-2.090248 -6.19609,0.373259 -9.25681,1.418383 -9.25681,1.418383 l 14.55708,7.46517 z" + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1060" + d="m 40.561384,88.397738 1.029478,-1.098108 7.618126,-3.157062 2.333482,-0.480422 1.92169,-1.5099 7.137705,-0.480423 5.078753,-2.813902 5.421911,-5.147384 2.608008,-1.57853 4.872855,-6.314126 8.716238,-10.637927 3.43159,-1.784427 7.274967,-12.69688 3.706113,-5.559174 6.65729,-2.333479 3.50022,-1.92169 5.07875,2.539376 9.88298,5.902333 1.16674,1.921689 7.75539,5.902333 4.3238,5.284647 3.63749,6.451389 9.19665,6.039598 -20.93269,19.28553 -4.87286,8.441711 -35.139469,7.41223 L 70.34758,98.212083 45.365609,91.211642 Z" + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1624" + d="m 113.92876,38.708327 9.0594,11.11835 5.21601,-8.647607 -1.64716,-2.470743 -9.05939,-4.804225 z" + style="fill:#6aafb0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#64b9b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 123.26268,49.414884 0.4118,30.609776 24.29565,-15.37352 -11.80467,-17.295209 z" + id="path1751" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1626" + d="m 143.44043,58.748808 -10.84382,20.726799 26.62913,-9.471186 z" + style="fill:#488d8e;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1628" + d="M 105.83021,39.943698 103.35947,61.356816 90.593957,53.670056 101.84957,35.139473 Z" + style="fill:#9fe4e5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2453" + d="M 87.025103,55.454483 103.63399,61.631342 91.143009,53.532793 Z" + style="fill:#cbf7ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2455" + d="M 103.08494,61.082287 92.515647,89.084056 74.945908,70.004421 87.436893,55.317217 Z" + style="fill:#9fe4e5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#5eaba2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 127.92965,41.316335 -5.21602,8.510342 13.58909,-2.196219 z" + id="path926" + inkscape:connector-curvature="0" /> + <path + style="fill:#559a9b;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 112.55613,58.474281 -9.19666,3.294325 1.5099,19.354164 6.45139,0.960845 z" + id="path1761" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#6aafb0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.35947,61.219553 4.39243,20.177744 -15.09899,6.863178 z" + id="path1753" + inkscape:connector-curvature="0" /> + <path + style="fill:#7dd4d6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 126.00796,56.827118 -14.13815,1.784426 11.6674,4.117907 z" + id="path1755" + inkscape:connector-curvature="0" /> + <path + style="fill:#64b9b4;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 112.55613,58.748808 -2.33348,22.648489 13.86362,2.196216 -0.68632,-21.275852 z" + id="path1757" + inkscape:connector-curvature="0" /> + <path + style="fill:#4a8f90;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 125.87069,57.101644 9.47119,17.569738 -10.84382,7.549496 -1.23538,-19.628691 z" + id="path1759" + inkscape:connector-curvature="0" /> + <path + style="fill:#9ee3e4;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.63399,61.905869 1.09811,-13.589093 7.96129,10.294768 z" + id="path1763" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path3483" + d="m 117.51587,33.908137 3.74786,6.598341 -7.39014,-1.636389 z" + style="fill:#6aa28d;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g1772"> + <path + style="fill:#688283;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 102.93213,35.281311 1.9412,2.669149 0.94634,2.499296 7.66773,-2.305177 3.42137,-3.518424 -5.14418,-3.275774 z" + id="path1616" + inkscape:connector-curvature="0" /> + <path + style="fill:#012f30;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 116.83598,34.674685 -6.96415,0.215736 -4.36761,4.103436 0.33971,1.455899 7.692,-2.256647 z" + id="path1618" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#1c4b4c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 108.36749,33.607025 1.02099,1.741511 7.20484,-0.06725 0.41251,-0.752215 -5.11991,-3.05739 z" + id="path1622" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#f6fafb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.86981,30.884304 -3.50022,1.92169 -6.65729,2.333479 2.03002,2.295884 2.15014,3.087194 -0.98549,-3.647145 -1.56418,-1.567238 5.21882,-1.240109 3.85693,-2.90939 z" + id="path1614" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <path + sodipodi:nodetypes="cccccc" + style="fill:#f6fafb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.99343,40.404906 7.47159,-2.236062 3.44375,-3.591219 h 1.11619 l -4.27064,4.513289 z" + id="path1620" + inkscape:connector-curvature="0" /> + </g> + <path + sodipodi:nodetypes="cccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path3154" + transform="matrix(0.2986068,0,0,0.2986068,-15.717817,5.4279099)" + d="m 302.61914,219.32227 -3.13476,4.0625 -8.73243,5.28515 -18.1582,17.23828 -17.00781,9.42383 -23.9043,1.60938 -6.43555,5.05664 -7.81445,1.60742 -25.51172,10.57422 -3.44726,3.67773 8.24218,4.82617 L 216.5,286.5 c 0,0 18.69925,7.59544 35.36914,14.03516 l 36.35352,10.1875 72.40039,6.20703 122.19431,-26.39717 -14.3039,-32.11831 L 412.5,253.5 l -47,19.25 z" + style="fill:#a7ae52;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3485" + d="m 117.51587,33.908137 3.80065,6.492766 5.59539,3.589498 2.0059,-2.639338 -2.37541,-2.744907 z" + style="fill:#417677;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3487" + d="m 136.0968,47.368752 -4.80359,7.073419 7.75965,-3.167203 z" + style="fill:#51958f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3489" + d="m 136.0968,47.421537 -4.64523,7.020634 -0.63344,-5.912113 z" + style="fill:#5cc3ed;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3491" + d="m 133.14074,44.99335 -2.42819,3.589495 5.38425,-1.108521 z" + style="fill:#64b9b1;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3493" + d="m 131.34599,54.494958 9.23768,4.803592 -1.53081,-8.023582 z" + style="fill:#5bb2b5;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3495" + d="m 131.50435,54.494958 3.11442,11.877014 6.01769,-7.073422 z" + style="fill:#62c9df;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3497" + d="m 140.4781,59.245763 7.28457,11.877014 -12.51046,-0.105573 -0.68623,-4.803592 z" + style="fill:#609064;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3499" + d="m 153.25249,64.946731 -9.60719,-6.439981 3.27278,10.821277 4.7508,-0.47508 z" + style="fill:#838b50;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path3501" + d="m 143.6453,58.401177 -0.63344,11.401931 4.59245,0.211147 z" + style="fill:#70792f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3503" + d="m 104.20776,36.863645 -5.80068,9.185438 -0.739016,-4.961952 4.011796,-5.912113 z" + style="fill:#a3cfff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3505" + d="m 97.456919,41.614999 -2.956058,5.173097 4.011792,0.527868 z" + style="fill:#d8e9ff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path3507" + d="m 97.879212,47.104816 4.011788,-1.266881 2.85049,1.372457 1.37245,-6.651129 -1.95576,-3.707878 -5.856675,8.775405 z" + style="fill:#52bbff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3509" + d="m 98.09036,47.104816 3.90621,-1.372452 -0.84458,14.146842 -4.856379,-7.60129 z" + style="fill:#64cce9;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3511" + d="m 97.879212,47.210392 -2.217042,9.079316 -4.645232,-3.167203 3.378351,-6.228834 z" + style="fill:#a2d1ff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3519" + d="m 104.91933,48.725896 10.73484,-7.24652 -4.4641,-2.010291 -5.1323,0.914483 z" + style="fill:#68cfde;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path3521" + d="m 115.70851,41.486879 -0.18864,9.179961 -10.74984,-2.090247 z" + style="fill:#64b9b1;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3523" + d="M 115.08768,50.588742 111.60376,56.712 105.05821,48.3717 Z" + style="fill:#62c7e7;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#ffffff;fill-opacity:0.383838;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 93.699107,48.581996 10.870723,5.726539 4.17358,-1.06766 10.77366,-7.861861 6.3089,-0.09706 2.71768,-3.882398 -1.65002,-2.71768 -14.85018,-7.764802 -10.38542,4.367702 z" + id="path1765" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path6426" + d="m 118.20733,34.243466 8.95821,4.927012" + style="fill:none;stroke:#f9fcfd;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path7106" + d="m 145.52985,59.848999 9.36879,3.359327 -1.97827,1.493034 z" + style="fill:#465251;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path8708" + d="m 147.75325,187.56169 3.60495,-0.95911 2.9435,-0.42995 c 0,0 1.75286,-2.71198 3.70416,-4.79557 l 3.96875,1.58749 -7.20989,6.35001 -4.82865,0.52917 z" + style="display:inline;fill:#000000;fill-opacity:0.277778;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path8706" + d="m 118.07031,161.64907 6.21771,-1.45521 1.83555,-3.98528 2.05052,1.2237 -3.10885,3.22461 -6.61459,1.9513 -0.21081,-0.2663 z" + style="fill:#000000;fill-opacity:0.19697;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3769" + d="m 110.08117,177.54499 -0.903,2.30052 1.87051,3.93454 -0.129,-6.38558 z" + style="fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path320" + d="m 142.39602,221.31945 2.10702,1.76301 2.06402,2.83803 1.29002,1.84903 -4.64406,1.20401 -3.56903,0.90302 -0.43001,-6.10607 z" + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1828" + d="m 149.09989,227.09217 18.33241,4.39231 6.98832,-3.34857 -10.82219,-5.92066 z" + style="fill:#737373;fill-opacity:0.666667;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3043" + d="m 143.08889,211.50046 c 0,0 2.66601,4.20949 3.78854,8.13836 1.12254,3.92886 1.6838,6.26747 1.6838,6.26747 l 1.96443,-4.63045 -1.6838,-9.77538 -0.98221,-2.19829 z" + style="fill:#000000;fill-opacity:0.171717;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path3049" + d="m 176.20358,203.31533 c 0,0 -7.48355,8.5593 -9.54152,11.50595 -2.05798,2.94665 -4.16273,4.34982 -4.16273,4.34982 l -6.26746,-0.79513 -0.32741,-3.55468 z" + style="fill:#000000;fill-opacity:0.242424;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(1.1868684,0,0,1.217799,61.727509,93.666543)" + id="g1567-6" + style="display:inline"> + <path + style="display:inline;fill:#829645;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.019794,78.565374 -1.166741,-0.240212 0.720635,-5.010118 z" + id="path1561-9-4-1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#677536;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.019794,78.565372 1.37328,-0.737405 -1.819386,-4.512923 z" + id="path1563-1-1-5" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1569-1" + d="m 71.274108,79.406974 -0.960845,0.514739 0.686319,-8.064235 1.336749,6.559629 z" + style="fill:#5c6b21;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1571-6" + d="m 70.999582,71.857478 -1.612847,4.735594 1.210741,-0.01085 z" + style="fill:#b2c859;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1573-1" + d="m 69.386735,76.593072 -0.549057,2.951166 1.475585,0.377471 0.28421,-3.339492 z" + style="fill:#7f9435;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.440849,79.647186 -1.166741,-0.240212 0.720635,-5.010118 z" + id="path1561-29" + inkscape:connector-curvature="0" /> + <path + style="fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.440849,79.647184 1.37328,-0.737405 -1.819386,-4.512923 z" + id="path1563-8" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1561-9-63" + d="m 68.107463,80.446148 -1.166741,-0.240212 0.720635,-5.010118 z" + style="display:inline;fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1563-1-8" + d="m 68.107463,80.446146 1.37328,-0.737405 -1.819386,-4.512923 z" + style="display:inline;fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g1234" + style="stroke:none"> + <path + style="fill:url(#linearGradient5855);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 131.91029,80.779611 -8.09855,-0.274526 -0.54906,2.196216 3.4316,4.529698 1.0981,5.147384 11.73604,4.598329 -5.55918,-14.069515 z" + id="path1240" + inkscape:connector-curvature="0" /> + <path + style="fill:#494b6b;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 121.90736,81.433341 c 0,0 4.07652,5.24124 4.3677,7.95892 0.29118,2.717679 0,3.30004 0,3.30004 l 2.23238,-0.485302 c 0,0 -0.4853,-4.950057 -2.13532,-7.279499 -1.65002,-2.329439 -3.20298,-4.367699 -3.20298,-4.367699 z" + id="path1236" + inkscape:connector-curvature="0" /> + <path + style="fill:#aec1bf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 167.18703,69.318102 -6.31413,-6.588651 c 0,0 -4.46106,7.069073 -9.60845,8.922133 -5.14738,1.853057 -8.92213,4.461065 -8.92213,4.461065 l 2.74527,6.725915 c 0,0 15.85394,-2.951168 22.09944,-13.520462 z" + id="path1246" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccscccccccc" + inkscape:connector-curvature="0" + id="path1231" + d="m 140.16154,113.27592 -1.17162,-1.07456 c 0,0 2.01666,-13.039574 -3.3971,-23.2944 -2.82128,-5.344102 -4.17358,-5.629479 -4.17358,-5.629479 l -9.80306,-1.84414 c 0,0 -0.0971,-1.06766 1.06766,-2.426502 1.16472,-1.358839 9.706,-6.794198 9.706,-6.794198 l 10.28836,2.426499 9.70394,35.51632 -9.50218,2.65733 z" + style="fill:#8789ac;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path1231-0" + d="m 141.11783,73.963998 c -5.73818,2.688228 -10.28569,4.184081 -9.45569,9.434697 0.5012,0.31647 1.79215,1.45728 3.93088,5.50848 5.41375,10.25482 3.39665,23.294245 3.39665,23.294245 l 1.17168,1.07429 2.71837,-0.46308 9.50234,-2.65713 -9.70413,-35.516135 z" + style="display:inline;fill:url(#linearGradient6363);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#90a3a1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 139.66568,70.278947 c 0,0 5.42191,0.274529 10.91246,-3.774747 5.49054,-4.049276 6.58865,-5.35328 6.58865,-5.35328 l 3.84338,1.5099 c 0,0 -2.60801,5.970963 -8.71624,9.059394 -6.10823,3.088431 -8.71624,4.735595 -8.71624,4.735595 z" + id="path1248" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path2944" + d="m 135.15327,79.18379 c 0,0 -1.56769,1.194427 -0.97047,3.433978 0.59721,2.239551 2.98606,1.642337 4.4791,4.777709 1.49303,3.135371 4.3298,18.662923 4.3298,18.662923 l 1.34373,-4.92701 -5.59888,-21.126432 z" + style="fill:#000000;fill-opacity:0.156566;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csccccsscccccc" + style="fill:url(#linearGradient3470);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 137.8252,68.039061 c 0,0 -8.15304,3.397099 -10.09424,5.14418 -1.9412,1.747078 -3.3971,4.853001 -3.3971,4.853001 l 8.15304,-5.04712 6.40596,1.747078 c 0,0 0.9706,0.679421 -0.0971,1.552961 -1.06766,0.87354 -4.853,1.84414 -4.46476,5.04712 0.38824,3.20298 3.59122,1.16472 5.72654,7.570679 2.13532,6.405959 3.00886,17.27668 3.00886,17.27668 l 10.38542,-3.49416 -7.66774,-30.573899 c 0,0 -0.68674,-1.911302 -1.9412,-2.523561 -2.03826,-0.873541 -6.01772,-1.552959 -6.01772,-1.552959 z" + id="path1238" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient3456);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 169.81038,69.925855 1.39074,15.554809 c -0.0535,0.717108 0.14744,1.391812 -0.6985,2.240993 0,0 -5.44318,5.617571 -11.7573,8.431473 -6.31413,2.813905 -13.53124,5.69653 -13.53124,5.69653 -0.81155,0.16949 -1.70353,0.18533 -1.78962,-1.80208 -0.2378,-5.489325 0.17938,-10.863388 -2.04298,-16.728593 8.64497,-3.49 14.00286,-2.467819 28.4289,-13.393132 z" + id="path1244" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccscscc" /> + <path + sodipodi:nodetypes="cscccsscc" + style="fill:#bfd2d0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 142.47958,82.014982 c 0,0 10.15751,-2.539375 15.37353,-6.794547 5.21601,-4.25517 7.48086,-7.892653 7.48086,-7.892653 l 3.38329,1.590886 c 0.56936,0.259582 1.06467,0.74251 1.07777,1.01712 0,0 -3.08842,4.666961 -9.26529,8.167182 -6.17686,3.500223 -13.58909,7.27497 -15.51078,7.206339 -1.92169,-0.06863 -3.70611,-1.853059 -3.70611,-1.853059 z" + id="path1242" + inkscape:connector-curvature="0" /> + <g + transform="translate(3.5037626,-1.0049316)" + id="g1343"> + <path + inkscape:connector-curvature="0" + id="rect1273" + d="m 145.74055,87.409906 c 1.06627,-0.140005 2.05744,0.758323 2.22234,2.014194 l 0.81359,6.196254 c 0.1649,1.25587 -0.56075,2.379635 -1.62702,2.51964 -1.06628,0.140007 -2.05744,-0.758334 -2.22234,-2.014204 l -0.81359,-6.196254 c -0.1649,-1.25587 0.56075,-2.379624 1.62702,-2.51963 z" + style="display:inline;fill:#90a3a1;fill-opacity:1;stroke:none;stroke-width:0.255239" /> + <path + inkscape:connector-curvature="0" + transform="scale(0.26458333)" + d="m 552.87891,330.57617 c -0.67288,-0.1341 -1.34332,-0.30162 -2.04883,-0.20898 -1.0075,0.13229 -1.93395,0.49816 -2.74805,1.04492 -0.8141,0.54676 -1.51456,1.27608 -2.07031,2.13672 -0.55575,0.86064 -0.96677,1.85184 -1.19922,2.92578 -0.23245,1.07394 -0.28667,2.22937 -0.13086,3.41601 l 3.07422,23.41993 c 0.15581,1.18665 0.50795,2.28809 1.00976,3.26562 0.43284,0.84316 1.01966,1.54196 1.64844,2.17383 0.67389,0.13466 1.34414,0.30177 2.05078,0.20898 4.03,-0.52915 6.77364,-4.77488 6.15039,-9.52148 l -3.07617,-23.41992 c -0.29034,-2.21127 -1.30133,-4.07685 -2.66015,-5.44141 z" + style="display:inline;fill:#071a18;fill-opacity:1;stroke:none;stroke-width:0.964683" + id="rect1273-0" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2398" + transform="matrix(0.2986068,0,0,0.2986068,-16.265523,5.4826805)" + d="m 543.20508,274.31641 c -0.2206,0.003 -0.44284,0.0195 -0.66602,0.0488 -0.6123,0.0804 -1.18671,0.26368 -1.72265,0.52344 l 3.64411,9.52634 6.26993,2.98367 -0.74803,-6.2893 c -0.51771,-3.94291 -3.46839,-6.83339 -6.77734,-6.79297 z" + style="fill:#000000;fill-opacity:0.181818;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="m 146.28254,87.464943 c -0.17803,-0.03548 -0.35542,-0.0798 -0.54208,-0.05529 -0.26657,0.035 -0.51169,0.131805 -0.72709,0.276468 -0.2154,0.144664 -0.40073,0.33763 -0.54777,0.565341 -0.14704,0.227711 -0.25579,0.489966 -0.3173,0.774112 -0.0615,0.284147 -0.0759,0.589855 -0.0346,0.90382 l 0.81339,6.196523 c 0.0412,0.313968 0.1344,0.605391 0.26717,0.864029 0.11452,0.223086 0.26978,0.407977 0.43615,0.575159 0.1783,0.03563 0.35563,0.07984 0.5426,0.05529 1.06627,-0.140005 1.79219,-1.263354 1.62729,-2.519225 l -0.8139,-6.196521 c -0.0768,-0.585065 -0.34431,-1.078667 -0.70383,-1.439706 z" + style="display:inline;fill:#071a18;fill-opacity:1;stroke:none;stroke-width:0.255239" + id="rect1273-0-4" /> + <path + sodipodi:nodetypes="ccccccsccccccccc" + inkscape:connector-curvature="0" + id="path2436" + transform="matrix(0.2986068,0,0,0.2986068,-16.265523,5.4826805)" + d="m 538.18164,277.08594 c 0,0 -0.1917,0.41503 -0.43555,1.07617 0.1437,-0.31743 0.30301,-0.62253 0.48438,-0.91016 z m -1.03125,3.02929 c -0.37044,1.4616 -0.95251,5.08311 -0.77539,6.04595 0.71328,4.92851 1.50363,14.23626 1.90699,17.21403 0.41717,3.07972 2.35979,8.03571 7.48754,7.04276 1.44169,-0.0861 1.73609,-1.56044 1.50195,-3.47852 -0.89749,0.86775 -2.01665,1.45284 -3.2832,1.61914 -0.62614,0.0822 -1.2193,-0.0662 -1.8164,-0.18554 -0.55716,-0.55988 -1.07743,-1.17869 -1.46094,-1.92578 -0.44463,-0.86615 -0.75656,-1.84114 -0.89453,-2.89258 l -2.72461,-20.75196 c -0.12215,-0.92853 -0.0904,-1.83277 0.0586,-2.6875 z" + style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <use + height="100%" + width="100%" + transform="translate(6.373271,-2.6513064)" + id="use2394" + xlink:href="#g1343" + y="0" + x="0" /> + <use + height="100%" + width="100%" + transform="translate(12.487697,-6.0568291)" + id="use2396" + xlink:href="#g1343" + y="0" + x="0" /> + <path + inkscape:connector-curvature="0" + id="path2922" + transform="matrix(0.2986068,0,0,0.2986068,-15.717817,5.4279099)" + d="m 461.05469,250.09766 c -1.26982,2.64131 -1.13867,4.43554 -1.13867,4.43554 l 32.83007,6.17578 c 0,0 4.52842,0.95673 13.97657,18.85352 18.13006,34.34224 11.375,78.00977 11.375,78.00977 l 3.92382,3.59765 2.6211,-0.44726 L 520.75,357 c 0,0 5.01376,-37.15755 -4,-63.25 -9.49998,-27.5 -23.5,-38.25 -23.5,-38.25 z" + style="fill:url(#linearGradient6371);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cssccccc" + inkscape:connector-curvature="0" + id="path2946" + d="m 126.70736,80.921311 c 0.0343,-0.03434 2.24298,0.200773 4.19617,-0.08335 0.43225,-0.06288 0.92701,-1.055792 1.17164,-1.371458 1.11369,-1.437054 1.17115,-1.375885 1.85737,-1.74539 -0.1371,-0.02285 -2.51225,3.096007 -2.00589,3.747858 0.0792,0.580654 2.08508,2.771303 2.08508,2.771303 -0.0979,-0.09792 -0.9912,-1.222017 -2.8399,-2.312488 -1.23197,-0.541615 -2.60324,-0.735913 -4.46447,-1.00648 z" + style="fill:#b1b1b5;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2948" + d="m 124.55273,77.840059 8.06238,-4.927012 -0.12291,-1.656699 c -3.23959,1.399657 -5.26714,3.203327 -7.26761,5.016025 z" + style="fill:#90a3a1;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path2950" + d="m 132.54046,72.913047 5.74818,1.642337 c 0,0 0.89582,0.746517 0.82117,1.343731 0,0 0.82117,-1.507395 0.22396,-2.403215 -0.59722,-0.895821 -6.86796,-2.213158 -6.86796,-2.213158 z" + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2952" + d="m 125.89646,77.01889 6.56935,-3.95654 c 0,0 5.22562,0.895821 5.89748,1.642338 0.67187,0.746517 0.82117,1.194427 0.82117,1.194427" + style="fill:none;stroke:#000000;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path7146" + d="m 141.70431,83.66425 c 0,0 1.37245,2.428191 5.5426,1.108522 4.17016,-1.319669 15.78323,-8.287515 15.78323,-8.287515" + style="display:inline;fill:none;stroke:url(#linearGradient7169);stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="cszsccscc" + inkscape:connector-curvature="0" + id="path7177" + d="m 171.04582,186.43058 c 0,0 1.25787,0.67615 2.04544,1.0385 0.30321,0.13951 -1.07299,0.30525 -1.53836,0.42809 -0.46536,0.12285 -2.028,0.63108 -2.17135,0.80753 -0.6905,0.84995 -1.52432,1.76319 -2.35814,2.4031 -3.69501,3.46113 0.51449,-0.93545 0.51449,-0.93545 0,0 0.70158,-1.59025 1.07576,-3.60145 0.37418,-2.01121 0.37418,-2.24507 0.37418,-2.24507 z" + style="fill:#ffffff;fill-opacity:0.449495;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3039" + d="m 151.27553,220.86613 4.69635,4.63021 11.1125,3.0427 -1.71979,-6.54843 -12.30313,-2.51354 z" + style="fill:#000000;fill-opacity:0.272727;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#cccccc;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 65.704691,202.46374 3.053029,1.03202 -2.768534,1.58436 14.335662,5.38171 2.795028,-1.80603 -7.124854,-2.54695 0.916229,-0.54578 7.369633,2.57674 7.009083,-4.98806 2.924026,1.03201 -0.68801,0.55902 -2.021017,-0.68802 -1.290019,0.94601 2.236029,0.68802 -0.98901,0.73101 -1.978016,-0.86002 -3.010038,2.10701 1.806017,0.60201 -4.131337,3.03977 c 0,0 10.250229,3.00004 15.453284,3.51605 5.203054,0.516 13.747324,-0.49274 23.637434,-2.98678 9.89011,-2.49403 20.17056,-4.88253 21.7097,-5.55538 0.85282,1.31748 1.64067,3.85136 1.64067,3.85136 0,0 -28.85444,7.50908 -35.3045,7.85309 -6.45008,0.34401 -18.103195,-0.81701 -27.348296,-3.78404 -9.2451,-2.96704 -19.049202,-6.45007 -19.049202,-6.45007 l -4.214044,2.40802 -2.150023,-1.03201 4.73005,-2.66602 -2.451027,-1.11801 0.387005,-0.94602 z" + id="path1062" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccssccssccccccc" /> + <ellipse + style="display:inline;fill:#d1d1d1;fill-opacity:0.348485;stroke:none;stroke-width:0.344101" + id="path1066-5" + cx="45.34597" + cy="203.20107" + rx="1.7116712" + ry="0.49600098" + transform="matrix(0.98401216,-0.17810131,0.10320258,0.99466036,0,0)" /> + <ellipse + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.234436" + id="path1066" + cx="38.693878" + cy="201.18962" + rx="1.3330141" + ry="0.29562819" + transform="rotate(-7.8030988)" /> + <path + inkscape:connector-curvature="0" + id="path8251" + d="m 99.016676,196.11242 12.113994,-2.57247 7.7174,5.65943 -11.50595,4.58367 z" + style="fill:#559a9b;fill-opacity:0.540404;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g1190"> + <path + inkscape:connector-curvature="0" + id="path1169" + d="m 77.284026,95.822486 4.853001,0.897805 0.145589,-3.275774 -4.877265,-0.873541 z" + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1167" + d="m 74.614875,97.448242 2.766211,-1.577226 0.145589,-3.25151 -0.558093,0.09706 z" + style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1171" + d="m 82.355411,93.808491 -0.291179,5.14418 5.896393,0.655155 -1.383104,-5.071385 z" + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1175" + d="m 90.459921,95.288654 3.542689,-2.863267 0.19412,-3.251513 -4.707409,3.445632 z" + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1173" + d="m 88.009155,99.632091 3.858135,-3.518426 -2.305174,-3.542689 -2.936065,2.111055 z" + style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1163" + d="m 81.96717,86.092219 -8.153041,5.969191 12.666332,2.81474 9.31776,-7.03685 z" + style="fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1165" + d="m 73.814129,92.01288 -4.804468,3.712546 5.629479,1.722816 2.329442,-4.731676 z" + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1177" + d="m 93.978345,92.328327 2.984595,0.558093 -2.76621,-3.8824 z" + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1179" + d="M 96.890146,92.910685 99.510767,89.97462 95.895281,87.717975 94.19673,88.95549 Z" + style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + inkscape:connector-curvature="0" + id="path3513" + d="m 107.86944,177.8245 -10.476964,3.46114 5.051394,-5.89329 z" + style="fill:#a2d1ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3515" + d="m 107.7759,177.8245 -2.80633,11.13178 -3.83532,-4.86431 1.30962,-4.39658 z" + style="fill:#66cbf1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path6496" + d="m 105.65127,183.42913 0.4828,-3.49226 1.38448,-1.17038 0.94611,0.0403 0.8423,6.84066 2.11569,0.53718 0.10963,-2.65609 0.39351,-4.11372 0.60804,-0.42094 1.26285,0.28063 0.42095,-0.32741 2.10475,0.32741 6.78196,-2.05798 8.10452,-2.29298 1.57732,2.62039 3.32083,-0.32741 -0.6108,-3.13422 0.51725,-3.41388 c 0,0 2.57247,-0.8419 4.25627,-2.71279 1.6838,-1.87088 0.88867,-2.19829 0.88867,-2.19829 l -1.26285,-0.88867 -10.80437,7.81095 -14.35906,4.06918 -13.04943,-1.02898 -1.56998,2.20279 2.53451,1.69247 -0.53233,4.42911 3.00905,2.53554 z" + style="fill:#000000;fill-opacity:0.191919;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3773" + d="m 133.08978,176.84367 2.40208,-1.21623 c 0,0 0.60811,-4.77374 0.5473,-5.41226 -0.0607,-0.63852 -2.79735,1.33786 -2.79735,1.33786 z" + style="fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3761" + d="m 104.94261,183.45754 0.344,-6.32106 -3.46153,-0.51601 0.7525,4.14955 z" + style="fill:#999999;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g1229" + style="stroke:none"> + <path + inkscape:connector-curvature="0" + id="path1214" + d="m 98.658189,74.980225 -2.779585,-0.446106 -4.117909,3.088428 3.362957,0.686319 z" + style="fill:#feeadb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path1208" + d="m 97.335761,93.481788 0.121373,-8.858797 -2.386311,-1.311928 -0.05012,-7.129783 4.907174,0.446108 0.137263,17.226577 z" + style="fill:#ffccaa;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1210" + d="m 99.99651,93.785334 3.29433,-3.054114 -0.10295,-16.162785 -3.225696,2.1619 z" + style="fill:#c28e6b;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1212" + d="m 103.2222,74.499802 -5.113063,-0.549055 -3.157062,2.333482 5.010119,0.446106 z" + style="fill:#feeadb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1216" + d="m 91.760695,77.485284 0.07393,2.270191 5.532783,0.963427 -0.116169,-2.20414 z" + style="fill:#efb691;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1218" + d="m 97.31462,80.745295 1.309255,-0.857899 -0.102949,-2.161899 -1.269688,0.823581 z" + style="fill:#a16d4a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1220" + d="m 98.486612,77.588233 -3.465906,-0.446108 -0.789266,0.686318 3.122748,0.789266 z" + style="fill:#feeadb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path8249" + d="m 101.93326,75.395216 -2.295539,1.269079 -2.836764,-0.205293 2.93008,0.466574 0.26128,4.049854 0.205293,-4.08718 z" + style="fill:#ffffff;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8775" + d="m 95.849148,74.555384 -3.993866,2.986068 0.03733,2.202225" + style="fill:none;stroke:#c28e6b;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path9102" + d="m 99.976207,93.741886 0.05278,-6.123258 3.24639,-4.618838 v 7.70686 z" + style="fill:#b3744a;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path9104" + d="m 100.05539,87.724201 -2.612945,1.055736 -0.07918,4.724411 2.639335,0.343114 z" + style="fill:#ddaf91;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g1271"> + <path + inkscape:connector-curvature="0" + id="path402" + d="m 164.32258,100.26298 c 0,0 0.67942,-1.552959 1.79561,-2.23238 1.11619,-0.679421 10.53101,-5.04712 10.53101,-5.04712 0,0 2.08679,-0.87354 4.02799,0.19412 1.9412,1.067659 6.7942,3.97946 7.47362,9.51188 0.67942,5.53242 -2.57209,17.51933 -2.57209,17.51933 l -14.85018,6.06625 -1.40737,-1.65002 z" + style="fill:#9f8c8c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path274" + d="m 151.55978,129.53103 5.45904,3.02867 9.34202,-5.07139 -6.21844,-1.19285 z" + style="fill:#4d4d4d;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path276" + d="m 159.324,118.31614 -0.89781,8.22584 1.23751,0.38824 1.06766,-8.29864 z" + style="fill:#666666;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path406" + d="m 174.65947,112.15283 14.60753,-8.39569 -2.52356,16.20902 -14.60753,6.3089 z" + style="fill:#6c5e59;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path7179" + d="m 172.18051,126.10238 0.52256,-3.91921 14.2958,-6.60668 -2.35153,5.52423 z" + style="fill:#000000;fill-opacity:0.308081;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2318" + d="m 174.70353,112.04121 -0.58644,3.99436 10.46118,-4.71028 -0.56042,-4.48834 z" + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path278" + d="m 159.68797,126.97875 14.31635,-5.84787 1.72281,-8.27436 -14.99577,5.79933 z" + style="fill:#263937;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccscssscsccccscc" + inkscape:connector-curvature="0" + id="path249" + d="m 149.12588,130.40945 7.28631,3.33923 c 0,0 1.26178,0.9706 4.07652,-0.58236 0.54006,-0.29796 1.3417,-0.7253 2.17373,-1.11047 0.36541,-0.48341 0.983,-1.5408 1.47747,-1.75977 1.29092,-0.57168 2.73965,-1.09601 3.90759,-1.57085 0.28438,-0.11561 0.5098,0.81834 0.77732,0.70862 1.48156,-0.60764 2.53461,-1.02347 2.53461,-1.02347 0,0 0.67942,-0.4853 1.26178,-1.69855 0.58236,-1.21325 2.37797,-7.71627 2.37797,-7.71627 l -0.63089,-0.72795 -15.91784,7.08538 -1.11619,5.48389 c 0,0 -0.29118,0.92207 -0.77648,0.92207 -0.4853,0 -4.91221,-2.19361 -4.91221,-2.19361 z" + style="fill:#a6b9b7;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path284" + d="m 170.75281,116.35068 -0.33971,2.49929 3.00886,-1.18899 0.36397,-2.47502 z" + style="fill:#cccccc;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsccccccc" + inkscape:connector-curvature="0" + d="m 158.44717,125.36806 -1.11311,5.46891 c 0,0 -0.29088,0.92191 -0.77618,0.92191 -0.4853,0 -4.89494,-2.14201 -4.89494,-2.14201 l -2.43424,0.82668 7.18345,3.30487 c 0,0 0.23358,0.1779 0.71986,0.25942 0.96469,-0.29799 1.215,-0.43891 1.53704,-1.08411 0.58236,-0.72796 1.45568,-6.72146 1.45568,-6.72146 z" + style="fill:#8da5a3;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path253" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path2300" + d="m 153.57485,132.54089 0.48411,-1.70407 3.77605,-2.38181 0.25173,-1.4136 -8.94632,3.35004 z" + style="display:inline;fill:#000000;fill-opacity:0.237374;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path251" + d="m 158.45045,125.35299 1.35884,0.70369 -0.12132,2.71768 0.80888,-2.89422 14.50233,-6.88458 -0.63089,-0.72795 z" + style="fill:#d9ecea;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="opacity:1;fill:#a6b9b7;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 143.61894,103.59464 16.81994,-6.756317 12.47322,5.197177 3.49628,1.79538 1.93713,4.63021 -1.65365,4.48846 -14.31585,7.09226 -5.24442,-9.59635 z" + id="path1186" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccscccccc" + style="opacity:1;fill:#8c9f9d;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 143.2128,106.16641 13.41108,5.14757 c 0,0 0.47247,0.0945 0.66146,0.99219 0.18899,0.89769 1.84264,6.47284 1.84264,6.47284 l 3.26004,1.28087 -2.92932,-8.7459 c 0,0 -0.37797,-1.32292 -1.65364,-1.88988 -1.27567,-0.56697 -14.17411,-5.81138 -14.17411,-5.81138 z" + id="path1184" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3051" + d="m 155.09456,108.28916 0.92376,0.40523 0.0187,2.41433 -0.89736,-0.3695 z" + style="display:inline;fill:#000000;fill-opacity:0.257576;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="opacity:1;fill:#bed1cf;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 159.12798,110.60527 17.2804,-6.77439 -3.49628,-1.79539 -14.7495,7.6161 c 0.46293,0.14818 0.64674,0.58907 0.96538,0.95368 z" + id="path1188" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#738684;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 178.3455,108.46108 -16.52445,10.03445 0.56697,1.56435 14.30384,-7.11033 z" + id="path1190" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccscccc" + inkscape:connector-curvature="0" + id="path2320" + d="m 183.78168,99.404765 -4.32137,1.880995 c 0,0 3.47485,6.80807 1.99604,13.8187 -1.47881,7.01064 -2.57422,8.27036 -2.57422,8.27036 l 5.47706,-2.30036 7.06541,-12.70678 z" + style="fill:#000000;fill-opacity:0.191919;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path394" + d="m 184.51106,114.62786 9.02658,-6.06625 c 0,0 1.89267,-10.069974 -3.83387,-17.398003 l -9.46335,5.92066 z" + style="fill:#bfd2d0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path392" + d="m 179.0757,97.690891 c 0,0 4.853,8.735399 4.12505,16.500199 l 1.21325,0.43677 c 0,0 1.21914,-6.90572 -4.12505,-17.519328 z" + style="fill:#a2b0af;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path400" + d="m 180.50734,127.68243 9.34202,-6.62434 c 0,0 3.68828,-4.99859 3.63975,-11.1619 l -9.80306,6.7214 z" + style="fill:#d8ebe9;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path396" + d="m 182.98237,115.81685 c 0,0 -1.38311,8.34716 -3.76108,11.0891 l 1.31031,0.84928 c 0,0 3.00886,-4.00373 4.10079,-11.2347 z" + style="fill:#8c9f9d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path398" + d="m 182.9581,115.79258 9.2935,-6.26037 1.21325,0.41251 -8.88099,6.6486 z" + style="fill:#a2b0af;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path404" + d="m 169.41823,97.98207 8.54128,-4.173579 c 0,0 0.72795,-0.388239 1.35884,-0.19412 0.63089,0.19412 1.21325,0.87354 1.21325,0.87354 l -8.58981,4.31917 z" + style="fill:#ffffff;fill-opacity:0.308081;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.64606737,0,0,0.64606737,58.927668,34.929881)" + style="stroke:none" + id="g1475"> + <path + style="fill:#999999;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 153.59745,103.12625 -0.0243,0.80075 4.63461,2.30517 -0.0243,-0.94633 z" + id="path1465" + inkscape:connector-curvature="0" /> + <path + style="fill:#808080;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 158.15927,106.18364 3.68828,-0.87354 -0.0728,-0.89781 -3.63975,0.92207 z" + id="path1467" + inkscape:connector-curvature="0" /> + <path + style="fill:#666666;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 161.82329,105.3101 7.83759,-4.46476 -0.4125,-0.5581 -7.59495,4.14932 z" + id="path1469" + inkscape:connector-curvature="0" /> + <path + style="fill:#bed1cf;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 162.38138,97.593831 -8.39569,3.785339 -0.33971,1.84414 4.56182,2.13532 3.44563,-0.87354 7.52215,-4.12505 z" + id="path1463" + inkscape:connector-curvature="0" /> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1481" + d="m 125.35299,152.42341 c -0.49649,-0.22758 -0.3376,-0.6008 -0.19412,-0.9706 l 24.84736,-10.33689 c 0.37113,0.32353 0.35727,0.64707 0.14559,0.9706 z" + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1483" + d="m 134.3047,148.79872 -0.0858,-0.978 3.5517,-1.47559 0.0515,1.06379 z" + style="fill:#ffff00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path1538" + d="m 162.5755,132.12293 c 0,0 1.27406,-1.48513 1.68657,-2.60132 l 6.02786,-2.55784 c 0,0 0.11338,1.28702 -1.50259,2.51427 l -0.58799,-0.36449 -4.46106,1.75011 z" + style="fill:#333333;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + transform="scale(0.26458333)" + d="m 642.98134,479.82693 -5.52465,2.65118 -1.79849,5.53361 0.0566,-0.0234 2.22071,1.37695 c 6.1076,-4.63842 6.98556,-10.38474 6.98556,-10.38474 z" + style="fill:#738684;fill-opacity:1;stroke:none;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path1540" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2347" + d="m 187.00372,111.12949 c 0,0 -0.0431,-7.99395 -2.95942,-11.761699 l 5.6915,-3.464033 c 0,0 3.09004,4.643552 2.21062,12.030852 z" + style="fill:none;stroke:#e5f2f1;stroke-width:0.186218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3725" + d="m 187.24713,97.463351 -2.05868,-3.431135" + style="fill:none;stroke:#e5f2f1;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3731" + d="m 190.04483,109.182 -0.21115,1.79475" + style="fill:none;stroke:#e5f2f1;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2334" + d="m 160.83656,115.70364 -1.08213,-4.72441 4.53965,-2.42819 -4.64523,1.79475 -1.53081,-0.73901 c 0,0 0.79179,0.36951 1.37246,2.26983 0.58064,1.90032 1.34606,3.82703 1.34606,3.82703 z" + style="display:inline;fill:#ffffff;fill-opacity:0.717172;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2699" + d="m 176.78088,105.06464 -12.66881,5.1731 1.42524,3.53671 3.27278,-1.63639 -1.26688,-3.21999" + style="fill:none;stroke:#e5f2f1;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.378788" /> + <path + inkscape:connector-curvature="0" + id="path2701" + d="m 169.86582,111.29347 -0.73901,-1.74196 2.58655,-1.21409 0.63344,1.63639 z" + style="fill:none;stroke:#bfcfcd;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1483-8" + d="m 140.19998,146.34313 -0.0858,-0.978 3.5517,-1.47559 0.0515,1.06379 z" + style="display:inline;fill:#ffff00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + inkscape:connector-curvature="0" + id="path7181" + d="m 169.26317,213.67561 -3.9026,3.43958 v 0.39688 l -2.57969,5.62239 -11.17865,-4.43177 15.08125,-6.28385 z" + style="fill:#000000;fill-opacity:0.19697;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 157.7946,214.03011 0.0458,2.17402 1.35304,0.5017 c 0,0 -0.19763,-1.5355 -1.39868,-2.67572 z" + id="path1389" + inkscape:connector-curvature="0" /> + <path + style="fill:#afcdd3;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 157.78699,214.04531 1.36881,-0.59998 c 0,0 0.98765,0.72161 1.24609,2.53074 l -1.22383,0.72976 c 0,0 -0.21284,-1.36827 -1.39107,-2.66052 z" + id="path1391" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path1389-4" + d="m 163.60691,211.73838 0.0456,2.17403 1.35306,0.50169 c 0,0 -0.19764,-1.53548 -1.39868,-2.67572 z" + style="display:inline;fill:#6c7f7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1391-7" + d="m 163.59931,211.75358 1.36881,-0.59997 c 0,0 0.98765,0.7216 1.2461,2.53075 l -1.22383,0.72974 c 0,0 -0.21285,-1.36827 -1.39108,-2.66052 z" + style="display:inline;fill:#9abcc7;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#c8b7b7;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 141.19202,222.43746 c 0,0 1.634,1.07502 0.12899,2.53702 -1.50502,1.46202 -1.91352,2.81653 -0.0644,3.69805 1.84902,0.88151 1.05351,0.602 1.05351,0.602 l 2.66604,-0.731 c 0,0 -3.03153,-0.70951 -2.81655,-1.80602 0.21501,-1.09652 2.75204,-1.89202 1.67703,-4.19255 -1.54802,-2.12852 -1.63401,-2.25754 -1.63401,-2.25754 z" + id="path337" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccccccc" /> + <path + sodipodi:nodetypes="cccccccccc" + inkscape:connector-curvature="0" + id="path1199-7" + d="m 141.67752,229.10939 -8.56781,2.35092 -5.44153,-1.39009 -6.40685,2.10685 c -0.37698,1.59167 -1.24309,2.53747 -2.03295,3.09231 l -25.40155,6.9696 10.52668,3.89975 22.92761,-5.70584 11.69644,1.80609 z" + style="display:inline;fill:url(#linearGradient7092);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g1414"> + <path + sodipodi:nodetypes="cccccccccccc" + inkscape:connector-curvature="0" + id="path7094" + d="m 115.37057,116.73359 -3.73259,1.34374 9.85403,3.35932 9.70472,2.98607 5.67353,-1.94094 1.71698,-0.14931 4.40446,-0.97047 v -0.89582 l -0.37326,-0.97047 -11.34706,-3.73259 -1.19442,-2.12757 z" + style="fill:#000000;fill-opacity:0.116162;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1411" + d="m 123.50885,118.99556 -8.15304,-2.13532 v -9.706 l 7.95892,1.35884 z" + style="fill:url(#linearGradient8183);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient8207);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 123.50885,118.9713 6.74567,-1.9412 -0.21838,-6.867 -6.74567,1.86841 z" + id="path1416" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#897c8a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 133.33618,107.03292 c 0,0 -1.16472,1.98973 -2.20812,2.9118 l -7.82993,2.34562 3.19532,-3.58314 z" + id="path1422" + inkscape:connector-curvature="0" /> + <path + style="fill:#e7dae8;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 123.48459,102.59242 5.53242,-1.55296 c 0,0 2.11105,0.65516 4.34343,4.02799 l -6.13904,2.014 z" + id="path1430" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccc" + style="fill:#a89ba9;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 123.02355,109.07118 0.21752,3.23406 c 0,0 3.2281,-0.8561 4.73253,-3.01568 l -0.0728,-2.49929 c 0,0 -0.43677,-2.25665 -4.34344,-4.12505 z" + id="path1418" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#c7bac8;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 127.99575,109.12694 5.31616,-1.9727 v -2.15958 l -5.43536,1.91693 z" + id="path1420" + inkscape:connector-curvature="0" /> + <path + style="fill:#eee1ef;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 125.35299,105.21304 -8.85672,-0.84928 -5.92067,2.30518 7.88613,1.84414 z" + id="path1436" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccccc" + style="display:inline;fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 115.37265,113.36472 7.70562,-2.86302 0.90469,-1.71987 1.31041,-0.368 0.005,-3.23525 -6.45367,3.12305 -3.57794,-0.0865 z" + id="path356" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient8191);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.6484,106.71747 0.14559,2.08679 7.93465,1.26178 -0.0728,-2.49929 z" + id="path1432" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#d2c5d3;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 118.68267,110.07072 6.64606,-2.52824 -0.007,-2.32731 -6.73886,2.30304 z" + id="path1434" + inkscape:connector-curvature="0" /> + <path + style="fill:#e2dbe6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 113.00211,103.32037 8.1773,-2.839 7.95892,0.72794 -8.41996,2.88754 z" + id="path1442" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path8052" + d="m 113.48961,105.53972 6.49277,0.71262 3.77425,-1.21409 -0.44869,-0.0528 0.0264,-0.58065 -9.29047,0.29032 0.15836,0.50148 z" + style="fill:#978a98;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient8199);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 120.37867,105.62555 -7.32803,-0.4853 -0.0728,-1.84415 7.78906,0.70369 z" + id="path1438" + inkscape:connector-curvature="0" /> + <path + style="fill:#c9bcca;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 120.3544,105.69834 3.97946,-1.4559 -0.0243,-1.84414 -3.54269,1.5287 z" + id="path1440" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path8054" + d="m 127.5388,104.50938 3.80724,-1.1571" + style="display:inline;fill:none;stroke:#897c8a;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8054-5" + d="m 128.09868,105.10659 3.80724,-1.1571" + style="display:inline;fill:none;stroke:#897c8a;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8054-8" + d="m 126.90426,103.91217 3.80724,-1.1571" + style="display:inline;fill:none;stroke:#897c8a;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8215" + d="m 114.99731,107.17818 3.56462,0.37326 2.44484,-0.8585 -2.20222,1.02646 -0.16797,1.26908 -0.27994,-1.1571 z" + style="fill:#ffffff;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path8215-7" + d="m 118.74855,103.86551 1.92229,0.0373 1.4557,-0.52257 -1.23175,0.70919 -0.41058,1.04513 0.0933,-1.02646 z" + style="display:inline;fill:#ffffff;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8232" + d="m 127.03951,105.25328 0.98913,1.23175 2.70613,-0.57855 -2.63147,1.06379 0.0374,2.05292 -0.3546,0.55989 c 0,0 0.13064,-1.77298 0.0746,-2.35153 -0.056,-0.57855 -0.82117,-1.97827 -0.82117,-1.97827 z" + style="display:inline;fill:#ffffff;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + inkscape:connector-curvature="0" + id="path3652" + d="m 91.148958,188.85155 7.077604,5.29166 1.719792,4.89479 -14.2875,-4.56406 z" + style="fill:#6aafb0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g307"> + <path + sodipodi:nodetypes="csccscccccccc" + inkscape:connector-curvature="0" + id="path3221" + d="m 57.104916,87.880712 c 0,0 0.858494,0.914484 1.996933,0.690528 1.138438,-0.223955 0.858495,-0.354595 0.858495,-0.354595 l 5.4869,1.922281 c 0,0 -0.186629,0.354596 0.242618,0.615877 0.429247,0.261281 2.146236,0.746517 2.146236,0.746517 l 2.276877,0.615877 2.482169,-0.447911 1.84763,-1.922281 -0.653203,-1.810304 -2.500832,-0.709191 -10.563215,-0.541225 c -2.657951,-0.921023 -3.089926,0.181569 -3.620608,1.194427 z" + style="fill:#000000;fill-opacity:0.136364;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <use + height="100%" + width="100%" + transform="translate(4.1041679,-2.2962228)" + id="use3181" + xlink:href="#g349" + y="0" + x="0" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path3219" + d="m 71.789375,87.935349 -0.05279,-4.526463 c -0.578267,0.03846 -1.15799,-0.323438 -1.702373,-0.488277 l -0.03959,4.790396 c 0,0 0.897373,0.329916 1.227292,0.369505 0.329916,0.03959 0.567458,-0.145161 0.567458,-0.145161 z" + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path358" + d="m 67.652598,85.392613 3.786471,-1.547629 0.07223,3.910776 -3.57473,2.063505 z" + style="fill:#902828;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <use + height="100%" + width="100%" + transform="matrix(0.96877967,0,0,0.97642081,-1.1138047,-1.4842588)" + id="use3179" + xlink:href="#g349" + y="0" + x="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path338" + d="m 59.661741,83.905093 1.99049,-1.631852 5.215263,1.231782 -0.03691,2.320235 z" + style="fill:#ccbbcc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path340" + d="m 66.867494,85.760109 4.57699,-1.920999 -1.804069,-1.236123 -2.823033,0.868627 z" + style="fill:#a694a9;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path342" + d="m 61.639034,82.302309 2.555764,-0.835218 5.428914,1.135896 -2.856445,0.918739 z" + style="fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path336" + d="m 59.542349,87.705116 6.461744,2.182345 0.118115,-4.299479 -6.449219,-1.771761 z" + style="fill:url(#linearGradient3215);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <rect + transform="matrix(0.96835519,0.2495761,0,1,0,0)" + ry="0" + y="69.627365" + x="61.583302" + height="0.90203464" + width="6.6930871" + id="rect420" + style="fill:#916f6f;stroke:none;stroke-width:0.280302" /> + <path + inkscape:connector-curvature="0" + id="path3217" + d="m 65.323,85.401586 -0.05279,4.262526 0.963356,0.290329 -0.0264,-4.381299 z" + style="fill:#000000;fill-opacity:0.277778;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g349"> + <path + inkscape:connector-curvature="0" + id="path285" + d="m 65.986373,85.481678 0.177179,-0.200801 1.830821,-0.03544 0.283483,0.183083 -0.667364,0.655551 -1.559153,-0.395693 z" + style="fill:#a02c2c;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path270" + d="m 65.968658,85.475772 -8.37e-4,4.518344 c 0,0 1.230058,0.942566 2.280261,-0.03411 l 0.02387,-4.561015 c -0.205945,0.171621 -0.860506,0.724962 -2.303292,0.07678 z" + style="fill:url(#linearGradient5722);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + style="display:inline;fill:#a02c2c;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 65.950938,84.341849 0.177179,-0.200801 1.830821,-0.03544 0.348448,0.236236 -0.732329,0.602398 -1.559153,-0.395693 z" + id="path285-8" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path272" + d="m 65.952642,85.33118 c 0.768937,0.308948 1.656578,0.485982 2.343081,-0.122312 l 0.0083,-0.868627 c -0.929298,0.475515 -1.848169,0.325606 -2.369559,-0.006 0.0083,0.314819 0.0029,0.682416 0.01818,0.996948 z" + style="fill:url(#linearGradient5724);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + d="m 67.0717,83.27965 c -0.588198,0.009 -1.079844,0.382118 -1.155439,0.876948 0.735373,0.323622 1.506806,0.409254 2.353221,0 -0.0767,-0.501446 -0.580164,-0.876771 -1.176335,-0.876948 -0.0071,-5.5e-5 -0.01429,-5.5e-5 -0.02144,0 z" + style="fill:url(#linearGradient5726);fill-opacity:1;stroke:none;stroke-width:0.272945" + id="path275" /> + </g> + <rect + transform="matrix(0.91538568,-0.40257801,0,1,0,0)" + y="116.7277" + x="74.599556" + height="0.88533032" + width="3.4854486" + id="rect438" + style="fill:#695050;fill-opacity:1;stroke:none;stroke-width:0.200046" /> + <use + height="100%" + width="100%" + transform="matrix(0.93755935,0,0,0.93712216,-4.3477467,3.5186089)" + id="use3177" + xlink:href="#g349" + y="0" + x="0" /> + </g> + <path + inkscape:connector-curvature="0" + id="path450" + d="m 72.737196,245.92806 0.87913,3.47469 1.967591,-0.62796 -0.376764,-2.763 z" + style="fill:#e3dbdb;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path452" + d="m 73.616326,249.36089 3.558417,2.38623 0.502357,-0.20933 -1.967581,-2.72115 z" + style="fill:#ac9393;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path456" + d="m 77.216608,251.03543 v 2.00945 l 1.925726,1.46523 0.125593,-3.09792 z" + style="fill:#916f6f;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path460" + d="m 82.282103,255.43112 2.302501,-1.29777 0.418639,-5.27483 -0.837265,-3.64215 -2.721141,0.20934 -1.423373,3.39093 z" + style="fill:#916f6f;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path454" + d="m 77.6771,245.42571 -0.209309,2.38621 0.586083,0.92101 -0.962858,2.3025 1.423361,1.04659 0.544231,2.763 1.381496,0.83728 0.209319,-6.99124 0.879141,-3.13977 z" + style="fill:#c8b7b7;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path458" + d="m 80.440104,255.84975 1.925727,-0.29305 -0.753539,-4.77245 -1.004734,-2.26064 z" + style="fill:#ac9393;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path440" + d="m 74.997833,241.15561 c 0,0 0.125592,3.09791 -1.967591,4.77245 l 2.176911,0.16746 c 0,0 1.800136,-1.3815 1.63268,-4.60501 z" + style="fill:#ac9393;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path442" + d="m 74.955969,241.15561 1.883864,-1.84201 2.72114,0.0837 -1.800135,1.92573 -1.004734,0.25118 z" + style="fill:#916f6f;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#999999;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 60.716638,210.18233 -0.02149,0.60201 4.192545,-2.23603 0.0645,-0.83851 z" + id="path357" + inkscape:connector-curvature="0" /> + <path + style="fill:#666666;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 64.844683,207.73131 14.985661,5.11705 0.107528,0.7955 -15.050155,-5.11705 z" + id="path359" + inkscape:connector-curvature="0" /> + <path + style="fill:#999999;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 79.830344,212.84836 -0.02148,0.77401 c 0,0 9.309594,3.09603 13.65264,3.84854 4.343046,0.7525 12.470136,1.41901 12.470136,1.41901 l 0.0215,-0.94601 c 0,0 -11.932632,-0.88151 -16.447677,-2.25752 -4.515046,-1.37601 -9.6751,-2.83803 -9.675099,-2.83803 z" + id="path361" + inkscape:connector-curvature="0" /> + <path + style="fill:#b3b3b3;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.93162,217.92241 c 0,0 8.25608,0 16.70568,-2.15003 8.44961,-2.15001 23.97277,-5.65455 23.97277,-5.65455 l 0.19349,0.989 c 0,0 -24.94026,7.18108 -32.63736,7.52509 -7.69708,0.34399 -8.27758,0.258 -8.27758,0.258 z" + id="path363" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2954" + d="m 145.78542,210.28279 -6.74687,-2.41432 5.98619,-1.62057 c 0.65989,1.28669 1.25664,2.59442 1.65365,3.96875 l 0.16536,0.95911 -0.85989,0.16537 z" + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path335" + d="m 135.00535,231.93919 -0.15203,-3.98317 4.05921,-1.18584 0.24323,3.95277 z" + style="fill:#000000;fill-opacity:0;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path344" + d="m 139.16023,230.75804 -0.8385,-0.41925 -3.34328,0.95677 0.043,0.63424 z" + style="fill:#9b969c;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path346" + d="m 138.32173,230.32805 -0.215,-3.3218 0.81701,-0.22575 0.215,4.00979 z" + style="fill:#8e818f;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path348" + d="m 138.11747,227.21051 0.87076,0.55901 -0.043,-0.99977 -0.84924,0.26876 z" + style="fill:#594c5a;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path350" + d="m 138.19273,227.25352 -3.3433,0.99975 v -0.30101 l 3.24654,-0.93526 z" + style="fill:#594c5a;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path352" + d="m 135.28107,231.87359 -0.13977,-4.04205 3.79318,-1.02954 0.22575,3.97754 0.33326,-0.1075 -0.301,-4.35381 -4.67631,1.37603 0.13976,4.37529 z" + style="fill:#d5c8d6;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path354" + d="m 134.88745,231.97116 -0.12901,-4.32155 4.43405,-1.33137 -0.44076,-0.0644 -4.21905,1.28836 0.12901,4.49354 z" + style="fill:#eee1ef;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6373" + d="m 64.570236,206.00267 16.532701,5.91874 c 0,0 14.439845,5.72466 28.444693,4.52085 11.60446,-1.74214 35.67662,-8.62877 35.67662,-8.62877" + style="opacity:0.514;fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.53, 0.53;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccc" + inkscape:connector-curvature="0" + d="m 129.11421,211.50262 c 2.05713,-0.77688 3.5173,-0.76613 5.53389,0.038 0.26202,0.16474 0.30226,0.42608 0.29266,0.60812 l 0.003,4.54816 c 0.0101,0.25716 0.0169,0.51307 -0.22531,0.6582 -1.73287,0.82556 -3.21842,1.07467 -5.63858,0.043 -0.2581,-0.20254 -0.27226,-0.47825 -0.24727,-0.76571 v -4.59387 c 0.005,-0.17057 0.0709,-0.40078 0.28126,-0.5359 z" + style="fill:#625563;fill-opacity:1;stroke:none;stroke-width:0.234436" + id="rect375" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path2353" + d="m 119.85368,211.85125 3.1805,-0.11693 4.41998,-0.91205 1.68379,-1.77735 -3.83531,-1.73057 z" + style="fill:#000000;fill-opacity:0.0909091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + ry="0.92988485" + rx="2.9670315" + cy="211.88623" + cx="131.89313" + id="path378" + style="fill:#ccc1ce;fill-opacity:1;stroke:none;stroke-width:0.234436" /> + <ellipse + ry="0.75016177" + rx="2.5912476" + cy="211.74597" + cx="131.87354" + id="path373" + style="fill:#bbaebc;fill-opacity:1;stroke:none;stroke-width:0.212565" /> + <g + id="g408-8" + transform="matrix(1.0356084,0.70561826,-0.76565555,1.1411928,45.986263,-27.726359)" + style="display:inline;stroke:none"> + <path + inkscape:connector-curvature="0" + id="path405-8" + d="m 101.11257,121.93025 -9.05653,5.8136 11.47673,-4.37721 z" + style="fill:url(#linearGradient3640);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 103.53277,123.34237 0.41007,2.32243 -11.8868,2.07905 z" + id="path410-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient3648);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 92.05604,127.74385 12.79395,-3.28255 3.11542,2.20455 z" + id="path412-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + </g> + <g + transform="matrix(0.81424353,0.34944031,-0.34944031,0.81424353,47.006968,59.765069)" + id="g475"> + <path + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 23.68264,113.46314 0.9706,-6.50302 -21.6443799,-5.92066 z" + id="path467" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#5ab8ba;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 3.0088601,101.03946 23.68264,113.46314 21.54732,108.99838 Z" + id="path465" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient3624);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 21.54732,108.99838 3.0088601,101.03946 14.75312,115.11316 Z" + id="path463" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient3632);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 24.65324,106.96012 4.853,-3.20298 -26.4973799,-2.71768 z" + id="path469" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g1350"> + <path + inkscape:connector-curvature="0" + id="path1340" + d="m 110.26016,73.62001 -1.18898,11.889851 4.3677,1.11619 3.20297,-2.960331 -2.86326,-11.06484 z" + style="fill:#c8b7b7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3531" + d="m 109.49229,78.037838 -2.92966,1.02934 -0.76541,1.39885 3.5631,0.554259 z" + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3533" + d="m 105.85001,80.439634 -0.87099,3.93261 4.3813,1.372456 0.8182,-4.671625 z" + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1326" + d="m 113.31108,86.613311 -4.87286,-0.686316 1.64716,-12.285091 2.74527,0.34316 z" + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1328" + d="m 110.15401,73.573274 1.54422,-1.166742 2.71096,-0.24021 -1.57854,2.024638 z" + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1330" + d="m 114.34055,72.26927 3.63749,10.77519 -4.46107,3.568851 -0.61768,-12.559615 z" + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1332" + d="m 114.54645,85.446573 -0.34316,-5.284648 1.09811,0.06863 1.44127,5.627806 z" + style="fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1334" + d="m 114.20329,80.058976 1.26969,-1.132425 0.92653,0.274529 -1.02948,1.132425 z" + style="fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1336" + d="m 116.26224,79.132448 3.50022,3.774749 -3.01979,2.985482 -1.37264,-5.662123 z" + style="fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1338" + d="m 111.56097,73.899275 1.1839,-0.03432 0.87505,-0.652003 -0.61769,0.875057 -0.0858,1.57853 -0.29168,-1.527058 z" + style="fill:#c8b7b7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3539" + d="m 109.07,80.888321 -1.84754,0.739013 -1.24049,3.008842 2.37541,0.950161 z" + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3525" + d="m 111.2274,81.386015 -2.09025,-0.149304 -1.23175,0.858495 4.10584,1.045124 z" + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3527" + d="m 107.98005,82.05788 -1.04512,4.068518 3.43397,0.783842 1.56769,-3.76991 z" + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3529" + d="m 111.97392,83.028352 -1.60502,3.881888 2.72479,-0.485236 z" + style="fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + id="g1358" + style="fill:#808080" + transform="matrix(0.88605929,0,0,0.88605929,24.323163,126.41405)"> + <path + inkscape:connector-curvature="0" + id="path1352" + d="m 105.93316,89.770375 3.12275,-2.402113 4.1179,0.514739 -3.26001,4.392433 -3.91201,-1.441267 z" + style="fill:#999999;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1354" + d="m 105.89884,89.839005 -0.68631,2.127586 -0.34316,2.745272 5.31896,1.406951 -0.27453,-4.08359 z" + style="fill:#666666;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#4d4d4d;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 113.0749,87.912095 -3.20298,4.149315 0.16986,4.003725 4.97432,-3.421364 z" + id="path1360" + inkscape:connector-curvature="0" /> + <path + style="fill:#a7a7a7;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.69834,91.673171 3.56696,1.043395 -1.55296,1.11619 -3.00886,-0.970601 z" + id="path1362" + inkscape:connector-curvature="0" /> + <path + style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 104.70348,92.740831 -0.67942,2.547823 3.63975,1.140458 0.12132,-2.620621 z" + id="path1364" + inkscape:connector-curvature="0" /> + <path + style="fill:#4f5257;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.14397,92.740831 0.70369,3.227244 -2.15959,0.533832 0.0728,-2.741946 z" + id="path1366" + inkscape:connector-curvature="0" /> + <path + style="fill:#cccccc;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 108.56161,91.272798 1.31031,0.485301 0.38824,-0.206253 -0.35184,0.727951 z" + id="path1368" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#8c8c8c;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.49234,94.986389 0.30884,-3.225693 1.47558,3.311483 z" + id="path1370" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.73255,91.81217 1.28684,-1.115267 2.0418,3.088431 -1.85306,1.321163 z" + id="path1372" + inkscape:connector-curvature="0" /> + <path + style="fill:#b3b3b3;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 109.05591,87.351104 1.87021,3.345799 2.1619,-2.813902 z" + id="path1374" + inkscape:connector-curvature="0" /> + </g> + <path + sodipodi:nodetypes="ccccccccccccccc" + inkscape:connector-curvature="0" + id="path2351" + d="m 110.71373,209.64328 -0.3072,0.43025 6.10294,0.79551 0.58465,-2.22168 2.78294,-0.5145 0.46773,-0.86528 1.70718,-1.5201 0.58465,-1.66041 -1.6838,-0.3274 -2.75955,2.26845 -0.39757,1.14592 -1.80396,-0.44147 0.0543,0.48803 -2.87758,2.72162 z" + style="fill:#000000;fill-opacity:0.131313;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g918" + style="display:inline" + transform="matrix(0.88605929,0,0,0.88605929,16.691831,52.48683)"> + <g + id="g898"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path862" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path854" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + style="fill:url(#linearGradient3741);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path856" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path858" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path860" + d="m 40.618736,122.5217 0.651538,11.35795 2.291482,-1.48828 -0.472472,-11.22117 z" + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path864" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <g + id="g942" + transform="translate(-0.52916663)"> + <path + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.665;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.196078" + d="m 33.687128,119.77301 4.340191,1.13393 0.188988,6.80697 -2.414953,2.82419 -2.066979,-3.01318 z" + id="rect939" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + </g> + <g + id="g930" + transform="matrix(1.3335438,0.16745236,-0.15215044,1.4676594,27.654576,-60.680626)"> + <path + inkscape:connector-curvature="0" + id="path902" + d="m 16.737751,123.67571 -0.63476,3.94223 3.20723,-2.53907 -0.26727,-2.40542 -1.1693,0.3675 z" + style="fill:#e9ddaf;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccscccscc" + inkscape:connector-curvature="0" + id="path900" + d="m 18.892932,119.23669 -2.155178,4.43902 c 0,0 1.102487,-0.26727 1.837478,0.23386 0.734991,0.50113 0.734991,1.1693 0.734991,1.1693 l 2.148217,-4.63884 c 0.06773,-0.12888 0.06087,-0.26318 -0.02677,-0.48521 0,0 -0.217157,-0.55542 -0.818513,-0.8561 -0.601356,-0.30068 -1.348876,-0.0626 -1.348876,-0.0626 -0.139702,0.0413 -0.252563,0.12023 -0.371354,0.2006 z" + style="fill:#ff7f2a;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="zcccz" + inkscape:connector-curvature="0" + id="path902-7" + transform="scale(0.26458333)" + d="M 64.778217,475.74209 C 63.542759,475.0883 62.3522,475.45076 61.957031,475.5332 l -1.095703,6.80274 5.667969,-4.48633 c -0.279076,-0.70016 -0.515622,-1.45374 -1.75108,-2.10752 z" + style="display:inline;fill:#241c1c;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path924" + d="m 19.111421,119.30394 -2.01981,4.15774 c 0.260428,-0.10314 0.533631,-0.0728 0.84973,-0.0201 l 1.961468,-4.23219 c -0.223936,0.004 -0.370939,-0.0442 -0.791388,0.0945 z" + style="fill:#ffcc00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 23.245535,124.64287 c 0.590394,-0.17256 1.258026,-0.84884 1.872362,-0.10779 0.614336,0.74105 -0.394222,2.18542 -0.856355,2.85937 -0.393865,0.575 -0.04955,1.61608 0.684341,1.24702 0.727154,-0.17509 1.351002,-1.05278 2.196284,-0.48506 0.630935,0.50829 0.362443,1.3971 0.335168,2.08883 -0.206015,2.57427 4.657239,2.50414 6.261991,1.78854 0.941661,-0.3948 1.841928,-0.94823 2.503961,-1.73452 l 0.04243,-0.0822" + id="path932" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czccccccc" /> + </g> + <g + style="display:inline" + id="g1450-5" + transform="matrix(1.1451658,0,0,1.2977641,23.192881,91.676301)"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1498-5" + d="m 30.855154,82.697299 -2.887701,0.947689 -0.188738,0.480422 2.65948,0.223054 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1500-9" + d="m 27.778715,84.12541 1.338321,2.264849 1.338318,0.223052 -0.03431,-2.350638 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1502-6" + d="m 27.967453,83.644988 2.007478,-1.715794 h 1.818743 l -0.829182,0.892212 z" + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path1466-2" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.06863,-1.046635 z" + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-7" + d="m 31.010669,86.165017 -1.108802,-0.279048 -0.890729,-1.710532 2.569761,-0.09721 z" + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1462-1" + d="m 31.59303,84.041828 -0.853846,2.011136 1.897241,-1.428775 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1464-6" + d="m 29.901867,85.885969 0.344455,0.887415 1.062083,0.04152 -0.576781,-0.771208 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-0" + d="m 32.600027,84.63632 0.01304,1.700295 -1.304662,0.478285 -0.588915,-0.746943 z" + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1468-3" + d="m 33.269258,85.446573 1.531433,-1.424658 -1.233448,-2.327727 -0.726935,1.453219 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1470-9" + d="m 30.180827,83.593514 0.907012,-1.234222 2.001943,0.28939 -0.246632,0.493044 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1472-6" + d="m 31.063679,82.355291 0.855178,-0.948785 1.648386,0.287682 -0.469564,0.955638 z" + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1525" + d="m 34.088901,82.605457 -0.701729,1.394555 0.760206,0.17103 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1527" + d="m 33.387172,83.9737 0.146193,1.197212 0.540917,0.06578 0.131574,-1.118276 z" + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1529" + d="m 34.088901,82.605457 0.994116,1.868178 -1.008735,0.763057 z" + style="fill:#445016;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(1.0399189,0,0,1.1555747,18.928774,102.87068)" + id="g1450"> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.48967,82.684143 -2.522217,0.960845 -0.188738,0.480422 2.65948,0.223054 z" + id="path1498" + inkscape:connector-curvature="0" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.795873,84.056777 1.321163,2.333482 1.338318,0.223052 -0.03431,-2.350638 z" + id="path1500" + inkscape:connector-curvature="0" /> + <path + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 28.053241,83.576355 1.92169,-1.647161 h 1.818743 l -1.355479,0.892212 z" + id="path1502" + inkscape:connector-curvature="0" /> + <path + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.08579,-1.132425 z" + id="path1466" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1447" + d="m 34.899264,88.775213 -1.132425,-2.264849 -1.647164,-0.102946 0.06863,-0.549056 1.578533,0.274527 0.446106,-1.029476 0.03432,-0.995161 0.480423,0.205896 -0.102949,1.029475 -0.24021,0.892215 1.891895,1.974382 -0.690841,0.66794 z" + style="fill:#c87137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="fill:#deaa87;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.548226,88.870564 -1.650021,-2.511428 -1.734947,-0.169854 -0.254784,0.157721 1.856275,0.157723 1.006996,2.377969 z" + id="path1452" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:#deaa87;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.752615,86.104353 0.303313,-0.0364 0.412504,-0.958466 0.01214,-1.188984 h -0.254783 v 1.213249 z" + id="path1454" + inkscape:connector-curvature="0" /> + <path + style="fill:#784421;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.790876,88.712841 -0.885673,-1.929067 1.334575,1.431634 z" + id="path1456" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.010669,86.165017 -1.722815,-0.279048 0.922072,-1.868406 1.370973,0.06066 z" + id="path1460" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.59303,84.041828 -0.897805,2.074659 1.9412,-1.492298 z" + id="path1462" + inkscape:connector-curvature="0" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.275722,85.825305 0.9706,1.237515 1.298178,-0.0364 -0.812876,-0.982733 z" + id="path1464" + inkscape:connector-curvature="0" /> + <path + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.600027,84.63632 -0.206251,1.989731 -0.909939,0.412504 -0.764347,-0.970598 z" + id="path1458" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.2521,85.463731 1.870217,-1.612846 -1.321164,-2.590851 -0.960845,1.887373 z" + id="path1468" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.180827,83.593514 0.102947,-1.286847 2.796746,0.326001 -0.274526,0.549055 z" + id="path1470" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.318091,82.28951 1.630005,-1.304003 1.938848,0.308843 -0.789265,1.355476 z" + id="path1472" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-6" + d="m 34.822901,84.321288 -1.337203,-0.279048 0.715687,-1.868406 0.892534,-0.162393 z" + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-3" + d="m 35.034703,81.992204 -0.456642,2.280554 1.506708,-1.492298 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + inkscape:connector-curvature="0" + id="path1464-9" + d="m 33.476281,83.981576 0.753354,1.237515 1.007611,-0.0364 -0.630933,-0.982733 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-2" + d="m 36.056518,82.792591 -0.160087,1.989731 -0.70627,0.412504 -0.593266,-0.970598 z" + style="display:inline;fill:#445500;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,22.142668,128.30696)" + id="g1559"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-6-5" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-3-3" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1464-9-4" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-2-1" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(1.1868684,0,0,1.217799,4.373876,100.13875)" + id="g1567"> + <path + style="display:inline;fill:#829645;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.019794,78.565374 -1.166741,-0.240212 0.720635,-5.010118 z" + id="path1561-9-4" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#677536;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.019794,78.565372 1.37328,-0.737405 -1.819386,-4.512923 z" + id="path1563-1-1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1569" + d="m 71.274108,79.406974 -0.960845,0.514739 0.686319,-8.064235 1.336749,6.559629 z" + style="fill:#5c6b21;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1571" + d="m 70.999582,71.857478 -1.612847,4.735594 1.210741,-0.01085 z" + style="fill:#b2c859;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1573" + d="m 69.386735,76.593072 -0.549057,2.951166 1.475585,0.377471 0.28421,-3.339492 z" + style="fill:#7f9435;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.440849,79.647186 -1.166741,-0.240212 0.720635,-5.010118 z" + id="path1561" + inkscape:connector-curvature="0" /> + <path + style="fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.440849,79.647184 1.37328,-0.737405 -1.819386,-4.512923 z" + id="path1563" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1561-9" + d="m 68.107463,80.446148 -1.166741,-0.240212 0.720635,-5.010118 z" + style="display:inline;fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1563-1" + d="m 68.107463,80.446146 1.37328,-0.737405 -1.819386,-4.512923 z" + style="display:inline;fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + style="fill:#ffd5d5;fill-opacity:0.391129;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 132.42447,257.39249 -15.41324,5.26152 -3.11382,0.3779 -11.01852,-3.1021 c -0.6682,-0.77069 -1.96963,-1.6459 -2.48582,-2.56857 l 11.88811,3.77865 3.01024,-0.37769 17.09873,-5.84615 z" + id="path1807" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + inkscape:connector-curvature="0" + id="path3745" + d="m 109.47916,224.82399 c 0,0 -0.258,-1.03202 0.215,-1.97803 0.47301,-0.94601 3.05304,-1.46202 3.95605,-0.387 0.903,1.07501 0.94601,2.32202 0.94601,2.32202 z" + style="fill:#6c5353;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3747" + d="m 112.70262,221.98126 c 0,0 -1.32266,0.71453 -1.68753,1.27705 -0.36487,0.5625 -0.24326,1.27704 -0.24326,1.27704 l 3.87675,0.25844 c 0,0 -0.0912,-2.49327 -1.94596,-2.81253 z" + style="fill:#483737;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3743" + d="m 110.33917,223.79197 c 0,0 -1.24701,0.43001 -1.54802,2.15002 -0.301,1.72003 -0.301,12.34114 -0.301,12.34114 l 3.56904,-0.68802 c 0,0 -0.30099,-10.8361 0.64501,-11.91112 0.94601,-1.07501 1.84901,-1.67702 1.84901,-1.67702 z" + style="fill:#c6e3ff;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csccsc" + inkscape:connector-curvature="0" + id="path3753" + d="m 101.61965,175.4146 c 0,0 -0.82096,-1.61152 3.5727,-3.51189 0.48839,-0.21123 1.33911,-0.57476 1.33911,-0.57476 l 1.30882,-2.24634 c 0,0 -6.78921,2.7616 -7.20882,3.70288 -0.56251,1.26184 0.98819,2.63011 0.98819,2.63011 z" + style="fill:#897d8a;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3517" + d="m 102.53741,179.88247 -6.267465,14.68647 -5.893295,-4.86431 6.735193,-8.04481 z" + style="fill:#bad8ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path6498" + d="m 92.983067,186.52412 -0.841899,0.93545 5.472343,3.55468 c 0,0 4.069179,2.33861 6.454559,2.43216 2.38538,0.0935 7.10937,-0.5145 7.10937,-0.5145 l 7.71741,0.79513 2.94442,0.1402 0.18931,-0.84179 2.71179,3.0312 1.84399,-3.13863 7.69853,-1.24896 7.24969,-4.25627 2.24506,-1.68379 c 0,0 4.34981,-1.91766 5.47235,-2.66602 1.12253,-0.74835 1.44993,-1.1693 1.44993,-1.1693 l -1.02899,-1.49671 1.3564,-3.04019 -1.3564,-2.05798 -11.78658,10.24311 -15.20096,4.72399 -12.11399,0.8419 -9.0738,-1.77735 z" + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6780" + d="m 131.94428,186.71121 1.87089,-1.44994 4.67722,-3.13373 3.695,-2.75956 2.38538,-2.33861 1.63702,-4.20949 -0.0468,-2.85311 1.91766,1.44994 -0.18709,4.44336 -6.78196,7.10937 -5.84652,3.50791 z" + style="fill:#000000;fill-opacity:0.121212;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccssccssscc" + inkscape:connector-curvature="0" + id="path3777" + d="m 92.837975,183.84454 0.04297,2.96704 c 0,0 5.375054,4.64404 16.168155,5.07405 10.79314,0.43 26.67341,-0.49108 35.36601,-8.53295 7.78987,-7.20672 5.87145,-9.01124 5.87145,-9.01124 l -1.29001,-3.44004 c 1.29804,3.41116 -4.75679,10.67298 -13.83056,14.99261 -8.55475,4.07255 -19.90764,5.33398 -26.63288,4.57261 -5.2262,-0.59165 -14.835157,-4.08505 -14.792157,-5.59005 0.04297,-1.50503 -0.903021,-1.03203 -0.903021,-1.03203 z" + style="fill:url(#linearGradient6416);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3771" + d="m 132.29924,172.3436 0.76015,4.53048 c 0,0 0.69932,-4.22643 0.6081,-5.35145 -0.0912,-1.12501 -1.36825,0.82097 -1.36825,0.82097 z" + style="fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3755" + d="m 100.96507,176.36248 c 0,0 0.25799,3.71953 2.10701,6.75106 l 1.80603,0.301 c 0,0 -2.34353,-3.80553 -2.34353,-6.57907 z" + style="fill:#b3b3b3;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6782" + d="m 101.05127,177.02937 1.75395,1.49671 2.362,0.70159 0.14031,-2.08137 -4.41997,-1.14591 z" + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + id="path3775" + d="m 95.173602,183.74581 c 0,0 -1.337867,1.03381 0.304058,2.25004 2.406362,1.78248 15.08133,6.99336 31.50054,2.25003 16.41918,-4.74331 19.88547,-12.95292 20.06791,-16.78406 l -1.33785,-1.70274 c 0,0 6.20279,-0.36485 3.04058,6.26363 -3.16222,6.6285 -16.80093,17.03853 -39.22364,14.95971 -8.64784,-0.80174 -17.00847,-3.31787 -16.712848,-7.03846 0.09257,-1.1644 3.151803,-0.9279 3.151803,-0.9279 z" + style="fill:url(#linearGradient6408);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3767" + d="m 108.40415,177.35148 c 0,0 -0.2795,3.18204 0.645,6.14906 l 1.87053,0.1935 c 0,0 -0.81702,-2.83803 -0.81702,-6.17055 z" + style="fill:#bdbdbd;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6784" + d="m 108.41788,177.75434 -0.0701,0.86529 1.80072,0.44433 0.81852,0.5145 -0.0234,-2.08137 z" + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6786" + d="m 132.29507,172.16507 0.14032,1.14592 1.23946,-0.98222 2.38538,-1.14592 -0.0935,-1.77734 z" + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsssccsc" + inkscape:connector-curvature="0" + id="path3751" + d="m 99.118087,174.05736 0.262596,1.41211 c 0,0 0.722387,0.63159 1.645697,0.9632 2.52633,0.90736 11.52843,3.33218 23.07295,-0.8012 12.22019,-4.3753 14.27189,-7.29889 16.43725,-10.5036 0.17989,-0.26624 0.39365,-1.17934 0.25027,-1.8804 l -0.52087,-1.84689 c 0,0 -4.68554,12.42487 -21.45571,14.14488 -16.7702,1.72001 -19.692183,-1.4881 -19.692183,-1.4881 z" + style="fill:url(#linearGradient6400);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsc" + inkscape:connector-curvature="0" + id="path3775-7" + d="m 145.70826,169.75908 c 0,0 6.20279,-0.36485 3.04058,6.26363 -3.16222,6.6285 -16.80093,17.03853 -39.22364,14.95971 -8.64784,-0.80174 -17.008471,-3.31787 -16.712849,-7.03846" + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient6494);stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6778" + d="m 136.49193,161.20259 c 0,0 0.46302,2.71198 -0.33073,4.10104 -0.79375,1.38906 -2.14974,1.65364 -2.14974,1.65364 l -1.95131,2.31511 -5.25859,3.86953 8.20208,-4.06797 3.3073,-4.66328 0.26458,-2.3151 z" + style="fill:#000000;fill-opacity:0.111111;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6796" + d="m 132.17814,172.30538 0.93545,4.25627 2.43215,-0.88867" + style="fill:none;stroke:#4a8f90;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cssccssscc" + inkscape:connector-curvature="0" + id="path3749" + d="m 136.64728,161.18462 c 0,0 5.42011,3.14232 -7.35824,10.45964 -11.82996,6.77423 -34.204791,4.27762 -26.33153,0.4865 1.76387,-0.84934 3.23041,-1.52898 4.45547,-2.05073 l 0.73316,-1.37164 c 0,0 -10.879108,3.44004 -8.772092,5.89106 2.107032,2.45103 11.051122,3.31104 18.963212,1.591 7.91207,-1.72001 17.4258,-4.57357 21.37123,-12.34111 2.75202,-5.41806 -6.06307,-4.38606 -6.06307,-4.38606 z" + style="fill:url(#linearGradient6392);fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + ry="1.5200955" + rx="4.0925646" + cy="206.70631" + cx="99.36747" + id="path8765" + style="opacity:0.514;fill:#090909;fill-opacity:0.535354;stroke:none;stroke-width:0.265;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <path + style="fill:#000000;fill-opacity:0.141414;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 95.6905,208.19217 3.101402,1.30745 3.010188,0.85136 2.13928,3.40847 4.71078,0.83428 c 1.46494,0.21806 7.45975,-1.28956 7.45975,-1.28956 l -1.63812,-1.03413 -5.40473,-1.88166 -1.75957,-1.30264 -0.003,-2.65712 -4.86494,-0.91217 -3.253434,-0.85137 z" + id="path1508" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g1206"> + <path + inkscape:connector-curvature="0" + id="path1090" + d="m 81.142162,68.305975 0.436769,-0.424637 5.483889,-0.07279 0.594494,0.509566 -2.899669,1.31031 z" + style="fill:#826982;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + d="m 81.142166,68.281708 c 2.540406,1.044345 4.64062,0.8608 6.50302,0 v 5.96919 c -2.625547,1.297309 -4.648064,0.886034 -6.50302,0 z" + style="fill:url(#linearGradient2184);fill-opacity:1;stroke:none;stroke-width:0.264583" + id="rect1085" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1088" + d="m 84.169563,62.783857 -2.978871,5.303734 c 2.50187,0.852299 4.639333,0.949758 6.236104,-0.07279 L 85.094321,62.859179 C 84.977509,62.5016 84.462409,62.271931 84.169563,62.783857 Z" + style="fill:url(#linearGradient2192);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + d="M 82.632668,75.803802 H 86.3731 v 13.280251 c -1.106349,0.642111 -2.314778,0.817569 -3.740432,0 z" + style="fill:url(#linearGradient1503);fill-opacity:1;stroke:none;stroke-width:0.264583" + id="rect1098" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1096" + d="m 81.105763,74.238767 1.370973,1.710685 c 1.587142,0.760166 2.890664,0.514775 4.12505,0.02426 l 1.06766,-1.747081 c -2.366572,1.076333 -4.484523,0.660628 -6.563683,0.01214 z" + style="fill:#b099b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 79.668062,91.060481 0.234501,0.65241 c 0,0 0.306268,0.416901 1.175812,0.4122 0.716547,-0.0039 1.103933,-0.407479 1.103933,-0.407479 l 0.154907,-0.699595 z" + id="path1506" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + d="m 79.661995,81.894379 c 0.889717,0.511415 1.779433,0.649815 2.66915,0 v 9.172169 c -0.654139,0.748034 -1.976698,0.734687 -2.66915,0 z" + style="fill:#b099b1;fill-opacity:1;stroke:none;stroke-width:0.264583" + id="rect1101" /> + <path + style="display:inline;fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.134043px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 80.937542,78.770648 -1.263412,3.209625 c 1.061104,0.515779 1.967655,0.574759 2.644884,-0.04405 L 81.329755,78.81623 c -0.04955,-0.216394 -0.26801,-0.355381 -0.392213,-0.04558 z" + id="path1088-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1119" + d="m 80.505083,88.123212 -2.453585,1.698638 0.03431,1.149579 2.487903,-0.343159 z" + style="fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 86.659047,88.955072 0.234501,0.65241 c 0,0 0.306268,0.416901 1.175812,0.4122 0.716547,-0.0039 1.103933,-0.407479 1.103933,-0.407479 L 89.3282,88.912608 Z" + id="path1506-3-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccc" /> + <path + id="rect1101-8" + style="display:inline;fill:#9f83a1;fill-opacity:1;stroke:none;stroke-width:0.264583" + d="m 89.338857,79.923916 c -0.889717,0.511415 -1.779433,0.649815 -2.66915,0 v 9.172169 c 1.248632,0.942154 1.916035,0.358579 2.66915,0 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1088-0-4" + d="m 88.06331,76.800185 1.263412,3.209625 c -1.061104,0.515779 -1.967655,0.574759 -2.644884,-0.04405 l 0.989259,-3.119993 c 0.04955,-0.216394 0.26801,-0.355381 0.392213,-0.04558 z" + style="display:inline;fill:#ddd2de;fill-opacity:1;stroke:none;stroke-width:0.134043px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 88.495769,86.152749 2.453585,1.698638 -0.03431,1.149579 -2.487903,-0.343159 z" + id="path1119-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path8674" + d="m 82.579808,81.274037 c 0,0 2.818102,-0.522562 3.751248,-2.538158 l -0.03732,10.525891 c 0,0 -1.418382,1.269079 -3.657933,-0.149303 z" + style="fill:url(#linearGradient8773);fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 83.887744,91.673588 0.234501,0.65241 c 0,0 0.306268,0.416901 1.175812,0.4122 0.716547,-0.0039 1.103933,-0.407479 1.103933,-0.407479 l 0.154907,-0.699595 z" + id="path1506-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + d="m 86.62403,81.866127 c -0.941439,0.541145 -1.86968,0.859148 -2.811119,0.171557 v 9.705377 c 1.321218,0.996924 2.02742,0.379424 2.824316,0 z" + style="display:inline;fill:#b099b1;fill-opacity:1;stroke:none;stroke-width:0.279964" + id="rect1101-8-1" /> + <path + style="display:inline;fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.141835px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 85.287528,78.732361 1.284071,3.145474 c -0.304595,0.651336 -2.029254,0.858908 -2.745852,0.204127 l 1.046768,-3.301368 c 0.05243,-0.228974 0.28359,-0.376041 0.415013,-0.04823 z" + id="path1088-0-4-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1119-6-0" + d="m 85.718052,88.628619 1.628134,1.797385 -0.02276,1.216408 -1.650906,-0.363108 z" + style="display:inline;fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.221706px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2174" + d="m 84.671301,63.77615 -1.017579,4.509465 c 0,0 -1.118274,-0.06903 -2.042334,-0.452505 l 2.687567,-4.848657 z" + style="fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2176" + d="m 81.154293,68.293844 c 0,0 2.147451,1.152586 4.525423,0.691553 0,0 1.176853,-0.242651 1.904803,-0.679421" + style="fill:none;stroke:#eee9ee;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2199" + d="m 81.384811,68.815542 c 0,0 0.9706,0.436769 1.844141,0.485299 l 0.07279,5.24124 c 0,0 -0.92207,0 -1.916935,-0.38824 z" + style="fill:#eee9ee;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + ry="0.44890252" + rx="0.40037248" + cy="70.744606" + cx="86.007286" + id="path2205" + style="fill:#997f9a;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-opacity:1" /> + <ellipse + style="display:inline;fill:#997f9a;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-opacity:1" + id="path2205-9" + cx="86.043694" + cy="72.528091" + rx="0.40037251" + ry="0.44890252" /> + <path + inkscape:connector-curvature="0" + id="path8621" + d="m 84.219371,62.703295 -3.008845,5.331457 0.07918,0.184754 -0.184754,0.263936 0.05279,5.832931 1.425241,1.741962 0.05279,0.31672 0.0264,12.642421" + style="fill:none;stroke:#967798;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.409091" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path8623" + d="m 81.072639,78.732678 -1.325067,3.266011 -0.09784,6.555765 -1.612742,1.16163 0.07145,1.146168" + style="fill:none;stroke:#967798;stroke-width:0.299077;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.565657" /> + <path + inkscape:connector-curvature="0" + id="path8625" + d="m 86.796098,82.261645 0.04039,6.740372" + style="display:inline;fill:none;stroke:#826982;stroke-width:0.295766px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path8642" + d="m 79.789231,83.582968 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + style="fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path8642-5" + d="m 83.999443,83.709398 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path8642-5-4" + d="m 86.798883,81.61915 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path8642-57" + d="m 79.761147,81.966823 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path8642-5-48" + d="m 83.984084,82.01961 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path8642-5-4-4" + d="m 86.781781,80.000518 c 0,0 0.486369,0.498238 1.270211,0.44225 0.783843,-0.05599 1.153512,-0.45771 1.153512,-0.45771" + style="display:inline;fill:none;stroke:#c5b7c7;stroke-width:0.298607px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path268" + d="m 65.704099,212.60458 0.117515,-5.48408 c 0.02753,-0.41972 0.246349,-0.53261 0.246349,-0.53261 l 7.074958,-4.62595 c 0,0 0.536132,-0.0868 0.518743,0.20838 l -0.0034,5.41063 c -0.256536,0.22234 -0.468623,0.13358 -0.669821,-0.0314 l -0.02092,-2.97233 -6.216751,4.00845 v 4.0189 c -0.366011,0.37723 -0.708136,0.22887 -1.046595,0 z" + style="fill:#207eff;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.68036)" + id="g3880"> + <rect + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.267467" + id="rect3814" + width="3.7691286" + height="5.0956497" + x="71.811821" + y="105.26922" + ry="1.01913" + transform="matrix(0.97854978,0.20601049,0,1,0,0)" /> + <path + inkscape:connector-curvature="0" + id="rect3814-8" + style="display:inline;fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.999998" + d="m 279.5332,471.88477 v -11.31641 c 0,-0.53348 -0.10469,-1.06327 -0.29492,-1.56445 -0.19023,-0.50119 -0.466,-0.97276 -0.80664,-1.39258 -0.34064,-0.41982 -0.74602,-0.78678 -1.19726,-1.07617 -0.45125,-0.2894 -0.94867,-0.50143 -1.47071,-0.61133 l -6.40234,-1.34766 c -0.2638,-0.0555 -0.49396,-0.004 -0.74219,-0.004 v 11.3164 c 0,2.13392 1.68139,4.20492 3.76953,4.64453 l 6.40235,1.34766 c 0.26379,0.0555 0.49395,0.004 0.74218,0.004 z" + transform="scale(0.26458333)" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,24.510252,126.82595)" + id="g3884"> + <rect + transform="matrix(0.97854978,0.20601049,0,1,0,0)" + ry="1.01913" + y="105.32799" + x="78.829292" + height="5.0956502" + width="3.7691286" + id="rect3814-3" + style="display:inline;fill:#8da09e;fill-opacity:1;stroke:none;stroke-width:0.267467" /> + <path + d="m 80.826768,126.35728 v -2.99413 c 0,-0.14115 -0.0277,-0.28132 -0.07803,-0.41393 -0.05033,-0.1326 -0.123296,-0.25737 -0.213423,-0.36845 -0.09013,-0.11108 -0.197385,-0.20817 -0.316775,-0.28474 -0.119393,-0.0766 -0.251003,-0.13267 -0.389126,-0.16174 l -1.693952,-0.35657 c -0.0698,-0.0147 -0.130694,-0.001 -0.196371,-0.001 v 2.99413 c 0,0.5646 0.444868,1.11255 0.997355,1.22887 l 1.693955,0.35656 c 0.06979,0.0147 0.130691,0.001 0.196367,0.001 z" + style="display:inline;fill:#6c5353;fill-opacity:1;stroke:none;stroke-width:0.264583" + id="rect3814-8-2" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0.65461067,0,0,0.65461067,76.807907,101.05517)" + id="g2226"> + <path + style="display:inline;fill:url(#linearGradient9358);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 150.99058,276.81915 c 0.74719,0.64767 2.61086,0.0732 3.79454,-0.49019 l 2.07189,-1.9817 c 1.06516,-1.30959 3.23937,-2.73021 3.03184,-4.21348 l -18.54536,-9.12436 -4.53171,1.72746 c -1.00604,0.56044 -0.32641,1.54798 0.13153,2.07418 z" + id="path2371-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#564b47;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 156.7079,275.46474 -2.02341,-0.63232 1.34894,-2.36066 4.59486,-1.81265 0.37938,3.62529 z" + id="path2140" + inkscape:connector-curvature="0" /> + <path + style="fill:#564b47;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 152.78753,272.85115 2.86651,0.63231 -1.51756,2.40282 -2.48713,-0.59016 z" + id="path2136" + inkscape:connector-curvature="0" /> + <path + style="fill:#9f8c8c;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 152.66106,272.85115 8.81032,-4.04684 2.82435,0.63232 -8.64169,4.55269 z" + id="path2138" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient9305);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 157.97255,275.88628 c 0,0 0.0844,-3.1616 1.39109,-4.55269 1.3068,-1.39111 4.97424,-4.089 6.36535,-4.34193 1.39111,-0.25293 3.96253,0.67447 3.96253,0.67447 0,0 1.98127,3.07729 2.10773,4.63701 0.12646,1.55972 -6.61827,5.64872 -6.61827,5.64872 l -3.83607,0.63231 z" + id="path2124" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path9324" + d="m 158.14804,274.52583 0.25007,-1.21466 c 0,0 2.64366,0.10718 3.60825,1.46474 0.96457,1.35755 0.96457,1.60763 0.96457,1.60763 l 4.07268,-2.78656 1.0003,0.53588 3.60824,-2.57222 0.60733,1.57191 -6.75206,5.89466 -5.89465,-1.28611 z" + style="fill:#000000;fill-opacity:0.207071;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csccsccsscc" + inkscape:connector-curvature="0" + id="path2274" + d="m 143.21844,281.87223 c -0.0712,-0.0238 2.12231,-3.38155 5.4801,-5.31148 1.16552,-0.6699 6.32318,-3.20375 6.32318,-3.20375 l 5.0164,1.13818 c 0,0 1.13818,0.12646 2.23419,2.27634 1.09602,2.14989 1.55973,8.97893 1.55973,8.97893 l -0.54802,4.21546 c 0,0 -3.41161,2.13583 -5.14286,3.1616 -2.1066,1.24816 -1.99893,1.1546 -4.52821,1.7026 -2.52927,0.54801 -5.04087,-0.0164 -5.04087,-0.0164 z" + style="fill:url(#linearGradient9202);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccsc" + inkscape:connector-curvature="0" + id="path9214" + d="m 162.33653,276.84756 -6.6943,4.5976 c 0,0 2.34932,4.85021 2.14723,7.42689 -0.2021,2.57667 -2.80403,5.75962 -2.80403,5.75962 0,0 4.39515,-1.96833 6.41642,-3.30925 2.1324,-1.41465 2.10321,-14.47486 0.93468,-14.47486 z" + style="fill:#2b0000;fill-opacity:0.247475;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + transform="rotate(-17.063171)" + ry="8.0820074" + rx="7.3274937" + cy="318.1394" + cx="58.330738" + id="path2194" + style="fill:url(#linearGradient9210);fill-opacity:1;stroke-width:1.02413" /> + <ellipse + transform="rotate(-17.063171)" + ry="5.3396387" + rx="4.7447329" + cy="318.79239" + cx="57.024841" + id="path2192" + style="fill:#aa0000;stroke-width:0.997595" /> + <path + d="m 148.40393,283.36836 a 5.076062,4.5105219 72.93683 0 0 -1.14732,0.1773 5.076062,4.5105219 72.93683 0 0 -2.82254,6.1761 5.076062,4.5105219 72.93683 0 0 3.60673,3.58339 5.3396389,4.7447325 72.93683 0 0 1.58273,-0.17327 5.3396389,4.7447325 72.93683 0 0 2.96888,-6.49705 5.3396389,4.7447325 72.93683 0 0 -1.10199,-2.04463 5.3396389,4.7447325 72.93683 0 0 -4.6e-4,-8.7e-4 5.076062,4.5105219 72.93683 0 0 -3.08603,-1.22094 z" + style="display:inline;fill:#550000;stroke-width:0.948352" + id="path2192-4" + inkscape:connector-curvature="0" /> + <ellipse + transform="rotate(-14.594068)" + ry="5.9925833" + rx="5.325129" + cy="315.95923" + cx="70.709183" + id="path2229" + style="fill:none;stroke:#ffffff;stroke-width:0.173099;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.484849" /> + <path + sodipodi:nodetypes="csssccc" + inkscape:connector-curvature="0" + d="m 150.37348,291.15006 c 0,0 -3.41065,1.92004 -3.7829,2.04928 -2.03431,0.70629 -3.73769,0.55705 -4.60352,-0.93251 -0.86582,-1.48956 -0.0595,-3.33809 1.61714,-4.96842 0.23818,-0.23162 2.67607,-1.75107 2.67607,-1.75107 l 3.60455,1.60576 z" + style="fill:#ac6158;fill-opacity:1;stroke:none;stroke-width:0.182621;stroke-miterlimit:4;stroke-dasharray:none" + id="path2234" /> + <path + inkscape:connector-curvature="0" + id="path1196-2-3" + d="m 141.6071,291.24763 c 0.15278,1.46439 1.63214,2.51781 5.43,1.94396 0.41268,-0.17536 0.5318,-0.37894 0.6428,-0.55999 0.34158,-0.55713 0.5389,-1.07483 0.6252,-1.55407 -0.73868,0.32486 -1.95556,0.80303 -2.89777,0.88582 -1.05449,0.0926 -2.73485,-0.37267 -3.80022,-0.71571 z" + style="display:inline;opacity:1;fill:#92524b;fill-opacity:1;stroke:none;stroke-width:0.265807px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2238" + d="m 144.69835,286.46263 c 0,0 2.83174,0.3577 3.30866,2.51877 0.59616,2.325 -0.52164,3.75577 -0.52164,3.75577 l 0.015,0.46202 c 0,0 3.23415,-2.36972 2.19087,-5.24617 -1.04328,-2.87646 -5.06732,-1.86298 -5.06732,-1.86298 z" + style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2063-9" + d="m 144.26267,286.73975 c -0.15662,0.053 -0.24755,0.13197 -0.21813,0.16681 -1.91868,1.41565 -3.24181,4.10054 -1.9104,5.51624 0.65714,-1.10802 1.94709,-3.11812 3.05259,-3.80948 1.10979,-0.69404 1.25928,-0.78415 1.51372,-0.94107 -0.63662,-0.46717 -1.32741,-0.78064 -1.82276,-0.93644 -0.23506,-0.0739 -0.45826,-0.0487 -0.61503,0.004 z" + style="display:inline;fill:#d2aaa6;fill-opacity:0.474747;stroke:none;stroke-width:0.299987px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + d="m 148.56463,283.37464 -2.16448,1.39152 -1.81684,1.39928 c 0,0 3.09454,0.0969 3.82712,2.73861 0.82201,2.70134 -0.95387,4.31325 -0.95387,4.31325 l 5.12283,-3.10546 c 0.34884,-1.06095 0.3816,-2.27637 0.013,-3.47701 -0.23116,-0.75298 -0.60748,-1.45122 -1.102,-2.04463 l -4.6e-4,-8.7e-4 c -0.84175,-0.75882 -1.87573,-1.18382 -2.92533,-1.21465 z" + style="fill:url(#linearGradient9332);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path2232" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path2276" + d="m 169.10136,275.12749 -2.44497,-0.80093 -9.1897,6.61827 -0.4637,1.68618 c 0,0 2.23419,4.34192 0.88525,8.38877 l -0.84309,1.60187 0.46369,1.3068 6.19673,-3.83607 7.08197,-12.26698 z" + style="fill:url(#linearGradient9289);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path4322" + d="m 176.30614,274.09405 c 0,0 -0.85889,0.78311 -0.83363,1.49043 0.0253,0.70733 0.93468,2.47563 0.93468,2.47563 l -5.50701,3.99132 -2.65246,-0.42944 0.9852,-4.24394 5.96172,-3.38504 z" + style="fill:#564b47;fill-opacity:1;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2288" + d="m 163.83204,281.47177 -1.74941,5.9438 c 1.31796,0.28751 2.71929,0.38744 4.13114,0.46369 l 1.60187,-6.34426 z" + style="fill:url(#linearGradient9297);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2290" + d="m 164.47757,281.37066 -1.37936,4.88209 c -0.0104,0.19316 0.005,0.44326 0.28865,0.48478 l 2.00519,0.28615 c 0.26044,0.0473 0.46728,-0.0905 0.59375,-0.49692 l 1.21502,-4.75849 z" + style="fill:#483737;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2278" + d="m 163.43661,281.50988 1.18126,-4.19698 2.3548,0.7452 -0.67141,3.87096 z" + style="fill:#916f6f;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2280" + d="m 164.55825,277.40232 7.75002,-5.63366 2.86155,0.83461 -8.13753,5.54425 z" + style="fill:#9f8c8c;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2282" + d="m 167.00249,277.99848 -0.75277,3.99473 3.5249,-2.23607 0.32788,-2.05674 6.34906,-3.60674 -1.51364,-1.58892 z" + style="fill:#6c5e59;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2284" + d="m 166.29809,281.95654 c 0,0 0.9274,0.16862 0.96955,1.49649 l 3.41452,-2.55036 c 0,0 -0.10541,-0.88524 -1.07494,-1.2857 z" + style="fill:#917b7b;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccc" + inkscape:connector-curvature="0" + id="path2292" + d="m 162.25124,286.85701 c 0,0 0.0527,0.34779 0.25293,0.52693 0.20023,0.17916 3.11944,0.44263 3.11944,0.44263 0.27795,-0.0843 0.58525,-0.0904 0.72716,-0.53747 l 0.99063,-4.11007 1.08548,0.15808 -0.41101,4.94262 -2.98243,1.54918 -2.47658,-0.91686 c 0,0 -0.71663,-0.85363 -0.30562,-2.05504 z" + style="fill:#9f8c8c;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path2286" + d="m 167.3941,283.09472 -0.44263,5.18501 c 0,0 -0.33723,0.61125 -1.62295,0.80094 -1.28571,0.1897 -2.81472,-0.22184 -2.81472,-0.22184 l -0.2204,1.08601 c 0,0 1.81264,0.94847 3.92037,0.0211 2.10773,-0.9274 9.16863,-5.43793 9.16863,-5.43793 l -0.40047,-6.21782 z" + style="fill:#6c5e59;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path4324" + d="m 168.67312,285.0581 -0.26793,3.78687 4.4835,-2.66152 c 0,0 -2.39359,0 -2.7687,-0.21436 -0.37511,-0.21434 -1.44687,-0.91099 -1.44687,-0.91099 z" + style="display:inline;fill:#564b47;fill-opacity:1;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2375" + d="m 174.49714,278.47879 c -2.7686,2.14749 -6.48808,3.86418 -5.79625,7.27166 0.25293,1.22248 5.50117,0.21077 5.50117,0.21077 l 5.77518,-4.55269 -2.95082,-3.62529 -1.01171,-0.0211 z" + style="fill:#96231a;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2373" + d="m 173.78052,279.21649 c -1.62875,1.5421 -4.7973,3.58615 -4.11007,5.88057 0.18969,0.63232 1.77049,0.86416 5.16393,-0.10541 3.39345,-0.96956 3.73069,-5.29039 3.73069,-5.29039 l -1.62296,-1.81265 h -0.86417 z" + style="fill:#483f3b;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cczccccc" + inkscape:connector-curvature="0" + id="path2371" + d="m 171.37771,285.41322 c -1.10956,-0.2345 -1.12549,-0.78242 -0.8881,-1.80264 0,0 0.34977,-1.31839 1.41502,-2.37066 1.06525,-1.05227 4.05288,-3.4275 5.9971,-3.89434 l 23.51853,8.91482 -3.7685,4.93952 c -0.95344,0.79844 -1.81348,0.84972 -2.65574,0.75879 z" + style="fill:url(#linearGradient9366);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" + d="m 159.57442,271.20712 c 0,0 3.60003,-0.18567 4.82251,4.70427" + id="path2126" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" + d="m 160.41752,270.40619 c 0,0 4.51007,0.80093 4.88945,4.93208" + id="path2128" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" + d="m 163.83204,272.13452 4.55269,-2.65573" + id="path2130" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" + d="m 164.59034,272.99466 4.42671,-2.71494" + id="path2132" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + style="fill:none;stroke:#ffffff;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.30303" + d="m 169.96103,273.44054 c 0,0 0.10988,-3.70883 -3.68403,-5.39501" + id="path2134" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path9307" + d="m 160.75597,270.07804 c 0,0 3.03664,0.96459 4.85863,2.28642 l 2.17923,-0.4287 3.03665,-1.67907 -3.75115,-4.00124 -4.96579,2.64366 z" + style="display:inline;fill:#000000;fill-opacity:0.252525;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccc" + style="fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 157.42613,266.67286 0.27735,0.98028 8.83624,3.74368 2.43008,-1.09229 8.59473,-5.75641 c 0.73861,-1.21907 -0.34187,-1.25178 -1.07407,-1.51162 l -7.87835,-1.6743 z" + id="path2167" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:url(#linearGradient3791);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 161.19268,266.67877 c 0,0 5.66187,0.43825 4.8843,-3.14792 -0.77754,-3.58616 2.03556,-2.83688 2.03556,-2.83688 l -12.42603,-4.23593 c 0,0 -3.67559,0.51779 -4.24527,0.9068 -0.56968,0.38901 -0.30182,1.10215 -0.30182,1.10215 0,0 5.13558,5.43081 6.8694,7.15635 1.73386,1.72555 3.18386,1.05543 3.18386,1.05543 z" + id="path2169-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccczccc" /> + <path + sodipodi:nodetypes="ccccccc" + style="fill:url(#linearGradient3807);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 177.56861,263.4538 c 0,0 -2.79183,-0.54259 -6.07068,1.3055 -3.27886,1.84808 -4.7147,5.7746 -4.7147,5.7746 l -9.30957,-3.89083 c 0,0 2.01726,-4.44625 6.54805,-5.87704 4.53077,-1.43076 5.45933,-0.60019 5.45933,-0.60019 z" + id="path2165" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccccccc" + style="fill:url(#linearGradient3799);fill-opacity:1;stroke:none;stroke-width:0.229825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 168.9698,270.00646 c 0,0 0.3577,-3.15963 3.93464,-4.53079 3.57693,-1.37117 3.63654,-1.07308 3.63654,-1.07308 l 11.92312,4.94809 c 0.40649,0.52047 0.52914,0.93376 -0.0357,1.31133 l -4.85275,2.38484 c 0,0 -0.99068,-0.11878 -3.61376,-0.47648 -2.62309,-0.35768 -10.99206,-2.56391 -10.99206,-2.56391 z" + id="path2169" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path9160" + transform="matrix(0.40418427,0,0,0.40418427,-113.29188,46.310962)" + d="m 669.85547,580.63086 -1.11328,4.05273 c 0,0 5.52689,10.74347 2.18945,20.75586 l -2.08594,3.96289 1.14844,3.23243 0.74219,-0.45899 c 4.48035,-8.01831 4.96979,-13.80498 4.19726,-20.58594 -0.64638,-5.67392 -3.85219,-9.62207 -5.07812,-10.95898 z" + style="fill:#aa0000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path9178" + transform="matrix(0.40418427,0,0,0.40418427,-113.29188,46.310962)" + d="m 647.86328,586.52344 -4.21094,2.70898 c 0.76865,0.1015 7.72857,1.09616 11.09766,4.64258 2.2706,2.3901 2.45668,6.84429 2.29492,9.77344 l 0.75196,-0.45508 c 0.86307,-2.62492 0.94516,-5.63299 0.0332,-8.60352 -0.57192,-1.86296 -1.50306,-3.59042 -2.72656,-5.05859 l -0.002,-0.002 c -2.08261,-1.87741 -4.64144,-2.92959 -7.23828,-3.00586 z" + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path9212" + d="m 154.88438,273.15938 -7.37636,4.04185 c 0,0 -4.04184,3.63765 -4.34498,4.74916 -0.30314,1.11151 -0.30314,3.53661 -0.30314,3.53661 0,0 2.72824,-3.13242 4.44603,-3.13242 1.71778,0 2.52615,-3.83975 4.54707,-4.95126 2.02092,-1.11151 6.46695,-3.43557 6.46695,-3.43557 z" + style="fill:#eaa5a5;fill-opacity:0.383838;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csssc" + inkscape:connector-curvature="0" + id="path2194-6" + d="m 54.163941,311.49043 c 1.183014,-0.90362 2.618851,-1.43303 4.166797,-1.43303 4.046861,0 7.32749,3.61843 7.327494,8.082 10e-7,4.46357 -3.28063,8.08201 -7.327494,8.08201 -0.633628,0 -1.248471,-0.0887 -1.83488,-0.25547" + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient9247);stroke-width:0.305525;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="rotate(-17.063171)" /> + <path + sodipodi:nodetypes="cssc" + inkscape:connector-curvature="0" + id="path2194-6-9" + d="m 143.23044,281.76445 c 0.87061,-1.23372 2.1304,-2.37504 3.95781,-2.81992 3.95836,-0.96364 7.91502,1.4587 9.23202,5.80592 1.31701,4.34721 -0.78687,9.03065 -4.67709,10.24041" + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient9279);stroke-width:0.305525;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccscc" + inkscape:connector-curvature="0" + id="path3768" + d="m 141.65227,268.79269 c 0,0 -0.50015,-1.01818 0.0535,-1.6255 0.73237,-0.44657 6.46625,-2.76871 6.46625,-2.76871 l 1.822,0.911 -6.55557,2.7687 c 0,0 -0.87527,0.51801 -0.51802,1.44687 0.35725,0.92886 0.16077,0.48229 0.16077,0.48229 z" + style="display:inline;fill:#ffffff;fill-opacity:0.353535;stroke:none;stroke-width:0.404184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <use + height="100%" + width="100%" + transform="translate(4.4562664,-2.9956797)" + id="use2369" + xlink:href="#g2353" + y="0" + x="0" /> + <use + height="100%" + width="100%" + transform="translate(2.0865454,-1.4605857)" + id="use2367" + xlink:href="#g2353" + y="0" + x="0" /> + <g + transform="matrix(0.6845709,0.53467746,-0.53467746,0.6845709,134.4966,53.786189)" + id="g2353"> + <path + inkscape:connector-curvature="0" + id="path2294" + style="fill:#a1a7a6;fill-opacity:1;stroke:none;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none" + d="m 729.74414,665.67383 a 5.317612,2.9506264 0 0 0 -5.30664,2.78906 h -0.01 v 0.16211 8 0.0742 h 0.002 a 5.317612,2.9506264 0 0 0 5.31445,2.87695 5.317612,2.9506264 0 0 0 5.31641,-2.87695 h 0.002 v -0.0742 -8 -0.16211 h -0.01 a 5.317612,2.9506264 0 0 0 -5.30859,-2.78906 z" + transform="scale(0.26458333)" /> + <path + id="path2294-9" + style="display:inline;fill:#d8d8d8;fill-opacity:1;stroke:none;stroke-width:0.165894;stroke-miterlimit:4;stroke-dasharray:none" + d="m 194.4167,176.83836 c 0,0.32219 -0.57998,0.58337 -1.29542,0.58337 -0.49882,0 -0.93178,-0.12696 -1.14825,-0.31304 2.34784,0.22838 2.11509,-0.61904 1.98918,-0.71409 0.27815,0.107 0.45449,0.26611 0.45449,0.44376" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccc" /> + <ellipse + style="fill:#5c5858;fill-opacity:1;stroke:none;stroke-width:0.191181;stroke-miterlimit:4;stroke-dasharray:none" + id="path2328" + cx="193.14699" + cy="176.77832" + rx="0.84073937" + ry="0.37747481" /> + </g> + <g + transform="translate(0.82167911,0.64305321)" + id="g4381"> + <path + style="display:inline;fill:none;stroke:url(#linearGradient2172-0);stroke-width:0.404821;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 173.32305,272.52267 -7.24709,4.93221 -1.04783,-0.37382" + id="path2115-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + <path + style="display:inline;fill:#9f8c8c;fill-opacity:1;stroke:url(#linearGradient2180-1);stroke-width:0.404184px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 166.15036,277.44789 -0.46766,3.3537" + id="path2117-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + </g> + </g> + <g + transform="matrix(0.61537913,0.14702264,0,0.75841323,80.179952,23.529797)" + id="g2243"> + <rect + style="fill:#929ad7;fill-opacity:1;stroke:none;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2228" + width="31.296093" + height="23.746597" + x="165.53986" + y="165.63875" /> + <rect + style="fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2230" + width="26.766396" + height="4.6669617" + x="167.87334" + y="167.83496" /> + <rect + style="fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.395282;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2232" + width="8.5103416" + height="5.6278062" + x="168.28514" + y="174.69814" /> + <rect + style="fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.450572;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2234" + width="8.0985508" + height="5.9023337" + x="178.85443" + y="174.56088" /> + <rect + style="fill:none;fill-opacity:1;stroke:#aeb7e4;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2236" + width="5.9023337" + height="12.490985" + x="188.32561" + y="174.42361" /> + </g> + <g + transform="matrix(1.0200658,0.26876003,0,1.0200658,-10.391159,-75.985853)" + id="g2268"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path8035" + d="m 188.59264,204.36301 10.56968,-0.12617 -0.12964,8.01006 -10.31031,0.44693 z" + style="display:inline;fill:#000000;fill-opacity:0.242424;stroke:none;stroke-width:0.259379px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <rect + style="fill:#aeb7e4;fill-opacity:1;stroke:none;stroke-width:0.423;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2249" + width="12.628248" + height="9.3339233" + x="185.0313" + y="207.36687" /> + <rect + style="display:inline;fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.184951;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2249-4" + width="12.628248" + height="1.7844269" + x="185.0313" + y="207.36687" /> + <rect + transform="matrix(0.99999341,-0.00363108,0,1,0,0)" + style="display:inline;fill:#c3ccee;fill-opacity:1;stroke:none;stroke-width:0.13577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2249-4-0" + width="6.8050752" + height="1.7844269" + x="187.41985" + y="214.02345" /> + </g> + <g + transform="translate(-1.0583333,1.0583333)" + id="text5365" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.02637px;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:Quicksand;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.100659" + aria-label="artwork by Bayu Rizaldhan Rayes"> + <path + inkscape:connector-curvature="0" + id="path4527" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 182.65875,134.80043 q 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0621 v 1.27 q 0,0.0339 -0.0254,0.0593 -0.0254,0.0254 -0.0593,0.0254 -0.0395,0 -0.0621,-0.0254 -0.0226,-0.0254 -0.0226,-0.0593 v -0.33585 l 0.048,-0.0226 q 0,0.079 -0.0452,0.16087 -0.0423,0.0819 -0.11853,0.1524 -0.0762,0.0706 -0.18062,0.11571 -0.1016,0.0423 -0.22296,0.0423 -0.18909,0 -0.34149,-0.0988 -0.14958,-0.0988 -0.23707,-0.27094 -0.0847,-0.17215 -0.0847,-0.38664 0,-0.22013 0.0875,-0.38664 0.0875,-0.16934 0.23706,-0.26529 0.14958,-0.096 0.33585,-0.096 0.12135,0 0.22578,0.0423 0.10724,0.0423 0.18626,0.11572 0.079,0.0734 0.12418,0.16933 0.0452,0.0931 0.0452,0.19473 l -0.0593,-0.0423 v -0.35842 q 0,-0.0367 0.0226,-0.0621 0.0226,-0.0254 0.0621,-0.0254 z m -0.58703,1.31233 q 0.14958,0 0.26529,-0.0762 0.11571,-0.079 0.18062,-0.21449 0.0677,-0.13829 0.0677,-0.30762 0,-0.16651 -0.0677,-0.29916 -0.0649,-0.13264 -0.18062,-0.21166 -0.11571,-0.079 -0.26529,-0.079 -0.14675,0 -0.26529,0.0762 -0.11571,0.0762 -0.18344,0.20884 -0.0649,0.13264 -0.0649,0.3048 0,0.16933 0.0649,0.30762 0.0649,0.13547 0.18062,0.21449 0.11854,0.0762 0.26811,0.0762 z" /> + <path + inkscape:connector-curvature="0" + id="path4529" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 183.26993,136.24258 q -0.0395,0 -0.0621,-0.0254 -0.0226,-0.0254 -0.0226,-0.0593 v -1.26436 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 0.42333 l -0.0423,0.008 q 0.008,-0.0988 0.048,-0.19473 0.0423,-0.0988 0.11289,-0.18062 0.0706,-0.0819 0.16651,-0.13265 0.0988,-0.0508 0.22014,-0.0508 0.0508,0 0.0988,0.0226 0.048,0.0197 0.048,0.0677 0,0.0423 -0.0226,0.0649 -0.0226,0.0226 -0.0536,0.0226 -0.0254,0 -0.0564,-0.0141 -0.0282,-0.0141 -0.0762,-0.0141 -0.079,0 -0.15805,0.048 -0.079,0.0451 -0.14393,0.12417 -0.0649,0.079 -0.10442,0.1778 -0.0367,0.096 -0.0367,0.19474 v 0.69709 q 0,0.0339 -0.0254,0.0593 -0.0254,0.0254 -0.0593,0.0254 z" /> + <path + inkscape:connector-curvature="0" + id="path4531" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 184.17803,134.80607 h 0.65757 q 0.0339,0 0.0565,0.0254 0.0226,0.0226 0.0226,0.0565 0,0.031 -0.0226,0.0536 -0.0226,0.0226 -0.0565,0.0226 h -0.65757 q -0.0339,0 -0.0593,-0.0226 -0.0226,-0.0254 -0.0226,-0.0565 0,-0.0339 0.0226,-0.0564 0.0254,-0.0226 0.0593,-0.0226 z m 0.29069,-0.39793 q 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 1.41675 q 0,0.079 0.0198,0.11853 0.0226,0.0395 0.0564,0.0536 0.0339,0.0113 0.0677,0.0113 0.0226,0 0.0395,-0.006 0.0198,-0.008 0.0423,-0.008 0.0254,0 0.0423,0.0198 0.0198,0.0198 0.0198,0.0508 0,0.0395 -0.0452,0.0677 -0.0451,0.0254 -0.10724,0.0254 -0.0254,0 -0.0762,-0.003 -0.0508,-0.006 -0.10442,-0.031 -0.0536,-0.0282 -0.0903,-0.096 -0.0339,-0.0677 -0.0339,-0.19473 v -1.42522 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 z" /> + <path + inkscape:connector-curvature="0" + id="path4533" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 187.05361,134.76938 q 0.031,0 0.0564,0.0226 0.0282,0.0226 0.0282,0.0621 0,0.008 -0.003,0.0198 -0.003,0.0113 -0.006,0.0169 l -0.43463,1.29822 q -0.0113,0.0254 -0.0367,0.0423 -0.0226,0.0141 -0.048,0.0113 -0.0508,-0.003 -0.0762,-0.0536 l -0.39794,-0.93698 0.0508,0.0113 -0.35277,0.92569 q -0.0226,0.0508 -0.0762,0.0536 -0.0254,0.003 -0.0508,-0.0113 -0.0254,-0.0169 -0.0339,-0.0423 l -0.44591,-1.29822 q -0.008,-0.0198 -0.008,-0.0367 0,-0.0367 0.0226,-0.0593 0.0254,-0.0254 0.0649,-0.0254 0.0254,0 0.0452,0.0141 0.0226,0.0141 0.031,0.0423 l 0.40076,1.20226 -0.0536,-0.003 0.36407,-0.91722 q 0.0226,-0.0536 0.079,-0.0536 0.0282,0 0.048,0.0141 0.0198,0.0141 0.0311,0.0395 l 0.38664,0.92004 -0.0621,0.003 0.39793,-1.20509 q 0.0169,-0.0564 0.079,-0.0564 z" /> + <path + inkscape:connector-curvature="0" + id="path4535" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 188.79479,135.52009 q 0,0.21449 -0.096,0.38665 -0.0931,0.16933 -0.254,0.26811 -0.16087,0.096 -0.36407,0.096 -0.20037,0 -0.36406,-0.096 -0.16087,-0.0988 -0.25683,-0.26811 -0.0931,-0.17216 -0.0931,-0.38665 0,-0.21731 0.0931,-0.38664 0.096,-0.16933 0.25683,-0.26811 0.16369,-0.0988 0.36406,-0.0988 0.2032,0 0.36407,0.0988 0.16087,0.0988 0.254,0.26811 0.096,0.16933 0.096,0.38664 z m -0.16934,0 q 0,-0.17215 -0.0705,-0.3048 -0.0706,-0.13546 -0.19474,-0.21166 -0.12135,-0.079 -0.2794,-0.079 -0.15522,0 -0.2794,0.079 -0.12135,0.0762 -0.19473,0.21166 -0.0706,0.13265 -0.0706,0.3048 0,0.17216 0.0706,0.3048 0.0734,0.13265 0.19473,0.21167 0.12418,0.0762 0.2794,0.0762 0.15805,0 0.2794,-0.0762 0.12418,-0.079 0.19474,-0.21167 0.0705,-0.13264 0.0705,-0.3048 z" /> + <path + inkscape:connector-curvature="0" + id="path4537" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 189.22857,136.24258 q -0.0395,0 -0.0621,-0.0254 -0.0226,-0.0254 -0.0226,-0.0593 v -1.26436 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 0.42333 l -0.0423,0.008 q 0.008,-0.0988 0.048,-0.19473 0.0423,-0.0988 0.11289,-0.18062 0.0706,-0.0819 0.16651,-0.13265 0.0988,-0.0508 0.22013,-0.0508 0.0508,0 0.0988,0.0226 0.048,0.0197 0.048,0.0677 0,0.0423 -0.0226,0.0649 -0.0226,0.0226 -0.0536,0.0226 -0.0254,0 -0.0564,-0.0141 -0.0282,-0.0141 -0.0762,-0.0141 -0.079,0 -0.15805,0.048 -0.079,0.0451 -0.14393,0.12417 -0.0649,0.079 -0.10442,0.1778 -0.0367,0.096 -0.0367,0.19474 v 0.69709 q 0,0.0339 -0.0254,0.0593 -0.0254,0.0254 -0.0593,0.0254 z" /> + <path + inkscape:connector-curvature="0" + id="path4539" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 190.3314,136.24258 q -0.0367,0 -0.0621,-0.0254 -0.0226,-0.0254 -0.0226,-0.0593 v -1.91911 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 1.91911 q 0,0.0339 -0.0254,0.0593 -0.0226,0.0254 -0.0593,0.0254 z m 0.95955,-1.4478 q 0.031,0 0.0564,0.0282 0.0254,0.0254 0.0254,0.0564 0,0.0367 -0.0311,0.0649 l -0.94826,0.80716 -0.008,-0.20038 0.84667,-0.72813 q 0.0254,-0.0282 0.0593,-0.0282 z m 0.0226,1.4478 q -0.0367,0 -0.0621,-0.031 l -0.64347,-0.68298 0.127,-0.11571 0.63783,0.68016 q 0.0254,0.0282 0.0254,0.0649 0,0.0395 -0.031,0.0621 -0.031,0.0226 -0.0536,0.0226 z" /> + <path + inkscape:connector-curvature="0" + id="path4541" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 193.19763,134.76656 q 0.19191,0 0.33866,0.096 0.14958,0.096 0.23707,0.26529 0.0875,0.16651 0.0875,0.38664 0,0.21449 -0.0875,0.38664 -0.0875,0.17216 -0.23707,0.27094 -0.14957,0.0988 -0.33584,0.0988 -0.0988,0 -0.18909,-0.0311 -0.0875,-0.031 -0.16087,-0.0818 -0.0734,-0.0536 -0.12982,-0.12418 -0.0564,-0.0706 -0.0903,-0.1524 l 0.0508,-0.0367 v 0.31891 q 0,0.0367 -0.0254,0.0621 -0.0226,0.0226 -0.0593,0.0226 -0.0367,0 -0.0621,-0.0226 -0.0226,-0.0254 -0.0226,-0.0621 v -1.92193 q 0,-0.0367 0.0226,-0.0593 0.0226,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0226 0.0254,0.0593 v 0.94544 l -0.0395,-0.0226 q 0.0282,-0.0875 0.0818,-0.15804 0.0565,-0.0734 0.12983,-0.127 0.0734,-0.0536 0.16086,-0.0818 0.0875,-0.031 0.18345,-0.031 z m -0.0141,0.15805 q -0.1524,0 -0.26811,0.0762 -0.11572,0.0762 -0.18345,0.20884 -0.0649,0.13264 -0.0649,0.3048 0,0.16933 0.0649,0.30762 0.0677,0.13547 0.18345,0.21449 0.11571,0.0762 0.26811,0.0762 0.14957,0 0.26246,-0.079 0.11571,-0.079 0.18345,-0.21449 0.0677,-0.13829 0.0677,-0.3048 0,-0.17216 -0.0677,-0.3048 -0.0677,-0.13264 -0.18345,-0.20884 -0.11289,-0.0762 -0.26246,-0.0762 z" /> + <path + inkscape:connector-curvature="0" + id="path4543" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 195.28484,134.77503 q 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 1.2446 q 0,0.2286 -0.0903,0.38383 -0.0903,0.15804 -0.24271,0.23706 -0.1524,0.0819 -0.34713,0.0819 -0.12136,0 -0.22578,-0.0282 -0.1016,-0.0254 -0.16651,-0.0677 -0.0339,-0.0198 -0.0508,-0.048 -0.0169,-0.0282 -0.003,-0.0593 0.0141,-0.0395 0.0423,-0.0536 0.031,-0.0113 0.0621,0.003 0.048,0.0254 0.13829,0.0621 0.0903,0.0367 0.20602,0.0367 0.15522,0 0.26811,-0.0649 0.11571,-0.0649 0.1778,-0.18908 0.0621,-0.12136 0.0621,-0.29069 v -0.2032 l 0.0198,0.0677 q -0.0423,0.0875 -0.12136,0.15522 -0.0762,0.0677 -0.1778,0.10725 -0.0988,0.0367 -0.21167,0.0367 -0.16933,0 -0.28222,-0.0677 -0.11006,-0.0705 -0.16369,-0.19191 -0.0536,-0.12135 -0.0536,-0.28504 v -0.86643 q 0,-0.0339 0.0226,-0.0593 0.0226,-0.0254 0.0621,-0.0254 0.0367,0 0.0593,0.0254 0.0254,0.0254 0.0254,0.0593 v 0.84103 q 0,0.19755 0.0847,0.3048 0.0875,0.10724 0.28222,0.10724 0.12136,0 0.22296,-0.0564 0.1016,-0.0593 0.16651,-0.1524 0.0649,-0.096 0.0649,-0.2032 v -0.84103 q 0,-0.0339 0.0226,-0.0593 0.0254,-0.0254 0.0621,-0.0254 z" /> + <path + inkscape:connector-curvature="0" + id="path4545" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 166.93107,138.93999 q 0.25965,0 0.39229,0.127 0.13547,0.127 0.13547,0.36971 0,0.127 -0.0621,0.23142 -0.0593,0.1016 -0.1778,0.16087 -0.11571,0.0593 -0.29069,0.0621 l 0.006,-0.10442 q 0.0931,0 0.20037,0.0254 0.11007,0.0254 0.20603,0.0875 0.0959,0.0621 0.15804,0.16933 0.0621,0.10442 0.0621,0.26247 0,0.17215 -0.0564,0.28786 -0.0564,0.11289 -0.14957,0.1778 -0.0931,0.0649 -0.20603,0.0931 -0.11006,0.0254 -0.21731,0.0254 h -0.72249 q -0.0593,0 -0.1016,-0.0395 -0.0423,-0.0423 -0.0423,-0.10443 v -1.68769 q 0,-0.0621 0.0423,-0.1016 0.0423,-0.0423 0.1016,-0.0423 z m -0.0395,0.27658 h -0.55598 l 0.0339,-0.0452 v 0.60678 l -0.031,-0.031 h 0.5588 q 0.1016,-0.003 0.1778,-0.0677 0.079,-0.0677 0.079,-0.19755 0,-0.13265 -0.0706,-0.19756 -0.0705,-0.0677 -0.19191,-0.0677 z m 0.0198,0.80715 h -0.56162 l 0.0197,-0.0197 v 0.66604 l -0.0226,-0.0254 h 0.58138 q 0.14676,0 0.23707,-0.0762 0.0903,-0.079 0.0903,-0.23706 0,-0.13265 -0.0536,-0.19756 -0.0536,-0.0649 -0.13265,-0.0875 -0.079,-0.0226 -0.15804,-0.0226 z" /> + <path + inkscape:connector-curvature="0" + id="path4547" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 169.08527,139.40848 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 1.2192 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0564,0.008 q 0,0.0508 -0.0423,0.11289 -0.0395,0.0621 -0.11007,0.12135 -0.0705,0.0565 -0.16651,0.096 -0.096,0.0367 -0.20602,0.0367 -0.19474,0 -0.34996,-0.0988 -0.15522,-0.1016 -0.24553,-0.27658 -0.0903,-0.17497 -0.0903,-0.39793 0,-0.2286 0.0903,-0.40076 0.0903,-0.17497 0.24271,-0.27375 0.15522,-0.0988 0.34431,-0.0988 0.12136,0 0.22296,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11853,0.13265 0.0423,0.0677 0.0423,0.12982 l -0.0875,0.008 v -0.25683 q 0,-0.0593 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57574,1.27564 q 0.13265,0 0.23143,-0.0677 0.1016,-0.0677 0.15804,-0.18344 0.0565,-0.11854 0.0565,-0.26247 0,-0.14676 -0.0565,-0.26247 -0.0564,-0.11571 -0.15804,-0.18344 -0.0988,-0.0677 -0.23143,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15804,0.18344 -0.0565,0.11571 -0.0565,0.26247 0,0.14393 0.0565,0.26247 0.0564,0.11571 0.15522,0.18344 0.1016,0.0677 0.23424,0.0677 z" /> + <path + inkscape:connector-curvature="0" + id="path4549" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 170.68692,139.41977 q 0.0621,0 0.1016,0.0423 0.0395,0.0395 0.0395,0.1016 v 1.21356 q 0,0.24835 -0.096,0.40358 -0.0931,0.15522 -0.254,0.22577 -0.15805,0.0734 -0.35842,0.0734 -0.1016,0 -0.2032,-0.0197 -0.1016,-0.0169 -0.16652,-0.0508 -0.0677,-0.031 -0.096,-0.0762 -0.0282,-0.0452 -0.008,-0.0988 0.0198,-0.0677 0.0677,-0.0931 0.048,-0.0226 0.0988,-0.003 0.048,0.0198 0.127,0.0508 0.079,0.031 0.18063,0.031 0.13828,0 0.23424,-0.0452 0.096,-0.0451 0.14393,-0.14111 0.0508,-0.096 0.0508,-0.24836 v -0.19473 l 0.0452,0.0677 q -0.0452,0.0931 -0.11853,0.15523 -0.0734,0.0621 -0.17498,0.0959 -0.0988,0.0339 -0.22014,0.0339 -0.15522,0 -0.26811,-0.0677 -0.11006,-0.0706 -0.16933,-0.19192 -0.0593,-0.12417 -0.0593,-0.28222 v -0.8382 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.762 q 0,0.18627 0.0818,0.27376 0.0818,0.0847 0.24271,0.0847 0.10725,0 0.18627,-0.0452 0.079,-0.0452 0.12418,-0.12418 0.0451,-0.0818 0.0451,-0.18909 v -0.762 q 0,-0.0621 0.0395,-0.1016 0.0423,-0.0423 0.1016,-0.0423 z" /> + <path + inkscape:connector-curvature="0" + id="path4551" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 172.32685,139.43106 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.74225 q 0,0.29351 -0.16369,0.46002 -0.16369,0.16369 -0.46285,0.16369 -0.29633,0 -0.46002,-0.16369 -0.16087,-0.16651 -0.16087,-0.46002 v -0.74225 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.74225 q 0,0.18344 0.0847,0.27375 0.0875,0.0903 0.254,0.0903 0.16934,0 0.25682,-0.0903 0.0875,-0.0903 0.0875,-0.27375 v -0.74225 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z" /> + <path + inkscape:connector-curvature="0" + id="path4553" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 173.84076,140.91555 q -0.0677,0 -0.11854,-0.0395 -0.0508,-0.0423 -0.0508,-0.10443 v -1.68769 q 0,-0.0621 0.0423,-0.1016 0.0423,-0.0423 0.1016,-0.0423 h 0.79586 q 0.1524,0 0.2794,0.0762 0.127,0.0734 0.2032,0.20602 0.079,0.12983 0.079,0.29916 0,0.11289 -0.0452,0.21731 -0.0452,0.1016 -0.12136,0.18062 -0.0762,0.079 -0.17215,0.11854 l -0.031,-0.0536 q 0.0875,0.0311 0.1524,0.0903 0.0649,0.0564 0.1016,0.13547 0.0395,0.0762 0.0423,0.17498 0.008,0.0875 0.0141,0.14675 0.008,0.0564 0.0226,0.0931 0.0141,0.0367 0.0508,0.0564 0.0508,0.0282 0.0621,0.0847 0.0141,0.0564 -0.0226,0.1016 -0.0254,0.0339 -0.0649,0.0452 -0.0367,0.008 -0.0762,0.003 -0.0395,-0.008 -0.0677,-0.0226 -0.0452,-0.0282 -0.0931,-0.079 -0.0452,-0.0536 -0.0734,-0.14676 -0.0282,-0.0931 -0.0282,-0.24553 0,-0.0706 -0.0226,-0.12136 -0.0226,-0.0508 -0.0621,-0.0818 -0.0395,-0.0339 -0.0931,-0.048 -0.0536,-0.0169 -0.11853,-0.0169 h -0.59832 l 0.0395,-0.0564 v 0.67451 q 0,0.0621 -0.0339,0.10443 -0.0339,0.0395 -0.0931,0.0395 z m 0.0903,-1.00754 h 0.67451 q 0.0649,-0.003 0.12418,-0.0508 0.0621,-0.0508 0.0988,-0.13546 0.0395,-0.0847 0.0395,-0.19191 0,-0.13547 -0.0818,-0.22578 -0.079,-0.0931 -0.18909,-0.0931 h -0.6604 l 0.031,-0.0734 v 0.82973 z" /> + <path + inkscape:connector-curvature="0" + id="path4555" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 175.82941,140.77161 q 0,0.0621 -0.0395,0.10443 -0.0395,0.0395 -0.1016,0.0395 -0.0593,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -1.20791 q 0,-0.0621 0.0395,-0.1016 0.0423,-0.0423 0.1016,-0.0423 0.0621,0 0.1016,0.0423 0.0395,0.0395 0.0395,0.1016 z m -0.14394,-1.53811 q -0.0818,0 -0.11853,-0.0282 -0.0367,-0.031 -0.0367,-0.1016 v -0.0452 q 0,-0.0705 0.0395,-0.0988 0.0395,-0.0282 0.11854,-0.0282 0.0847,0 0.12135,0.031 0.0367,0.0282 0.0367,0.0959 v 0.0452 q 0,0.0734 -0.0395,0.1016 -0.0367,0.0282 -0.12136,0.0282 z" /> + <path + inkscape:connector-curvature="0" + id="path4557" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 177.15166,140.6559 q 0.0565,0 0.0931,0.0367 0.0395,0.0367 0.0395,0.0931 0,0.0536 -0.0395,0.0931 -0.0367,0.0367 -0.0931,0.0367 h -0.91157 q -0.0593,0 -0.096,-0.0423 -0.0367,-0.0452 -0.0339,-0.0875 0.003,-0.0339 0.008,-0.0593 0.008,-0.0282 0.0367,-0.0621 l 0.75353,-0.99907 v 0.0339 h -0.62935 q -0.0564,0 -0.096,-0.0367 -0.0367,-0.0395 -0.0367,-0.0931 0,-0.0564 0.0367,-0.0931 0.0395,-0.0367 0.096,-0.0367 h 0.86924 q 0.0536,0 0.0903,0.0423 0.0395,0.0395 0.0339,0.0988 0,0.0254 -0.008,0.0508 -0.006,0.0226 -0.031,0.0536 l -0.74225,0.98778 -0.0113,-0.0169 z" /> + <path + inkscape:connector-curvature="0" + id="path4559" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 178.77563,139.40848 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 1.2192 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0564,0.008 q 0,0.0508 -0.0423,0.11289 -0.0395,0.0621 -0.11006,0.12135 -0.0706,0.0565 -0.16652,0.096 -0.0959,0.0367 -0.20602,0.0367 -0.19473,0 -0.34995,-0.0988 -0.15523,-0.1016 -0.24554,-0.27658 -0.0903,-0.17497 -0.0903,-0.39793 0,-0.2286 0.0903,-0.40076 0.0903,-0.17497 0.24271,-0.27375 0.15523,-0.0988 0.34432,-0.0988 0.12135,0 0.22295,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11854,0.13265 0.0423,0.0677 0.0423,0.12982 l -0.0875,0.008 v -0.25683 q 0,-0.0593 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57573,1.27564 q 0.13264,0 0.23142,-0.0677 0.1016,-0.0677 0.15805,-0.18344 0.0564,-0.11854 0.0564,-0.26247 0,-0.14676 -0.0564,-0.26247 -0.0565,-0.11571 -0.15805,-0.18344 -0.0988,-0.0677 -0.23142,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15805,0.18344 -0.0564,0.11571 -0.0564,0.26247 0,0.14393 0.0564,0.26247 0.0565,0.11571 0.15522,0.18344 0.1016,0.0677 0.23425,0.0677 z" /> + <path + inkscape:connector-curvature="0" + id="path4561" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 179.61167,140.77161 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0593,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -1.80057 q 0,-0.0621 0.0423,-0.1016 0.0423,-0.0423 0.1016,-0.0423 0.0621,0 0.0988,0.0423 0.0395,0.0395 0.0395,0.1016 z" /> + <path + inkscape:connector-curvature="0" + id="path4563" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 181.212,138.8271 q 0.0593,0 0.0988,0.0395 0.0423,0.0395 0.0423,0.10443 v 1.80057 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0565,0.003 q 0,0.0508 -0.0423,0.11571 -0.0395,0.0621 -0.11006,0.12135 -0.0706,0.0593 -0.16651,0.0988 -0.096,0.0367 -0.20603,0.0367 -0.19191,0 -0.34995,-0.0988 -0.15522,-0.1016 -0.24554,-0.27375 -0.0903,-0.17498 -0.0903,-0.40076 0,-0.22578 0.0903,-0.39793 0.0903,-0.17498 0.24272,-0.27376 0.15522,-0.1016 0.34431,-0.1016 0.11853,0 0.22013,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11854,0.13265 0.0452,0.0677 0.0452,0.12982 l -0.0875,0.008 v -0.8382 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57573,1.85702 q 0.13264,0 0.23142,-0.0677 0.1016,-0.0677 0.15805,-0.18344 0.0564,-0.11571 0.0564,-0.26247 0,-0.14676 -0.0564,-0.26247 -0.0565,-0.11571 -0.15805,-0.18344 -0.0988,-0.0677 -0.23142,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15805,0.18344 -0.0564,0.11571 -0.0564,0.26247 0,0.14676 0.0564,0.26247 0.0564,0.11571 0.15805,0.18344 0.1016,0.0677 0.23142,0.0677 z" /> + <path + inkscape:connector-curvature="0" + id="path4565" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 182.49113,139.40566 q 0.19474,0 0.30198,0.0847 0.10724,0.0819 0.14958,0.22296 0.0452,0.14111 0.0452,0.31044 v 0.74789 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.74789 q 0,-0.0988 -0.0282,-0.18062 -0.0254,-0.0818 -0.0931,-0.12982 -0.0649,-0.048 -0.18345,-0.048 -0.11007,0 -0.19755,0.048 -0.0847,0.048 -0.13265,0.12982 -0.0451,0.0819 -0.0451,0.18062 v 0.74789 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -1.80057 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.77046 l -0.0508,0.0282 q 0.0197,-0.0621 0.0649,-0.127 0.048,-0.0649 0.11571,-0.11853 0.0705,-0.0536 0.15522,-0.0847 0.0847,-0.0339 0.18062,-0.0339 z" /> + <path + inkscape:connector-curvature="0" + id="path4567" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 184.58544,139.40848 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 1.2192 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0564,0.008 q 0,0.0508 -0.0423,0.11289 -0.0395,0.0621 -0.11007,0.12135 -0.0705,0.0565 -0.16651,0.096 -0.0959,0.0367 -0.20602,0.0367 -0.19473,0 -0.34995,-0.0988 -0.15523,-0.1016 -0.24554,-0.27658 -0.0903,-0.17497 -0.0903,-0.39793 0,-0.2286 0.0903,-0.40076 0.0903,-0.17497 0.24271,-0.27375 0.15523,-0.0988 0.34431,-0.0988 0.12136,0 0.22296,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11854,0.13265 0.0423,0.0677 0.0423,0.12982 l -0.0875,0.008 v -0.25683 q 0,-0.0593 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57573,1.27564 q 0.13264,0 0.23142,-0.0677 0.1016,-0.0677 0.15804,-0.18344 0.0565,-0.11854 0.0565,-0.26247 0,-0.14676 -0.0565,-0.26247 -0.0564,-0.11571 -0.15804,-0.18344 -0.0988,-0.0677 -0.23142,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15805,0.18344 -0.0564,0.11571 -0.0564,0.26247 0,0.14393 0.0564,0.26247 0.0565,0.11571 0.15522,0.18344 0.1016,0.0677 0.23425,0.0677 z" /> + <path + inkscape:connector-curvature="0" + id="path4569" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 185.8815,139.39719 q 0.20038,0 0.31045,0.0847 0.11006,0.0818 0.1524,0.22295 0.0452,0.13829 0.0452,0.31045 v 0.75635 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.75353 q 0,-0.1016 -0.0282,-0.18062 -0.0282,-0.0819 -0.0988,-0.12982 -0.0677,-0.0508 -0.19191,-0.0508 -0.11571,0 -0.2032,0.0508 -0.0875,0.048 -0.13829,0.12982 -0.048,0.079 -0.048,0.18062 v 0.75353 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -1.19662 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.15805 l -0.0508,0.0282 q 0.0198,-0.0621 0.0677,-0.12418 0.0508,-0.0649 0.12135,-0.11853 0.0706,-0.0565 0.15805,-0.0875 0.0875,-0.0339 0.18626,-0.0339 z" /> + <path + inkscape:connector-curvature="0" + id="path4571" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 187.76445,140.91555 q -0.0677,0 -0.11853,-0.0395 -0.0508,-0.0423 -0.0508,-0.10443 v -1.68769 q 0,-0.0621 0.0423,-0.1016 0.0423,-0.0423 0.1016,-0.0423 h 0.79587 q 0.1524,0 0.2794,0.0762 0.127,0.0734 0.2032,0.20602 0.079,0.12983 0.079,0.29916 0,0.11289 -0.0452,0.21731 -0.0452,0.1016 -0.12136,0.18062 -0.0762,0.079 -0.17215,0.11854 l -0.031,-0.0536 q 0.0875,0.0311 0.1524,0.0903 0.0649,0.0564 0.1016,0.13547 0.0395,0.0762 0.0423,0.17498 0.008,0.0875 0.0141,0.14675 0.008,0.0564 0.0226,0.0931 0.0141,0.0367 0.0508,0.0564 0.0508,0.0282 0.0621,0.0847 0.0141,0.0564 -0.0226,0.1016 -0.0254,0.0339 -0.0649,0.0452 -0.0367,0.008 -0.0762,0.003 -0.0395,-0.008 -0.0677,-0.0226 -0.0452,-0.0282 -0.0931,-0.079 -0.0452,-0.0536 -0.0734,-0.14676 -0.0282,-0.0931 -0.0282,-0.24553 0,-0.0706 -0.0226,-0.12136 -0.0226,-0.0508 -0.0621,-0.0818 -0.0395,-0.0339 -0.0931,-0.048 -0.0536,-0.0169 -0.11854,-0.0169 h -0.59831 l 0.0395,-0.0564 v 0.67451 q 0,0.0621 -0.0339,0.10443 -0.0339,0.0395 -0.0931,0.0395 z m 0.0903,-1.00754 h 0.67452 q 0.0649,-0.003 0.12417,-0.0508 0.0621,-0.0508 0.0988,-0.13546 0.0395,-0.0847 0.0395,-0.19191 0,-0.13547 -0.0818,-0.22578 -0.079,-0.0931 -0.18909,-0.0931 h -0.6604 l 0.031,-0.0734 v 0.82973 z" /> + <path + inkscape:connector-curvature="0" + id="path4573" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 190.70393,139.40848 q 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 1.2192 q 0,0.0621 -0.0423,0.10443 -0.0395,0.0395 -0.0988,0.0395 -0.0621,0 -0.1016,-0.0395 -0.0395,-0.0423 -0.0395,-0.10443 v -0.2032 l 0.0564,0.008 q 0,0.0508 -0.0423,0.11289 -0.0395,0.0621 -0.11007,0.12135 -0.0705,0.0565 -0.16651,0.096 -0.096,0.0367 -0.20602,0.0367 -0.19473,0 -0.34995,-0.0988 -0.15523,-0.1016 -0.24554,-0.27658 -0.0903,-0.17497 -0.0903,-0.39793 0,-0.2286 0.0903,-0.40076 0.0903,-0.17497 0.24271,-0.27375 0.15523,-0.0988 0.34431,-0.0988 0.12136,0 0.22296,0.0395 0.10442,0.0395 0.18062,0.1016 0.0762,0.0621 0.11854,0.13265 0.0423,0.0677 0.0423,0.12982 l -0.0875,0.008 v -0.25683 q 0,-0.0593 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 z m -0.57573,1.27564 q 0.13264,0 0.23142,-0.0677 0.1016,-0.0677 0.15804,-0.18344 0.0564,-0.11854 0.0564,-0.26247 0,-0.14676 -0.0564,-0.26247 -0.0564,-0.11571 -0.15804,-0.18344 -0.0988,-0.0677 -0.23142,-0.0677 -0.12982,0 -0.23142,0.0677 -0.1016,0.0677 -0.15805,0.18344 -0.0564,0.11571 -0.0564,0.26247 0,0.14393 0.0564,0.26247 0.0564,0.11571 0.15522,0.18344 0.1016,0.0677 0.23425,0.0677 z" /> + <path + inkscape:connector-curvature="0" + id="path4575" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 192.30559,139.41977 q 0.0621,0 0.1016,0.0423 0.0395,0.0395 0.0395,0.1016 v 1.21356 q 0,0.24835 -0.096,0.40358 -0.0931,0.15522 -0.254,0.22577 -0.15804,0.0734 -0.35842,0.0734 -0.1016,0 -0.2032,-0.0197 -0.1016,-0.0169 -0.16651,-0.0508 -0.0677,-0.031 -0.096,-0.0762 -0.0282,-0.0452 -0.008,-0.0988 0.0197,-0.0677 0.0677,-0.0931 0.048,-0.0226 0.0988,-0.003 0.048,0.0198 0.127,0.0508 0.079,0.031 0.18062,0.031 0.13829,0 0.23424,-0.0452 0.096,-0.0451 0.14394,-0.14111 0.0508,-0.096 0.0508,-0.24836 v -0.19473 l 0.0451,0.0677 q -0.0451,0.0931 -0.11853,0.15523 -0.0734,0.0621 -0.17498,0.0959 -0.0988,0.0339 -0.22013,0.0339 -0.15522,0 -0.26811,-0.0677 -0.11007,-0.0706 -0.16934,-0.19192 -0.0593,-0.12417 -0.0593,-0.28222 v -0.8382 q 0,-0.0621 0.0395,-0.1016 0.0395,-0.0423 0.1016,-0.0423 0.0593,0 0.0988,0.0423 0.0423,0.0395 0.0423,0.1016 v 0.762 q 0,0.18627 0.0818,0.27376 0.0819,0.0847 0.24271,0.0847 0.10725,0 0.18627,-0.0452 0.079,-0.0452 0.12418,-0.12418 0.0452,-0.0818 0.0452,-0.18909 v -0.762 q 0,-0.0621 0.0395,-0.1016 0.0423,-0.0423 0.1016,-0.0423 z" /> + <path + inkscape:connector-curvature="0" + id="path4577" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 193.5,140.94377 q -0.23142,0 -0.4064,-0.096 -0.17215,-0.0988 -0.26811,-0.26811 -0.0931,-0.17215 -0.0931,-0.39229 0,-0.24835 0.0988,-0.42333 0.1016,-0.1778 0.26246,-0.27093 0.16369,-0.096 0.34431,-0.096 0.13547,0 0.25965,0.0565 0.127,0.0536 0.22295,0.1524 0.096,0.0959 0.1524,0.2286 0.0564,0.12982 0.0593,0.28504 -0.003,0.0564 -0.0452,0.0931 -0.0423,0.0367 -0.0988,0.0367 h -1.09502 l -0.0677,-0.23989 h 1.06116 l -0.0536,0.0508 v -0.0705 q -0.008,-0.0988 -0.0677,-0.17216 -0.0593,-0.0762 -0.14675,-0.11571 -0.0847,-0.0423 -0.18063,-0.0423 -0.0847,0 -0.16368,0.0282 -0.079,0.0254 -0.13829,0.0847 -0.0593,0.0593 -0.096,0.15804 -0.0367,0.096 -0.0367,0.23989 0,0.15522 0.0649,0.27093 0.0649,0.11571 0.17498,0.18063 0.11007,0.0621 0.24553,0.0621 0.1016,0 0.16934,-0.0198 0.0677,-0.0226 0.11289,-0.0536 0.0452,-0.031 0.079,-0.0593 0.0451,-0.0254 0.0847,-0.0254 0.0508,0 0.0847,0.0367 0.0339,0.0339 0.0339,0.0818 0,0.0621 -0.0621,0.11289 -0.0762,0.0734 -0.21167,0.12982 -0.13264,0.0565 -0.2794,0.0565 z" /> + <path + inkscape:connector-curvature="0" + id="path4579" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.100659" + d="m 194.35024,140.68412 q -0.0254,-0.0395 -0.0226,-0.0903 0.003,-0.0536 0.0593,-0.0903 0.0395,-0.0254 0.0818,-0.0198 0.0452,0.003 0.0847,0.0423 0.079,0.0875 0.17498,0.13829 0.0988,0.0508 0.23707,0.0508 0.0564,-0.003 0.11571,-0.0169 0.0593,-0.0169 0.1016,-0.0565 0.0423,-0.0423 0.0423,-0.12135 0,-0.0706 -0.0452,-0.11289 -0.0452,-0.0423 -0.11853,-0.0677 -0.0734,-0.0282 -0.15804,-0.0508 -0.0903,-0.0254 -0.18345,-0.0564 -0.0903,-0.0311 -0.16369,-0.079 -0.0734,-0.0508 -0.12135,-0.12983 -0.0452,-0.079 -0.0452,-0.19473 0,-0.13264 0.0734,-0.2286 0.0762,-0.096 0.19473,-0.14958 0.12136,-0.0536 0.26247,-0.0536 0.0818,0 0.17216,0.0226 0.0903,0.0197 0.17497,0.0649 0.0847,0.0452 0.14676,0.11853 0.0282,0.0367 0.031,0.0875 0.006,0.0508 -0.0451,0.0903 -0.0339,0.0282 -0.0819,0.0254 -0.048,-0.003 -0.079,-0.031 -0.0536,-0.0677 -0.13829,-0.10442 -0.0847,-0.0395 -0.19191,-0.0395 -0.0536,0 -0.11289,0.0169 -0.0564,0.0141 -0.096,0.0536 -0.0395,0.0395 -0.0395,0.11571 0,0.0706 0.0452,0.11289 0.048,0.0423 0.12418,0.0706 0.0762,0.0282 0.16651,0.0508 0.0875,0.0226 0.17216,0.0536 0.0875,0.031 0.15522,0.0818 0.0705,0.048 0.11289,0.127 0.0452,0.0762 0.0452,0.19474 0,0.13829 -0.0818,0.23706 -0.079,0.096 -0.2032,0.14676 -0.12136,0.0508 -0.25682,0.0508 -0.16087,0 -0.32174,-0.0565 -0.15804,-0.0593 -0.26811,-0.2032 z" /> + </g> + <g + transform="translate(10.583333)" + id="g9220" /> + <path + inkscape:connector-curvature="0" + id="path3412" + d="m 73.351583,202.00571 -7.202916,4.58367 c 0,0 -0.327403,0.42095 -0.280633,0.74836 0.04677,0.3274 0.09355,2.0112 0.09355,2.0112" + style="fill:none;stroke:#9fe4e5;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="text1578-9-2" + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffcc00;fill-opacity:1;stroke:#ffcc00;stroke-width:0.529167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(1,0.22954759,0,1,8.8041311,6.4217559)" + aria-label="inkscape"> + <path + sodipodi:nodetypes="cccccccccccccsscccscccccscccccccccccccsccccccccscccccccccscccccccccccccsccccccccccccccccscccccccccccccccccccccccccccccccscccccccccccccccccccssccccccccscccccccsccccccccccsccccccsccccccscccccsccsccccsccccccccccscccscccccccccccscccccccccccccscccccccccccccccccccccsccccccccsccccccscccccccccccccccccccsccccscccsccccscccsccccscssccscccccccccccsscccccccsscccccccssccccccccccccccccccccccsccccccccccccccccc" + inkscape:connector-curvature="0" + d="m 95.744519,191.24191 -0.203081,0.0493 v 0.0351 c -0.312989,0.0947 -0.621758,0.20352 -0.910029,0.38046 l -0.0021,0.002 c -0.334989,0.20967 -0.634349,0.44937 -0.89658,0.71895 -7.94e-4,7.1e-4 -5.3e-4,9.2e-4 -0.0021,0.002 -5.29e-4,6.5e-4 -0.0011,0.001 -0.0021,0.002 -0.113159,0.11211 -0.179379,0.223 -0.273367,0.33405 -0.0608,-0.13562 -0.0611,-0.30556 -0.179322,-0.39654 -0.240929,-0.1947 -0.566621,-0.24707 -0.88883,-0.1701 -0.322588,0.077 -0.603309,0.26196 -0.810811,0.52925 -5.29e-4,6.5e-4 5.3e-4,9.4e-4 0,0.002 -0.20801,0.25834 -0.319868,0.5652 -0.319868,0.89043 v 9.48676 c 0,0.33405 0.12097,0.64067 0.366901,0.82787 0.243318,0.18523 0.565499,0.22717 0.886769,0.15043 0.32348,-0.0773 0.603129,-0.26283 0.8108,-0.53132 0.20697,-0.25793 0.319879,-0.56604 0.319879,-0.89043 v -2.55643 c 0.306062,0.15198 0.650311,0.25167 1.031462,0.30221 0.39751,0.0527 0.818819,0.0249 1.257797,-0.0799 0.743231,-0.17748 1.41478,-0.53199 2.001949,-1.05279 0.594651,-0.53123 1.065993,-1.17442 1.410224,-1.92362 0.356888,-0.76656 0.006,-2.00297 0.006,-2.88433 0,-0.87973 0.352359,-1.22416 -0.0176,-1.83255 l -0.0021,-0.002 c -0.355171,-0.6022 -0.858835,-1.03903 -1.486193,-1.28303 -5.3e-4,-1.4e-4 -0.0021,2.8e-4 -0.0021,1e-5 -0.624758,-0.25922 -1.332368,-0.29189 -2.095468,-0.10966 z m -0.10903,2.27347 c 0.41329,-0.0987 0.738838,-0.0767 1.005618,0.043 l 0.0021,2e-5 0.0021,0.002 c 0.286412,0.12254 0.49865,0.31917 0.659911,0.62108 l 0.004,0.004 0.0021,0.006 c 0.167269,0.2858 0.25786,0.65106 0.25786,1.11128 0,0.44918 -0.0898,0.87776 -0.271812,1.29488 l -0.0021,-2e-5 v 0.002 c -0.171659,0.40338 -0.410339,0.74106 -0.722439,1.02366 l -0.0021,0.002 c -0.29718,0.27528 -0.645549,0.45959 -1.058849,0.55829 -0.413308,0.0987 -0.745778,0.079 -1.025258,-0.0406 -0.286081,-0.12239 -0.504462,-0.32282 -0.67542,-0.62166 -0.16152,-0.31363 -0.246491,-0.68794 -0.246491,-1.13662 0,-0.46207 0.0851,-0.88361 0.255799,-1.27519 0.182012,-0.40661 0.42836,-0.74878 0.740521,-1.03143 0.30848,-0.27932 0.661059,-0.46366 1.074351,-0.56236 z m 9.275241,-4.38619 c -0.13643,0.0321 -0.27402,0.072 -0.4129,0.1196 -0.7193,0.24623 -1.39594,0.66419 -2.02726,1.24412 -0.6341,0.58246 -1.15013,1.28495 -1.54513,2.1034 v 0.002 c -0.38903,0.81398 -1.640209,1.42202 -1.640209,2.38569 0,0.83209 1.237589,1.82828 1.612819,2.39344 l 0.002,0.002 v 0.002 c 0.38635,0.5609 0.94921,0.93401 1.64279,1.0993 l 0.002,-1e-5 0.004,1.1e-4 c 0.60879,0.12981 1.32798,-0.002 2.08049,-0.21299 v 0.0822 l 0.3514,-0.11942 c 0.53969,-0.18474 1.06143,-0.44933 1.56424,-0.79263 v -0.002 l 0.002,-1e-5 c 0.49687,-0.34982 0.88903,-0.69251 1.1777,-1.03515 0.31159,-0.35255 0.49816,-0.70949 0.49816,-1.07811 0,-0.26936 -0.12915,-0.52787 -0.34778,-0.67568 -0.22221,-0.15904 -0.51686,-0.17294 -0.79272,-0.0785 -0.20704,0.0709 -0.40603,0.19606 -0.60926,0.36723 l -0.004,0.002 -0.002,0.002 c -0.11805,0.1048 -0.24952,0.23052 -0.39636,0.3752 l 0.002,-0.004 c -0.11482,0.10999 -0.28021,0.2364 -0.4961,0.36916 -0.20195,0.12418 -0.49188,0.25211 -0.86144,0.37861 -0.37504,0.12839 -0.71445,0.15811 -1.03508,0.0996 -0.30173,-0.0701 -0.53807,-0.22154 -0.74053,-0.47648 -0.0591,-0.0828 -0.0515,-0.2635 -0.0935,-0.37283 l 4.79506,-1.64071 c 0.29425,-0.10073 0.55299,-0.28366 0.76532,-0.53328 0.21654,-0.25459 0.34472,-0.55198 0.3576,-0.86498 v -0.006 -0.006 c 0,-0.58909 -0.11538,-1.11967 -0.35191,-1.58165 v -0.002 c -0.22309,-0.4585 -0.53814,-0.83183 -0.93534,-1.10562 -0.39854,-0.28486 -0.86315,-0.45664 -1.37718,-0.51535 -0.38152,-0.0469 -0.77922,-0.0204 -1.18856,0.0759 z m -0.032,2.26303 5.3e-4,-1.2e-4 c 0.20158,-0.0457 0.38509,-0.0506 0.55604,-0.0207 l 0.008,2.3e-4 0.006,0.002 c 0.24372,0.0297 0.42261,0.11094 0.56482,0.24397 l 0.004,0.002 0.002,0.004 c 0.11894,0.10323 0.16496,0.25128 0.19533,0.42593 l -3.35121,1.14805 c 0.10083,-0.29056 0.21723,-0.55515 0.37103,-0.76161 0.17818,-0.23918 0.38495,-0.43624 0.62684,-0.59348 0.24976,-0.16233 0.5192,-0.29167 0.80873,-0.39079 0.0713,-0.0244 0.14055,-0.0443 0.20774,-0.0596 z m -14.123786,0.91961 -0.326081,0.0785 c -0.32258,0.077 -0.6033,0.26196 -0.8108,0.52924 -5.29e-4,6.5e-4 5.3e-4,9.4e-4 0,0.002 -0.125621,0.15602 -0.141049,0.35345 -0.19327,0.53891 -0.02199,-0.0117 -0.0321,-0.0298 -0.0548,-0.0412 -0.301419,-0.15894 -0.650351,-0.2602 -1.044901,-0.30843 -0.408548,-0.0499 -0.8481,-0.0164 -1.316199,0.0954 -0.73388,0.17526 -1.403881,0.5349 -1.999871,1.06678 -0.596048,0.52165 -1.073349,1.16833 -1.42783,1.92972 -0.34654,0.75418 -0.51934,1.57626 -0.51934,2.45654 0,0.8704 0.17316,1.6228 0.531231,2.24226 v 0.004 l 0.0021,0.002 c 0.366509,0.60106 0.875441,1.04081 1.5043,1.2949 l 0.0021,1e-5 0.0021,0.002 c 0.632801,0.2444 1.338929,0.26957 2.091859,0.0898 0.417621,-0.0997 0.805731,-0.25856 1.16014,-0.47611 l 0.0021,2e-5 v -0.002 c 0.354189,-0.22411 0.66449,-0.46438 0.927589,-0.72452 0.0908,-0.0898 0.140682,-0.17452 0.219112,-0.26217 0.0589,0.11605 0.0523,0.26831 0.15399,0.35171 l 0.004,0.002 0.004,0.004 c 0.243321,0.18525 0.565502,0.22718 0.886769,0.15043 0.321263,-0.0767 0.59994,-0.25308 0.808731,-0.51172 l 0.0021,-0.004 0.0021,-0.002 c 0.206039,-0.26737 0.318331,-0.57816 0.318331,-0.90403 v -6.54536 c 0,-0.33405 -0.121491,-0.64261 -0.367421,-0.82981 -0.15384,-0.11712 -0.36335,-0.0868 -0.560171,-0.0957 z m -3.327961,3.04131 c 0.4133,-0.0987 0.74577,-0.0769 1.02526,0.0427 0.286409,0.12254 0.499171,0.31957 0.660419,0.62148 l 0.0021,0.002 v 0.004 c 0.16918,0.29794 0.25994,0.66866 0.25994,1.12889 0,0.44917 -0.0901,0.87154 -0.271298,1.27719 v 0.002 0.004 c -0.171662,0.40339 -0.412401,0.74052 -0.724512,1.02311 -0.30848,0.27932 -0.661048,0.46624 -1.074348,0.56494 -0.40205,0.096 -0.730951,0.0729 -1.01182,-0.0473 -0.28607,-0.12239 -0.502912,-0.32007 -0.67387,-0.61891 -0.161081,-0.30229 -0.248041,-0.67098 -0.248041,-1.12128 0,-0.46139 0.0868,-0.89007 0.25786,-1.29271 2.49e-4,-5.9e-4 -2.49e-4,-0.001 0,-0.002 0.181951,-0.40594 0.426691,-0.74503 0.73846,-1.02734 0.3092,-0.27998 0.65835,-0.46468 1.0604,-0.56071 z m -7.07974,-2.59992 c -1.95498,-0.12212 -2.961793,0.99986 -3.292483,1.19806 -0.64934,0.38519 0.06989,3.73349 -0.301477,4.42163 v 0.002 l -0.0021,-1e-5 c -0.363141,0.68227 -0.541052,1.4706 -0.541052,2.35196 0,0.83965 0.169101,1.61008 0.507982,2.29876 v 0.002 -1.05633 c 0.34985,0.68877 0.849108,1.24402 1.486209,1.65045 l 0.0021,1e-5 0.0021,0.002 c 0.644031,0.39975 1.402631,0.59589 2.25774,0.59589 0.56669,0 1.09677,-0.0631 1.58595,-0.19352 l 0.0021,-0.002 0.0021,2e-5 c 0.49516,-0.13995 0.903751,-0.31828 1.22628,-0.54866 l 0.0021,-0.002 0.0021,-0.002 c 0.329149,-0.24687 0.53898,-0.56753 0.53898,-0.92419 0,-0.29748 -0.0934,-0.57518 -0.279051,-0.78913 -0.19558,-0.23515 -0.496329,-0.35732 -0.820621,-0.35733 -0.26302,10e-6 -0.497099,0.0518 -0.677479,0.19944 -0.0979,0.0801 -0.213299,0.15825 -0.34209,0.23252 -0.092,0.0455 -0.21939,0.0856 -0.38448,0.11308 -0.166089,0.0277 -0.375912,0.0433 -0.62321,0.0433 -0.421081,0 -0.777761,-0.10118 -1.095549,-0.30094 -0.31147,-0.20207 -0.556401,-0.46733 -0.74259,-0.81036 -0.174882,-0.35126 -0.263552,0.30779 -0.263552,-0.15086 0,-0.47127 0.0892,-0.86931 0.263552,-1.20875 l 0.0021,-0.002 c 0.175628,-0.35125 0.41846,-0.62098 0.73846,-0.8227 7.94e-4,-4.4e-4 0.0011,-0.001 0.0021,-0.002 0.323302,-0.19663 0.718722,-0.29885 1.205092,-0.29885 0.0679,0 0.213868,0.0173 0.411859,0.0569 l 0.008,0.002 0.006,1.6e-4 c 0.19802,0.0283 0.33106,0.0755 0.38086,0.10533 l 0.006,0.002 0.004,0.002 c 0.0992,0.0541 0.180491,0.11102 0.245981,0.16833 0.100129,0.0876 0.213839,0.16311 0.335899,0.22417 l 0.01191,0.006 0.0155,0.006 c 0.152191,0.0554 0.320881,0.0782 0.50797,0.0782 0.302451,0 0.58787,-0.13502 0.757579,-0.37544 l 0.0021,-0.004 0.0021,-0.002 c 0.14887,-0.22331 0.230481,-0.4753 0.230481,-0.73452 0,-0.37851 -0.16859,-0.72711 -0.46096,-0.98456 -0.2785,-0.26403 -0.65491,-0.45477 -1.122921,-0.58559 l -0.0021,-1e-5 c -0.46327,-0.13216 -0.997699,-0.19571 -1.603521,-0.1957 l -5.29e-4,1.2e-4 c -0.417431,0 2.924701,-2.66246 2.548252,-2.56357 z m -8.960044,0.84203 c -0.260204,0.0524 -0.514797,0.13085 -0.762747,0.23555 l -0.0021,-5e-5 c -0.489411,0.21134 -2.408337,1.54271 -2.724813,1.93831 -0.327224,0.40904 1.017941,-0.1092 1.017941,0.45596 0,0.48796 0.09587,0.91418 0.300757,1.2637 0.194188,0.33126 0.449953,0.60485 0.761709,0.81269 l 0.0016,0.002 0.0041,0.002 c 0.296624,0.18676 0.618781,0.33949 0.966867,0.45915 l 0.0021,0.002 0.0021,5e-5 c 0.34345,0.11448 0.676585,0.21867 0.999941,0.31255 l 0.0021,4e-5 0.0036,0.002 c 0.302567,0.0807 0.57304,0.165 0.810806,0.25416 l 0.0021,0.002 c 0.235553,0.0848 0.412253,0.18491 0.534853,0.29116 0.0989,0.0857 0.142621,0.1751 0.142621,0.34191 0,0.21975 -0.0534,0.33396 -0.1328,0.40824 -0.10015,0.0924 -0.21345,0.15134 -0.357608,0.18337 -0.168336,0.0277 -0.321424,0.0451 -0.458888,0.0547 -0.46223,-8.3e-4 -0.831862,-0.0777 -1.113109,-0.21835 -0.301498,-0.15075 -0.592936,-0.36472 -0.874883,-0.64667 -0.204281,-0.20426 -0.446817,-0.33466 -0.70745,-0.35178 -0.239626,-0.0247 -0.480075,0.0308 -0.687295,0.16041 l -0.0021,-5e-5 -0.0021,0.002 c -0.302913,0.19386 -1.855467,1.1357 -1.870188,1.45965 -0.01225,0.26945 1.390608,-0.13935 1.534292,0.0618 l 0.0021,0.002 0.0021,0.002 c 0.430468,0.57396 0.984469,0.9871 1.640725,1.22069 l 0.0021,5e-5 0.0021,0.002 c 0.634008,0.21491 1.271456,0.32224 1.909961,0.32225 0.518605,0 0.760754,-0.0439 1.25444,-0.24132 l 0.645123,-0.35991 0.34788,-0.20269 c 0.499948,-0.21109 0.203081,-0.0165 0.539541,-0.42028 0.3488,-0.41856 0.525549,-0.93793 0.525549,-1.51591 0,-0.48595 -0.0885,-0.90328 -0.283188,-1.24395 -0.183002,-0.33083 -0.4274,-0.60606 -0.728642,-0.8146 -0.287919,-0.19934 -0.602419,-0.35975 -0.943089,-0.48063 -0.32608,-0.11571 -0.648086,-0.21601 -0.964803,-0.30046 l 0.0021,0.002 c -0.292724,-0.0808 -0.569812,-0.16153 -0.83199,-0.24207 l -0.0021,-0.002 c -0.230659,-0.0833 -0.403715,-0.18092 -0.525553,-0.28502 -0.100947,-0.0948 -0.148312,-0.19786 -0.148312,-0.37679 0,-0.21202 0.04884,-0.30578 0.107486,-0.3554 l 0.0057,-0.004 0.0041,-0.004 c 0.09994,-0.0923 0.202435,-0.14109 0.329694,-0.16353 l 0.0062,-0.002 0.0057,-0.002 c 0.170482,-0.0378 0.32199,-0.0544 0.453202,-0.0544 0.350684,0 0.64606,0.0601 0.894519,0.17552 l 0.0021,0.002 c 0.265922,0.1192 0.465063,0.27344 0.611333,0.46274 l 0.01339,0.0176 -0.426469,1.37478 c 0.423828,-0.24186 0.90668,-0.62735 1.22315,-0.8372 0.316469,-0.20986 0.415439,-0.30388 0.61776,-0.4657 0.261229,-0.21147 0.42023,-0.50798 0.390679,-0.81831 -0.0244,-0.25628 -0.10635,-0.49328 -0.250119,-0.68932 l -0.0021,-0.002 -0.004,-0.004 c -0.23836,-0.30647 0.04744,-1.81915 -0.30185,-2.00055 -0.313774,-0.83447 -1.061005,-1.53032 -2.06789,-1.16344 -0.368179,-0.0866 -0.311762,1.90209 -0.654296,1.90209 l -5.3e-4,1.2e-4 c -0.269827,0 -0.53561,0.0264 -0.795814,0.0788 z m -9.773047,-4.13142 c -0.23481,0.0466 -0.421443,0.14954 -0.748408,0.34235 -0.326964,0.19281 -1.49834,2.00822 -1.539083,2.33933 l -1.033222,8.39674 c 0.04567,0.31218 -0.02194,0.80012 0.197086,1.03203 l 0.415391,0.59379 0.825681,0.26105 c 0.223052,0.22305 1.068303,0.25875 1.394169,0.25875 0.325866,0 1.357789,-0.32742 1.580841,-0.55046 l 0.0016,-0.003 0.0041,-0.003 c 0.219025,-0.23191 0.33383,-0.53727 0.33383,-0.86315 v -1.50946 l 0.484725,-0.44561 0.999902,2.22389 0.608725,0.44511 c 0.227626,0.25 1.121551,0.35576 1.455175,0.35576 0.276865,0 0.956017,0.0107 1.19592,-0.18119 l 0.0021,4e-5 v -0.002 c 0.267893,-0.21687 1.14963,-1.03829 1.14963,-1.37772 0,-0.32404 -0.858496,-0.122 -1.091236,-0.36788 l -0.0021,-0.002 -2.52336,-2.74821 2.134753,-1.96281 c 0.28516,-0.24951 0.460955,-0.55863 0.460955,-0.89439 0,-0.26898 -0.127164,-0.52306 -0.330214,-0.74999 -0.2149,-0.24019 -1.020597,-2.69941 -1.330707,-2.69941 -0.324917,0 -0.407529,0.75719 -0.52604,0.87569 -0.118511,0.1185 -2.172265,1.42165 -2.172265,1.42165 l -0.515919,3.11532 v -6.1172 c 0,-0.32432 -0.11645,-0.62531 -0.337448,-0.84806 -0.221348,-0.23253 -0.525976,-0.35904 -0.853694,-0.35905 -0.08193,0 -0.162542,0.008 -0.240811,0.0232 z m -9.052679,0.37113 c -0.147468,0.0497 -0.28258,0.13037 -0.396356,0.24033 -0.227304,0.21004 -1.750408,1.01059 -1.68236,1.31206 1.679796,1.14975 -0.266492,6.10739 0.05381,6.27807 0.325261,0.0273 3.088918,0.85408 3.318364,0.64393 l 0.0036,-0.002 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52351 0.343649,-0.84938 v -3.96104 c 0,-0.30299 0.06213,-0.55131 0.181901,-0.76367 0.129622,-0.22143 0.302517,-0.38435 0.536917,-0.50411 0.23631,-0.11478 0.53517,-0.16454 0.91209,-0.13288 0.388876,0.0327 0.661032,0.13282 0.83199,0.27152 0.187174,0.15186 0.306403,0.33438 0.375171,0.57224 l 0.0021,0.006 0.0021,0.004 c 0.08236,0.24485 -2.427774,1.07763 -2.414834,1.39076 0.05612,1.35802 -0.483681,3.08202 0.652002,3.77701 0.249336,0.15258 2.003706,0.26755 2.217585,0.51199 l 0.0021,0.002 0.0021,0.004 c 0.217411,0.23568 0.641096,0.95424 0.966358,0.98157 0.32526,0.0273 0.507448,-0.64457 0.736897,-0.85475 l 0.0036,-0.004 0.0021,-0.002 c 0.224888,-0.21922 0.343648,-0.52196 0.343648,-0.84783 v -3.96102 c 0,-0.66949 -0.08001,-2.34651 -0.241845,-2.91174 -0.156223,-0.5914 -0.45897,-0.0349 -0.898652,-0.4221 -0.44954,-0.40451 -1.086806,-0.62625 -1.886707,-0.69346 l -0.287183,-0.0229 v 0.0512 c -0.268085,0.002 -0.537544,7.9e-4 -0.780831,0.0723 -0.322408,0.0846 -0.617292,0.21119 -0.879017,0.38264 -0.182168,0.11934 -0.328222,0.26307 -0.478522,0.4044 -0.04759,-0.21578 -0.08313,-0.43877 -0.234613,-0.60347 -2.02e-4,-2.1e-4 2.02e-4,-0.002 0,-0.002 -0.215738,-0.24375 -0.511486,-0.39267 -0.837676,-0.42008 l -5.29e-4,-4.1e-4 c -0.163536,-0.0138 -0.323305,0.005 -0.470773,0.0548 z m -4.574197,2.37103 c -0.139697,0.0833 -0.149462,0.0941 -0.525743,0.35633 -0.376281,0.26222 -1.417364,0.94803 -1.278241,1.20906 -0.303144,1.57591 0.926424,5.67035 1.307049,5.68487 0.340289,-0.0582 1.297967,0.01 1.482246,-0.24139 l 1.030677,-0.54915 0.415291,-0.54463 c 0.177413,-0.25796 0.806523,-1.6265 0.727331,-1.92442 l -1.175155,-3.28513 c -0.102081,-0.28537 -0.271104,-0.54594 -0.550511,-0.70583 -0.280998,-0.16873 -0.620166,-0.22995 -0.962384,-0.17139 -0.171113,0.0292 -0.330993,0.0874 -0.470711,0.17062 z m -0.725337,-2.63936 c -0.148251,0.0583 -0.3179,0.12683 -0.563683,0.25871 -0.245782,0.13188 -1.64173,1.42327 -1.303827,1.28085 2.803588,-1.19832 -0.678326,1.8305 1.56704,1.441 0.299693,0.44372 2.072378,-0.926 2.225039,-1.28403 l 0.0049,-0.005 0.0037,-0.003 c 0.221628,-0.21689 0.24657,-0.52689 0.162782,-0.84209 l -0.07119,-0.26779 c -0.08091,-0.30438 -0.243875,-0.55397 -0.516276,-0.67271 -0.270745,-0.11804 -0.597633,-0.10853 -1.004059,-0.039 -0.187581,0.0321 -0.356223,0.0746 -0.504543,0.13266 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.272321;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path2011-5-7" /> + <path + sodipodi:nodetypes="czccccccccccc" + inkscape:connector-curvature="0" + id="path2027" + d="m 47.199991,187.96019 c -0.148251,0.0583 -0.3179,0.12683 -0.563683,0.25871 -0.245782,0.13188 -1.64173,1.42327 -1.303827,1.28085 0.881898,0.64975 1.140416,0.5208 1.56704,1.441 0.299693,0.44372 2.072378,-0.926 2.225039,-1.28403 l 0.0049,-0.005 0.0037,-0.003 c 0.221626,-0.21689 0.246568,-0.52689 0.16278,-0.84209 l -0.07119,-0.26779 c -0.08091,-0.30438 -0.243875,-0.55397 -0.516276,-0.67271 -0.270745,-0.11804 -0.597633,-0.10853 -1.004059,-0.039 -0.187581,0.0321 -0.356223,0.0746 -0.504543,0.13266 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1666);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + sodipodi:nodetypes="cccccccccccccsscccscccccscccccccccccccsccccccccscccccccccscccccccccccccsccccccccccccccccscccccccccccccccccccccccccccccccscccccccccccccccccccssccccccccscccccccsccccccccccsccccccsccccccscccccsccsccccsccccccccccscccscccccccccccscccccccccccccscccccccccccccccccccccsccccccccsccccccscccccccccccccccccccsccccscccsccccscccsccccscssccscccccccccccsscccccccsscccccccssccccccccccccccccccccccsccccccccccccccccc" + inkscape:connector-curvature="0" + d="m 96.936309,192.44966 -0.20308,0.0493 v 0.0351 c -0.31299,0.0947 -0.62176,0.20352 -0.91003,0.38046 l -0.002,0.002 c -0.33499,0.20967 -0.63435,0.44937 -0.89658,0.71895 -8e-4,7.1e-4 -5.3e-4,9.1e-4 -0.002,0.002 -5.3e-4,6.5e-4 -10e-4,9.9e-4 -0.002,0.002 -0.11316,0.11211 -0.17938,0.223 -0.27337,0.33405 -0.0608,-0.13562 -0.0611,-0.30556 -0.17932,-0.39654 -0.24093,-0.1947 -0.56662,-0.24707 -0.88883,-0.1701 -0.32259,0.077 -0.60331,0.26196 -0.81081,0.52925 -5.2e-4,6.5e-4 5.3e-4,9.3e-4 0,0.002 -0.20801,0.25834 -0.31987,0.5652 -0.31987,0.89043 v 9.48676 c 0,0.33405 0.12097,0.64067 0.3669,0.82787 0.24332,0.18523 0.5655,0.22717 0.88677,0.15043 0.32348,-0.0773 0.60313,-0.26283 0.8108,-0.53132 0.20697,-0.25793 0.31988,-0.56604 0.31988,-0.89043 v -2.55643 c 0.30606,0.15198 0.65031,0.25167 1.03146,0.30221 0.39751,0.0527 0.81882,0.0249 1.2578,-0.0799 0.743229,-0.17748 1.414779,-0.53199 2.001948,-1.05279 0.59465,-0.53123 1.065993,-1.17442 1.410223,-1.92362 0.35689,-0.76656 0.006,-2.00297 0.006,-2.88433 0,-0.87973 0.35236,-1.22416 -0.0176,-1.83255 l -0.002,-0.002 c -0.35517,-0.6022 -0.858833,-1.03903 -1.486193,-1.28303 -5.3e-4,-1.4e-4 -0.002,2.6e-4 -0.002,-1e-5 -0.624759,-0.25922 -1.332369,-0.29189 -2.095468,-0.10966 z m -0.10903,2.27347 c 0.41329,-0.0987 0.738839,-0.0767 1.005619,0.043 l 0.002,5e-5 0.002,0.002 c 0.28641,0.12254 0.49865,0.31917 0.65991,0.62108 l 0.004,0.004 0.002,0.006 c 0.16727,0.2858 0.25786,0.65106 0.25786,1.11128 0,0.44918 -0.0898,0.87776 -0.27181,1.29488 l -0.002,-5e-5 v 0.002 c -0.17166,0.40338 -0.41034,0.74106 -0.72244,1.02366 l -0.002,0.002 c -0.29718,0.27528 -0.645549,0.45959 -1.058849,0.55829 -0.41331,0.0987 -0.74578,0.079 -1.02526,-0.0406 -0.28608,-0.12239 -0.50446,-0.32282 -0.67542,-0.62166 -0.16152,-0.31363 -0.24649,-0.68794 -0.24649,-1.13662 0,-0.46207 0.0851,-0.88361 0.2558,-1.27519 0.18201,-0.40661 0.42836,-0.74878 0.74052,-1.03143 0.30848,-0.27932 0.66106,-0.46366 1.07435,-0.56236 z m 9.275241,-4.38619 c -0.13643,0.0321 -0.27402,0.072 -0.4129,0.1196 -0.7193,0.24623 -1.39594,0.66419 -2.02726,1.24412 -0.6341,0.58246 -1.15013,1.28495 -1.54513,2.1034 v 0.002 c -0.38903,0.81398 -1.64021,1.42202 -1.64021,2.38569 0,0.83209 1.23759,1.82828 1.61282,2.39344 l 0.002,0.002 v 0.002 c 0.38635,0.5609 0.94921,0.93401 1.64279,1.0993 l 0.002,2e-5 0.004,1.1e-4 c 0.60879,0.12981 1.32798,-0.002 2.08049,-0.21299 v 0.0822 l 0.3514,-0.11942 c 0.53969,-0.18474 1.06143,-0.44933 1.56424,-0.79263 v -0.002 l 0.002,2e-5 c 0.49687,-0.34982 0.88903,-0.69251 1.1777,-1.03515 0.31159,-0.35255 0.49816,-0.70949 0.49816,-1.07811 0,-0.26936 -0.12915,-0.52787 -0.34778,-0.67568 -0.22221,-0.15904 -0.51686,-0.17294 -0.79272,-0.0785 -0.20704,0.0709 -0.40603,0.19606 -0.60926,0.36723 l -0.004,0.002 -0.002,0.002 c -0.11805,0.1048 -0.24952,0.23052 -0.39636,0.3752 l 0.002,-0.004 c -0.11482,0.10999 -0.28021,0.2364 -0.4961,0.36916 -0.20195,0.12418 -0.49188,0.25211 -0.86144,0.37861 -0.37504,0.12839 -0.71445,0.15811 -1.03508,0.0996 -0.30173,-0.0701 -0.53807,-0.22154 -0.74053,-0.47648 -0.0591,-0.0828 -0.0515,-0.2635 -0.0935,-0.37283 l 4.79506,-1.64071 c 0.29425,-0.10073 0.55299,-0.28366 0.76532,-0.53328 0.21654,-0.25459 0.34472,-0.55198 0.3576,-0.86498 v -0.006 -0.006 c 0,-0.58909 -0.11538,-1.11967 -0.35191,-1.58165 v -0.002 c -0.22309,-0.4585 -0.53814,-0.83183 -0.93534,-1.10562 -0.39854,-0.28486 -0.86315,-0.45664 -1.37718,-0.51535 -0.38152,-0.0469 -0.77922,-0.0204 -1.18856,0.0759 z m -0.032,2.26303 5.3e-4,-1.2e-4 c 0.20158,-0.0457 0.38509,-0.0506 0.55604,-0.0207 l 0.008,2.3e-4 0.006,0.002 c 0.24372,0.0297 0.42261,0.11094 0.56482,0.24397 l 0.004,0.002 0.002,0.004 c 0.11894,0.10323 0.16496,0.25128 0.19533,0.42593 l -3.35121,1.14805 c 0.10083,-0.29056 0.21723,-0.55515 0.37103,-0.76161 0.17818,-0.23918 0.38495,-0.43624 0.62684,-0.59348 0.24976,-0.16233 0.5192,-0.29167 0.80873,-0.39079 0.0713,-0.0244 0.14055,-0.0443 0.20774,-0.0596 z m -14.123788,0.91961 -0.32608,0.0785 c -0.32258,0.077 -0.6033,0.26196 -0.8108,0.52924 -5.3e-4,6.5e-4 5.3e-4,9.4e-4 0,0.002 -0.12562,0.15602 -0.14105,0.35345 -0.19327,0.53891 -0.022,-0.0117 -0.0321,-0.0298 -0.0548,-0.0412 -0.30142,-0.15894 -0.65035,-0.2602 -1.0449,-0.30843 -0.40855,-0.0499 -0.8481,-0.0164 -1.3162,0.0954 -0.73388,0.17526 -1.40388,0.5349 -1.99987,1.06678 -0.59605,0.52165 -1.07335,1.16833 -1.42783,1.92972 -0.34654,0.75418 -0.51934,1.57626 -0.51934,2.45654 0,0.8704 0.17316,1.6228 0.53123,2.24226 v 0.004 l 0.002,0.002 c 0.36651,0.60106 0.87544,1.04081 1.5043,1.2949 l 0.002,5e-5 0.002,0.002 c 0.6328,0.2444 1.33893,0.26957 2.09186,0.0898 0.41762,-0.0997 0.80573,-0.25856 1.16014,-0.47611 l 0.002,4e-5 v -0.002 c 0.35419,-0.22411 0.66449,-0.46438 0.92759,-0.72452 0.0908,-0.0898 0.14068,-0.17452 0.21911,-0.26217 0.0589,0.11605 0.0523,0.26831 0.15399,0.35171 l 0.004,0.002 0.004,0.004 c 0.24332,0.18525 0.5655,0.22718 0.88677,0.15043 0.32126,-0.0767 0.59994,-0.25308 0.80873,-0.51172 l 0.002,-0.004 0.002,-0.002 c 0.20604,-0.26737 0.31833,-0.57816 0.31833,-0.90403 v -6.54535 c 0,-0.33405 -0.12149,-0.64261 -0.36742,-0.82981 -0.15384,-0.11712 -0.36335,-0.0868 -0.56017,-0.0957 z m -3.32796,3.04131 c 0.4133,-0.0987 0.74577,-0.0769 1.02526,0.0427 0.28641,0.12254 0.49917,0.31957 0.66042,0.62148 l 0.002,0.002 v 0.004 c 0.16918,0.29794 0.25994,0.66866 0.25994,1.12889 0,0.44917 -0.0901,0.87154 -0.2713,1.27719 v 0.002 0.004 c -0.17166,0.40339 -0.4124,0.74052 -0.72451,1.02311 -0.30848,0.27932 -0.66105,0.46624 -1.07435,0.56494 -0.40205,0.096 -0.73095,0.0729 -1.01182,-0.0473 -0.28607,-0.12239 -0.50291,-0.32007 -0.67387,-0.61891 -0.16108,-0.30229 -0.24804,-0.67098 -0.24804,-1.12128 0,-0.46139 0.0868,-0.89007 0.25786,-1.29271 2.5e-4,-5.9e-4 -2.5e-4,-0.001 0,-0.002 0.18195,-0.40594 0.42669,-0.74503 0.73846,-1.02734 0.3092,-0.27998 0.65835,-0.46468 1.0604,-0.56071 z m -7.079739,-2.59992 c -1.954981,-0.12212 -2.961793,0.99986 -3.292483,1.19806 -0.64934,0.38519 0.06989,3.73349 -0.301478,4.42163 v 0.002 l -0.002,-4e-5 c -0.36314,0.68227 -0.54105,1.4706 -0.54105,2.35196 0,0.83965 0.1691,1.61008 0.50798,2.29876 v 0.002 -1.05633 c 0.34985,0.68877 0.84911,1.24402 1.48621,1.65045 l 0.002,5e-5 0.002,0.002 c 0.64403,0.39975 1.40263,0.59589 2.25774,0.59589 0.56669,0 1.09677,-0.0631 1.58595,-0.19352 l 0.002,-0.002 0.002,5e-5 c 0.49516,-0.13994 0.90375,-0.31828 1.22628,-0.54866 l 0.002,-0.002 0.002,-0.002 c 0.32915,-0.24687 0.53898,-0.56753 0.53898,-0.92419 0,-0.29748 -0.0934,-0.57518 -0.27905,-0.78913 -0.19558,-0.23515 -0.49633,-0.35732 -0.82062,-0.35733 -0.26302,1e-5 -0.4971,0.0518 -0.67748,0.19944 -0.0979,0.0801 -0.2133,0.15825 -0.34209,0.23252 -0.092,0.0455 -0.21939,0.0856 -0.38448,0.11308 -0.16609,0.0277 -0.37591,0.0433 -0.62321,0.0433 -0.42108,0 -0.77776,-0.10118 -1.09555,-0.30094 -0.31147,-0.20207 -0.5564,-0.46733 -0.74259,-0.81036 -0.17488,-0.35126 -0.26355,0.30779 -0.26355,-0.15086 0,-0.47127 0.0892,-0.86931 0.26355,-1.20875 l 0.002,-0.002 c 0.17563,-0.35125 0.41846,-0.62098 0.73846,-0.8227 7.9e-4,-4.4e-4 0.001,-0.001 0.002,-0.002 0.3233,-0.19663 0.71872,-0.29885 1.20509,-0.29885 0.0679,0 0.21387,0.0173 0.41186,0.0569 l 0.008,0.002 0.006,1.7e-4 c 0.19802,0.0283 0.33106,0.0755 0.38086,0.10533 l 0.006,0.002 0.004,0.002 c 0.0992,0.0541 0.18049,0.11102 0.24598,0.16833 0.10013,0.0876 0.21384,0.16311 0.3359,0.22417 l 0.0119,0.006 0.0155,0.006 c 0.15219,0.0554 0.32088,0.0782 0.50797,0.0782 0.30245,0 0.58787,-0.13502 0.75758,-0.37544 l 0.002,-0.004 0.002,-0.002 c 0.14887,-0.22331 0.23048,-0.4753 0.23048,-0.73452 0,-0.37851 -0.16859,-0.72711 -0.46096,-0.98456 -0.2785,-0.26403 -0.65491,-0.45477 -1.12292,-0.58559 l -0.002,-4e-5 c -0.46327,-0.13215 -0.9977,-0.1957 -1.60352,-0.1957 l -5.3e-4,1.2e-4 c -0.41743,0 2.924702,-2.66246 2.548252,-2.56357 z m -8.960045,0.84203 c -0.260204,0.0524 -0.514797,0.13085 -0.762746,0.23555 l -0.0021,-5e-5 c -0.489411,0.21134 -2.408337,1.54271 -2.724813,1.93831 -0.327224,0.40904 1.017941,-0.1092 1.017941,0.45596 0,0.48796 0.09587,0.91418 0.300757,1.2637 0.194188,0.33126 0.449953,0.60485 0.761709,0.81269 l 0.0016,0.002 0.0041,0.002 c 0.296624,0.18676 0.618781,0.33949 0.966867,0.45915 l 0.0021,0.002 0.0021,5e-5 c 0.34345,0.11448 0.676585,0.21867 0.999941,0.31255 l 0.0021,5e-5 0.0036,0.002 c 0.302567,0.0807 0.57304,0.165 0.810805,0.25416 l 0.0021,0.002 c 0.235553,0.0848 0.412253,0.18491 0.534853,0.29116 0.0989,0.0857 0.14262,0.1751 0.14262,0.34191 0,0.21975 -0.0534,0.33396 -0.1328,0.40825 -0.10015,0.0924 -0.21345,0.15133 -0.357608,0.18337 -0.168336,0.0277 -0.321423,0.0451 -0.458888,0.0547 -0.462229,-8.4e-4 -0.831861,-0.0777 -1.113108,-0.21836 -0.301498,-0.15075 -0.592936,-0.36472 -0.874883,-0.64667 -0.204281,-0.20426 -0.446817,-0.33466 -0.70745,-0.35178 -0.239626,-0.0247 -0.480075,0.0308 -0.687295,0.16041 l -0.0021,-5e-5 -0.0021,0.002 c -0.302913,0.19386 -1.855467,1.1357 -1.870188,1.45965 -0.01225,0.26945 1.390608,-0.13935 1.534292,0.0618 l 0.0021,0.002 0.0021,0.002 c 0.430468,0.57396 0.984469,0.9871 1.640725,1.22069 l 0.0021,5e-5 0.0021,0.002 c 0.634008,0.21491 1.271455,0.32224 1.909961,0.32225 0.518602,0 0.760753,-0.0439 1.254439,-0.24132 l 0.645123,-0.35991 0.347878,-0.20269 c 0.499951,-0.21109 0.203082,-0.0165 0.539542,-0.42028 0.3488,-0.41856 0.52555,-0.93793 0.52555,-1.51591 0,-0.48595 -0.0885,-0.90328 -0.28319,-1.24395 -0.183,-0.33083 -0.4274,-0.60606 -0.72864,-0.8146 -0.28792,-0.19934 -0.60242,-0.35975 -0.94309,-0.48063 -0.32608,-0.11571 -0.648086,-0.21601 -0.964801,-0.30046 l 0.0021,0.002 c -0.292724,-0.0808 -0.569812,-0.16153 -0.83199,-0.24207 l -0.0021,-0.002 c -0.230657,-0.0833 -0.403713,-0.18092 -0.525551,-0.28502 -0.100947,-0.0948 -0.148312,-0.19786 -0.148312,-0.37679 0,-0.21202 0.04884,-0.30578 0.107486,-0.3554 l 0.0057,-0.004 0.0041,-0.004 c 0.09994,-0.0923 0.202435,-0.14109 0.329694,-0.16353 l 0.0062,-0.002 0.0057,-0.002 c 0.170481,-0.0378 0.32199,-0.0544 0.453202,-0.0544 0.350684,0 0.646059,0.0601 0.894519,0.17552 l 0.0021,0.002 c 0.265923,0.1192 0.465063,0.27344 0.611333,0.46274 l 0.0134,0.0176 -0.42647,1.37478 c 0.42383,-0.24186 0.90668,-0.62735 1.22315,-0.8372 0.31647,-0.20986 0.41544,-0.30388 0.61776,-0.4657 0.26123,-0.21147 0.42023,-0.50798 0.39068,-0.81831 -0.0244,-0.25628 -0.10635,-0.49328 -0.25012,-0.68932 l -0.002,-0.002 -0.004,-0.004 c -0.23836,-0.30647 0.04744,-1.81915 -0.30185,-2.00055 -0.313774,-0.83447 -1.061007,-1.53032 -2.067891,-1.16344 -0.368177,-0.0866 -0.311761,1.90209 -0.654296,1.90209 l -5.29e-4,1.2e-4 c -0.269827,0 -0.535611,0.0264 -0.795815,0.0788 z m -9.773046,-4.13142 c -0.23481,0.0466 -0.421443,0.14954 -0.748408,0.34235 -0.326964,0.19281 -1.49834,2.00822 -1.539083,2.33933 L 59.485229,201.75 c 0.04567,0.31218 -0.02194,0.80012 0.197086,1.03203 l 0.415391,0.59379 0.825681,0.26105 c 0.223052,0.22305 1.068303,0.25875 1.394169,0.25875 0.325866,0 1.357789,-0.32742 1.580841,-0.55046 l 0.0016,-0.003 0.0041,-0.003 c 0.219025,-0.23191 0.33383,-0.53727 0.33383,-0.86315 v -1.50947 l 0.484725,-0.44561 0.999901,2.22389 0.608725,0.44511 c 0.227626,0.25 1.121551,0.35576 1.455175,0.35576 0.276865,0 0.956017,0.0107 1.19592,-0.1812 l 0.0021,5e-5 v -0.002 c 0.267893,-0.21687 1.14963,-1.03829 1.14963,-1.37772 0,-0.32404 -0.858496,-0.122 -1.091236,-0.36788 l -0.0021,-0.002 -2.52336,-2.74821 2.134753,-1.96281 c 0.28516,-0.24951 0.460955,-0.55863 0.460955,-0.89439 0,-0.26898 -0.127164,-0.52306 -0.330214,-0.74999 -0.2149,-0.24019 -1.020597,-2.69941 -1.330707,-2.69941 -0.324917,0 -0.407529,0.75719 -0.52604,0.87569 -0.118511,0.1185 -2.172264,1.42165 -2.172264,1.42165 l -0.51593,3.11531 v -6.1172 c 0,-0.32432 -0.116451,-0.62531 -0.337449,-0.84806 -0.221348,-0.23253 -0.525976,-0.35904 -0.853694,-0.35905 -0.08193,0 -0.162542,0.008 -0.240811,0.0232 z m -9.052679,0.37113 c -0.147468,0.0497 -0.28258,0.13037 -0.396356,0.24033 -0.227304,0.21004 -1.750408,1.01059 -1.68236,1.31206 1.679796,1.14975 -0.266492,6.10739 0.05381,6.27807 0.325261,0.0273 3.088918,0.85408 3.318364,0.64393 l 0.0036,-0.002 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52351 0.343649,-0.84938 v -3.96102 c 0,-0.30299 0.06213,-0.55131 0.181901,-0.76367 0.129622,-0.22143 0.302517,-0.38435 0.536917,-0.50411 0.23631,-0.11478 0.53517,-0.16454 0.91209,-0.13288 0.388876,0.0327 0.661032,0.13282 0.83199,0.27152 0.187174,0.15186 0.306403,0.33438 0.375171,0.57224 l 0.0021,0.006 0.0021,0.004 c 0.08236,0.24485 -2.427774,1.07763 -2.414834,1.39076 0.05612,1.35802 -0.483681,3.08202 0.652002,3.77701 0.249336,0.15258 2.003706,0.26755 2.217585,0.51199 l 0.0021,0.002 0.0021,0.004 c 0.217411,0.23568 0.641096,0.95424 0.966358,0.98157 0.32526,0.0273 0.507448,-0.64457 0.736897,-0.85475 l 0.0036,-0.004 0.0021,-0.002 c 0.224888,-0.21922 0.343648,-0.52196 0.343648,-0.84783 v -3.96101 c 0,-0.66949 -0.08001,-2.34651 -0.241845,-2.91174 -0.156223,-0.5914 -0.45897,-0.0349 -0.898652,-0.4221 -0.44954,-0.40451 -1.086806,-0.62625 -1.886707,-0.69346 l -0.28724,-0.0229 v 0.0512 c -0.268084,0.002 -0.537543,7.9e-4 -0.78083,0.0723 -0.322408,0.0846 -0.617292,0.21119 -0.879018,0.38264 -0.182168,0.11934 -0.328221,0.26307 -0.478522,0.4044 -0.04759,-0.21578 -0.08313,-0.43877 -0.234612,-0.60347 -2.03e-4,-2.1e-4 2.01e-4,-0.002 0,-0.002 -0.215738,-0.24375 -0.511487,-0.39267 -0.837676,-0.42008 l -5.29e-4,-4.1e-4 c -0.163536,-0.0138 -0.323305,0.005 -0.470773,0.0548 z m -4.574197,2.37103 c -0.139697,0.0833 -0.149462,0.0941 -0.525743,0.35633 -0.376281,0.26222 -1.417364,0.94803 -1.278241,1.20906 -0.303144,1.57591 0.926424,5.67035 1.307049,5.68487 0.340289,-0.0582 1.297967,0.01 1.482246,-0.24139 l 1.030677,-0.54915 0.415291,-0.54463 c 0.177413,-0.25796 0.806523,-1.6265 0.727331,-1.92442 l -1.175155,-3.28513 c -0.102081,-0.28537 -0.271104,-0.54594 -0.550511,-0.70583 -0.280998,-0.16873 -0.620166,-0.22995 -0.962384,-0.17139 -0.171113,0.0292 -0.330993,0.0874 -0.470711,0.17062 z m -0.725337,-2.63936 c -0.148251,0.0583 -0.3179,0.12683 -0.563683,0.25871 -0.245782,0.13188 -1.64173,1.42327 -1.303827,1.28085 2.803588,-1.19832 -0.678326,1.8305 1.56704,1.441 0.299693,0.44372 2.072378,-0.926 2.225039,-1.28403 l 0.0049,-0.005 0.0037,-0.003 c 0.221627,-0.21689 0.246569,-0.52689 0.162781,-0.84209 l -0.07119,-0.26779 c -0.08091,-0.30438 -0.243875,-0.55397 -0.516276,-0.67271 -0.270745,-0.11804 -0.597633,-0.10853 -1.004059,-0.039 -0.187581,0.0321 -0.356223,0.0746 -0.504543,0.13266 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.272321;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path2011-5" /> + <path + sodipodi:nodetypes="czccccccccccc" + inkscape:connector-curvature="0" + id="path2025" + d="m 47.925328,190.59955 c -0.139697,0.0833 -0.149462,0.0941 -0.525743,0.35633 -0.376281,0.26222 -1.417364,0.94803 -1.278241,1.20906 1.950382,0.59237 2.919114,7.35304 3.194423,7.41353 0.340289,-0.0582 1.812706,-1.3097 1.996985,-1.5606 l 0.0012,-0.004 0.0035,-0.004 c 0.177413,-0.25796 0.223153,-0.56605 0.143961,-0.86397 l -1.552639,-5.8408 c -0.07904,-0.29734 -0.271104,-0.54594 -0.550511,-0.70583 -0.280998,-0.16873 -0.620166,-0.22995 -0.962384,-0.17139 -0.171113,0.0292 -0.330993,0.0874 -0.470711,0.17062 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1658);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path2023" + d="m 52.499525,188.22852 c -0.147468,0.0497 -0.28258,0.13037 -0.396356,0.24033 -0.227304,0.21004 -1.750408,1.01059 -1.68236,1.31206 1.679796,1.14975 0.900248,8.17305 1.220553,8.34373 0.325261,0.0273 1.922178,-1.21158 2.151624,-1.42173 l 0.0036,-0.002 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52351 0.343649,-0.84938 v -3.961 c 0,-0.30299 0.06213,-0.55131 0.181901,-0.76367 0.129622,-0.22143 0.302517,-0.38435 0.536917,-0.50411 0.23631,-0.11478 0.53517,-0.16454 0.91209,-0.13288 0.388876,0.0327 0.661032,0.13282 0.83199,0.27152 0.187174,0.15186 0.306403,0.33438 0.375171,0.57224 l 0.0021,0.006 0.0021,0.004 c 0.08236,0.24485 0.124542,0.5258 0.124542,0.84217 v 3.96099 c 0,0.32587 0.116332,0.63216 0.330211,0.8766 l 0.0021,0.002 0.0021,0.004 c 0.217411,0.23568 -0.697224,1.50166 -0.371962,1.52899 0.325261,0.0273 1.845768,-1.19199 2.075217,-1.40217 l 0.0036,-0.004 0.0021,-0.002 c 0.224888,-0.21922 0.343648,-0.52196 0.343648,-0.84783 v -3.961 c 0,-0.66949 -0.08001,-1.28818 -0.241845,-1.85341 -0.156223,-0.5914 -0.45897,-1.09327 -0.898652,-1.48043 -0.44954,-0.40451 -1.086805,-0.62625 -1.886707,-0.69346 l -0.287297,-0.0229 v 0.0512 c -0.268084,0.002 -0.537543,7.9e-4 -0.78083,0.0723 -0.322408,0.0846 -0.617292,0.21119 -0.879018,0.38264 -0.182168,0.11934 -0.328221,0.26307 -0.478522,0.4044 -0.04759,-0.21578 -0.08313,-0.43877 -0.234612,-0.60347 -2.03e-4,-2.1e-4 2.01e-4,-0.002 0,-0.002 -0.215738,-0.24375 -0.511487,-0.39267 -0.837676,-0.42008 l -5.29e-4,-4.1e-4 c -0.163536,-0.0138 -0.323305,0.005 -0.470773,0.0548 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1682);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path2021" + d="m 61.552204,188.91572 c -0.23481,0.0466 -0.421443,0.14954 -0.748408,0.34235 -0.326964,0.19281 -1.584533,0.97031 -1.539083,1.281 l 1.334575,9.12291 c 0.04567,0.31218 0.115321,0.63134 0.334349,0.86325 l 0.0036,0.002 0.0021,0.004 c 0.223052,0.22305 -0.784755,1.47338 -0.458889,1.47338 0.325866,0 1.941159,-1.2506 2.164211,-1.47364 l 0.0016,-0.003 0.0041,-0.003 c 0.219025,-0.23191 0.33383,-0.53727 0.33383,-0.86315 v -1.50947 l 0.484725,-0.44561 2.601391,2.75408 0.0021,0.002 c 0.227626,0.25 -0.771119,1.51816 -0.437495,1.51816 0.276865,0 1.853822,-1.23875 2.093725,-1.43068 l 0.0021,5e-5 v -0.002 c 0.267893,-0.21687 0.42168,-0.53148 0.42168,-0.87091 0,-0.32404 -0.130546,-0.62881 -0.363286,-0.87469 l -0.0021,-0.002 -2.52336,-2.74821 2.134753,-1.96281 c 0.28516,-0.24951 0.460955,-0.55863 0.460955,-0.89439 0,-0.26898 -0.127164,-0.52306 -0.330214,-0.74999 -0.2149,-0.24019 -0.505859,-0.38114 -0.815969,-0.38114 -0.324917,0 -0.750688,0.25259 -0.869199,0.37109 -0.118511,0.1185 -1.520262,1.06609 -1.520262,1.06609 l -1.339511,1.6572 v -5.0589 c 0,-0.32432 -0.116451,-0.62531 -0.337449,-0.84806 -0.221348,-0.23253 -0.525976,-0.35904 -0.853694,-0.35905 -0.08193,0 -0.162542,0.008 -0.240811,0.0232 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1696);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path2019" + d="m 71.32525,191.98881 c -0.260204,0.0524 -0.514797,0.13085 -0.762746,0.23555 l -0.0021,-4e-5 c -0.489411,0.21134 -2.408337,1.54271 -2.724813,1.93831 -0.327224,0.40904 1.017941,-0.1092 1.017941,0.45596 0,0.48796 0.09587,0.91418 0.300757,1.2637 0.194188,0.33126 0.449953,0.60485 0.761709,0.81269 l 0.0016,0.002 0.0041,0.002 c 0.296624,0.18676 0.618781,0.33949 0.966867,0.45915 l 0.0021,0.002 0.0021,4e-5 c 0.34345,0.11448 0.676585,0.21867 0.99994,0.31255 l 0.0021,5e-5 0.0036,0.002 c 0.302567,0.0807 0.57304,0.165 0.810805,0.25416 l 0.0021,0.002 c 0.235553,0.0848 0.412258,0.18491 0.53485,0.29116 0.09891,0.0857 0.142626,0.1751 0.142626,0.34191 0,0.21975 -0.05342,0.33396 -0.132807,0.40825 -0.100145,0.0924 -0.213448,0.15133 -0.357601,0.18337 -0.168338,0.0277 -0.321426,0.0451 -0.458888,0.0547 -0.46223,-8.4e-4 -0.831863,-0.0777 -1.11311,-0.21836 -0.301498,-0.15075 -0.592936,-0.36472 -0.874882,-0.64667 -0.204282,-0.20426 -0.446817,-0.33466 -0.70745,-0.35178 -0.239626,-0.0247 -0.480076,0.0308 -0.687295,0.16041 l -0.0021,-4e-5 -0.0021,0.002 c -0.302913,0.19386 -1.855467,1.1357 -1.870188,1.45965 -0.01225,0.26945 1.390608,-0.13935 1.534292,0.0618 l 0.0021,0.002 0.0021,0.002 c 0.430469,0.57396 0.98447,0.9871 1.640726,1.22069 l 0.0021,5e-5 0.0021,0.002 c 0.634008,0.21491 1.271455,0.32224 1.909961,0.32225 0.518601,0 -1.24111,0.60368 -0.747424,0.40626 l 0.572328,0.0875 0.08703,0.36675 c 0.499949,-0.21109 2.538585,-1.68097 2.875045,-2.08471 0.348801,-0.41856 0.525548,-0.93793 0.525548,-1.51591 0,-0.48595 -0.08852,-0.90328 -0.283187,-1.24395 -0.182999,-0.33083 -0.427405,-0.60606 -0.728636,-0.8146 -0.287927,-0.19934 -0.602422,-0.35975 -0.943096,-0.48063 -0.326078,-0.11571 -0.648084,-0.21601 -0.964798,-0.30046 l 0.0021,0.002 c -0.292724,-0.0808 -0.569812,-0.16153 -0.83199,-0.24207 l -0.0021,-0.002 c -0.230656,-0.0833 -0.403712,-0.18092 -0.52555,-0.28502 -0.100947,-0.0948 -0.148312,-0.19786 -0.148312,-0.37679 0,-0.21202 0.04884,-0.30578 0.107486,-0.3554 l 0.0057,-0.004 0.0041,-0.004 c 0.09994,-0.0923 0.202435,-0.14109 0.329694,-0.16353 l 0.0062,-0.002 0.0057,-0.002 c 0.170482,-0.0378 0.32199,-0.0544 0.453202,-0.0544 0.350684,0 0.64606,0.0601 0.894519,0.17552 l 0.0021,0.002 c 0.265922,0.1192 0.465061,0.27344 0.611333,0.46274 l 0.01344,0.0176 -0.426469,1.37478 c 0.423822,-0.24186 0.906683,-0.62735 1.223148,-0.8372 0.316465,-0.20986 0.415436,-0.30388 0.617761,-0.4657 0.261231,-0.21147 0.420232,-0.50798 0.390673,-0.81831 -0.02442,-0.25628 -0.106344,-0.49328 -0.250113,-0.68932 l -0.0021,-0.002 -0.0036,-0.004 c -0.238358,-0.30647 -0.535932,-0.55281 -0.885219,-0.73421 -5.29e-4,-4.1e-4 -0.0011,1.6e-4 -0.0016,-1.7e-4 -0.339247,-0.18583 -0.697569,-0.3189 -1.070735,-0.39655 -0.368175,-0.0866 -0.723548,-0.13097 -1.066085,-0.13097 l -5.3e-4,1.2e-4 c -0.269827,0 -0.535612,0.0264 -0.795816,0.0788 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1704);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + sodipodi:nodetypes="cccccsccccccsccccccscccccsccsccccsccccccccccscccsccccccc" + inkscape:connector-curvature="0" + id="path2017" + d="m 79.290137,194.70386 c -0.376449,0.0989 -0.731268,0.24763 -1.06195,0.44583 -0.649343,0.38519 -1.251269,0.70812 -2.1717,1.59093 l 0.137264,0.19354 -0.08789,0.36281 c -0.363138,0.68227 0.04232,0.94206 0.04232,1.82342 0,0.83965 0.169103,1.61008 0.507979,2.29876 v 0.002 0.002 c 0.349853,0.68877 0.849116,1.24402 1.486214,1.65045 l 0.0021,4e-5 0.0021,0.002 c 0.644027,0.39975 1.402633,0.59589 2.257742,0.59589 0.566688,0 0.564871,-0.33564 1.054054,-0.46606 l -0.152322,0.47956 -0.08369,0.63742 c 0.495163,-0.13994 1.675856,-1.16468 1.998391,-1.39506 l 0.0021,-0.002 0.0021,-0.002 c 0.329147,-0.24687 0.538983,-0.56753 0.538983,-0.92419 0,-0.29748 -0.09339,-0.57518 -0.279051,-0.78913 -0.195588,-0.23515 -0.496334,-0.35732 -0.820621,-0.35733 -0.263019,10e-6 -0.497102,0.0518 -0.677479,0.19944 -0.09794,0.0801 -0.213301,0.15825 -0.342098,0.23252 -0.09204,0.0455 -0.219382,0.0856 -0.384474,0.11308 -0.166092,0.0277 -0.375909,0.0433 -0.623215,0.0433 -0.421079,0 -0.777756,-0.10118 -1.095542,-0.30094 -0.311478,-0.20207 -0.556406,-0.46733 -0.74259,-0.81036 -0.174879,-0.35126 -0.263549,-0.75054 -0.263549,-1.20919 0,-0.47127 0.08924,-0.86931 0.263549,-1.20875 l 0.0021,-0.002 c 0.175627,-0.35125 0.418454,-0.62098 0.738457,-0.8227 7.94e-4,-4.4e-4 0.0013,-0.001 0.0021,-0.002 0.323305,-0.19663 0.718722,-0.29885 1.205095,-0.29885 0.06787,0 0.213868,0.0173 0.411861,0.0569 l 0.0078,0.002 0.0062,1.7e-4 c 0.198017,0.0283 0.331057,0.0755 0.380857,0.10533 l 0.0057,0.002 0.0041,0.002 c 0.09917,0.0541 0.180488,0.11102 0.245978,0.16833 0.100129,0.0876 -0.764161,0.35329 -0.642106,0.41435 l 0.269249,0.20429 -0.01882,0.76883 c 0.152191,0.0554 1.075831,-1.0731 1.262929,-1.0731 0.302442,0 0.587864,-0.13502 0.757576,-0.37544 l 0.0021,-0.004 0.0021,-0.002 c 0.148873,-0.22331 0.230476,-0.4753 0.230476,-0.73452 0,-0.37851 -0.168587,-0.72711 -0.460954,-0.98456 -0.278503,-0.26403 -0.654918,-0.45477 -1.122929,-0.58559 l -0.0021,-5e-5 c -0.463261,-0.13215 -0.997698,-0.1957 -1.60352,-0.1957 l -5.29e-4,1.2e-4 c -0.417423,0 -0.815724,0.0492 -1.192176,0.14809 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1712);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + sodipodi:nodetypes="ccccccccccscccccccccccccccccccscccccccscccccccsccccc" + inkscape:connector-curvature="0" + id="path2015" + d="m 90.692994,190.70539 -0.32608,0.0785 c -0.322586,0.077 -0.603303,0.26196 -0.810803,0.52924 -5.29e-4,6.6e-4 5.29e-4,9.4e-4 0,0.002 -0.125621,0.15602 -0.141052,0.35345 -0.19327,0.53891 -0.02204,-0.0117 -0.03206,-0.0298 -0.05478,-0.0412 -0.301416,-0.15894 -0.650348,-0.2602 -1.044897,-0.30843 -0.408554,-0.0499 -0.848104,-0.0164 -1.316199,0.0954 -0.733886,0.17526 -1.403885,0.5349 -1.999877,1.06678 -0.596051,0.52165 -1.073346,1.16833 -1.427822,1.92972 -0.346543,0.75418 -0.519348,1.57626 -0.519348,2.45654 0,0.8704 0.173162,1.6228 0.531236,2.24226 v 0.004 l 0.0016,0.002 c 0.366511,0.60106 0.875437,1.04081 1.504299,1.2949 l 0.0021,4e-5 0.0021,0.002 c 0.632799,0.2444 1.338929,0.26957 2.091862,0.0898 0.417616,-0.0997 0.805728,-0.25856 1.160134,-0.47611 l 0.0021,4e-5 v -0.002 c 0.35419,-0.22411 0.664496,-0.46438 0.927592,-0.72452 0.09077,-0.0898 0.140679,-0.17452 0.219107,-0.26217 0.05888,0.11605 0.05229,0.26831 0.153995,0.35171 l 0.0041,0.002 0.0036,0.004 c 0.243319,0.18525 0.152991,1.43806 0.474262,1.36131 0.321262,-0.0767 0.551415,0.0492 0.760206,-0.2094 l 0.463135,-0.76498 0.220485,-0.5617 c 0.206039,-0.26737 0.09994,-0.77068 0.09994,-1.09655 v -6.54534 c -0.01496,-0.73377 -0.367964,-0.96536 -0.928777,-1.05875 z m -3.327964,3.04131 c 0.413303,-0.0987 0.745771,-0.0769 1.025261,0.0427 0.286411,0.12254 0.499168,0.31957 0.660426,0.62148 l 0.0016,0.002 v 0.004 c 0.169177,0.29794 0.259934,0.66866 0.259934,1.12889 0,0.44917 -0.09011,0.87154 -0.271301,1.27719 v 0.002 0.004 c -0.171656,0.40339 -0.4124,0.74052 -0.724506,1.02311 -0.308477,0.27932 -0.66105,0.46624 -1.074351,0.56494 -0.402047,0.096 -0.730951,0.0729 -1.011825,-0.0473 -0.28607,-0.12239 -0.502909,-0.32007 -0.673862,-0.61891 -0.161081,-0.30229 -0.248046,-0.67098 -0.248046,-1.12128 0,-0.46139 0.0868,-0.89007 0.257865,-1.29271 2.49e-4,-5.9e-4 -2.49e-4,-0.001 0,-0.002 0.181951,-0.40594 0.426686,-0.74504 0.738457,-1.02734 0.309203,-0.27998 0.658355,-0.46469 1.0604,-0.56071 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1720);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + sodipodi:nodetypes="cccccscccccccccccccsccccccccccccccccsccccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path2013" + d="m 105.37796,187.93045 c -0.13643,0.0321 -0.27402,0.072 -0.4129,0.1196 -0.7193,0.24623 -1.39594,0.66419 -2.02726,1.24412 -0.6341,0.58246 -1.15013,1.28495 -1.54513,2.1034 v 0.002 c -0.38903,0.81398 -0.58188,1.70825 -0.58188,2.67192 0,0.83209 0.17926,1.54205 0.55449,2.10721 l 0.002,0.002 v 0.002 c 0.38635,0.5609 0.94921,0.93401 1.64279,1.0993 l 0.002,4e-5 0.004,1.1e-4 c 0.60879,0.12981 1.32798,-0.002 2.08049,-0.21299 v 0.0822 l 0.3514,-0.11942 c 0.53969,-0.18474 1.06143,-0.44933 1.56424,-0.79263 v -0.002 l 0.002,4e-5 c 0.49687,-0.34982 0.88903,-0.69251 1.1777,-1.03515 0.31159,-0.35255 1.34744,0.38161 1.34744,0.013 0,-0.26936 -0.97843,-1.61897 -1.19706,-1.76678 -0.22221,-0.15904 -0.51686,-0.17294 -0.79272,-0.0785 -0.20704,0.0709 -0.40603,0.19606 -0.60926,0.36723 l -0.004,0.002 -0.002,0.002 c -0.11805,0.1048 -0.24952,0.23052 -0.39636,0.3752 l 0.002,-0.004 c -0.11482,0.10999 -0.28021,0.2364 -0.4961,0.36916 -0.20195,0.12418 -0.49188,0.25211 -0.86144,0.37861 -0.37504,0.12839 -0.71445,0.1581 -1.03508,0.0996 -0.30173,-0.0701 -0.53807,-0.22154 -0.74053,-0.47648 -0.0591,-0.0828 -0.0515,-0.2635 -0.0935,-0.37283 l 4.79506,-1.64071 c 0.29425,-0.10073 0.55299,-0.28366 0.76532,-0.53328 0.21654,-0.25459 0.34472,-0.55198 0.3576,-0.86498 v -0.006 l 0.66916,0.34656 c 0.47185,0.24436 -0.45854,-1.18675 -0.69507,-1.64873 l -0.17158,-0.32293 c -0.22309,-0.4585 -0.69256,-0.79638 -1.08976,-1.07017 -0.39854,-0.28486 -0.86315,-0.45664 -1.37718,-0.51535 -0.38152,-0.0469 -0.77922,-0.0204 -1.18856,0.0759 z m -0.032,2.26303 5.3e-4,-1.2e-4 c 0.20158,-0.0457 0.38509,-0.0506 0.55604,-0.0207 l 0.008,2.2e-4 0.006,0.002 c 0.24372,0.0297 0.42261,0.11094 0.56482,0.24397 l 0.004,0.002 0.002,0.004 c 0.11894,0.10323 0.16496,0.25128 0.19533,0.42593 l -3.35121,1.14805 c 0.10083,-0.29056 0.21723,-0.55515 0.37103,-0.76161 0.17818,-0.23918 0.38495,-0.43624 0.62684,-0.59348 0.24976,-0.16233 0.5192,-0.29167 0.80873,-0.39079 0.0713,-0.0244 0.14055,-0.0443 0.20774,-0.0596 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1736);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + sodipodi:nodetypes="cccccccccccccsscccscccccscccccccccccccsccccccccscccc" + inkscape:connector-curvature="0" + id="path2011" + d="m 96.740908,189.9217 -0.203086,0.0493 v 0.0351 c -0.312989,0.0947 -0.621753,0.20352 -0.910024,0.38046 l -0.0021,0.002 c -0.334997,0.20967 -0.634349,0.44937 -0.896585,0.71895 -7.94e-4,7.1e-4 -5.3e-4,9.2e-4 -0.0016,0.002 -5.29e-4,6.6e-4 -0.0011,0.001 -0.0021,0.002 -0.113159,0.11211 -0.179379,0.223 -0.27337,0.33405 -0.0608,-0.13562 -0.0611,-0.30556 -0.179316,-0.39654 -0.240935,-0.1947 -0.566624,-0.24707 -0.888836,-0.1701 -0.322582,0.077 -0.603303,0.26196 -0.810802,0.52925 -5.29e-4,6.5e-4 5.29e-4,9.3e-4 0,0.002 -0.208016,0.25834 -0.319876,0.5652 -0.319876,0.89043 v 9.48676 c 0,0.33405 0.242298,1.99593 0.488228,2.18313 0.243319,0.18523 0.444174,-1.12809 0.765442,-1.20483 0.323479,-0.0773 0.603128,-0.26283 0.810802,-0.53132 0.206968,-0.25793 0.319879,-0.56604 0.319879,-0.89043 v -2.55643 c 0.306057,0.15198 0.650314,0.25167 1.031459,0.30221 0.397508,0.0527 0.81882,0.0249 1.257806,-0.0799 0.743222,-0.17748 1.414774,-0.53199 2.001944,-1.05279 0.594647,-0.53123 1.065992,-1.17442 1.410237,-1.92362 0.35688,-0.76656 0.82603,-0.64298 0.82603,-1.52434 0,-0.87973 -0.46799,-2.58415 -0.83792,-3.19254 l -0.002,-0.002 c -0.355185,-0.6022 -0.85885,-1.03903 -1.486207,-1.28303 -5.3e-4,-1.4e-4 -0.002,2.3e-4 -0.002,-4e-5 -0.624755,-0.25922 -1.332372,-0.29189 -2.095473,-0.10966 z m -0.109035,2.27347 c 0.413295,-0.0987 0.738846,-0.0767 1.005623,0.043 l 0.0021,4e-5 0.0021,0.002 c 0.286412,0.12254 0.49865,0.31917 0.659908,0.62108 l 0.0041,0.004 0.0021,0.006 c 0.16727,0.2858 0.257859,0.65106 0.257859,1.11128 0,0.44918 -0.0898,0.87776 -0.271813,1.29488 l -0.0021,-5e-5 v 0.002 c -0.171649,0.40338 -0.410337,0.74106 -0.722437,1.02366 l -0.0021,0.002 c -0.297175,0.27528 -0.645549,0.45959 -1.058849,0.55829 -0.413308,0.0987 -0.745781,0.079 -1.025261,-0.0406 -0.286078,-0.12239 -0.504454,-0.32282 -0.675412,-0.62166 -0.161528,-0.31363 -0.246496,-0.68794 -0.246496,-1.13662 0,-0.46207 0.0851,-0.88361 0.255799,-1.27519 0.182017,-0.40661 0.428365,-0.74878 0.740523,-1.03143 0.308481,-0.27932 0.661057,-0.46366 1.074354,-0.56236 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1728);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path2000" + d="m 45.757242,189.09867 c -0.148251,0.0583 -0.275753,0.13252 -0.381694,0.22906 -0.232753,0.20874 -0.259311,0.51935 -0.175693,0.83391 l 0.07121,0.26787 c 0.08091,0.30438 0.241729,0.55445 0.514146,0.67321 0.26811,0.11688 0.593293,0.11048 0.98977,0.0426 l 0.300422,-0.0521 -0.01519,-0.0571 c 0.23026,-0.0613 0.475565,-0.11081 0.6216,-0.24091 l 0.0049,-0.005 0.0037,-0.003 c 0.221627,-0.2169 0.246569,-0.52689 0.16278,-0.84209 l -0.07119,-0.2678 c -0.08091,-0.30437 -0.243875,-0.55396 -0.516279,-0.67271 -0.270741,-0.11803 -0.59763,-0.10852 -1.004056,-0.039 -0.187581,0.0321 -0.356223,0.0746 -0.504543,0.13266 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffcc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path1800" + d="m 50.115082,192.0116 -1.16472,2.88798 0.533831,4.65767 1.965465,-1.54309 z" + style="fill:#d45500;fill-opacity:0.409091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1998" + d="m 46.482584,191.73803 c -0.139697,0.0833 -0.259197,0.19196 -0.349186,0.32159 -0.182126,0.25017 -0.230306,0.55616 -0.15149,0.85266 l 1.553018,5.84223 c 0.07919,0.29792 0.270965,0.54915 0.549766,0.7179 l 0.0026,0.001 0.0026,0.001 c 0.280295,0.15984 0.617195,0.21332 0.95749,0.1551 0.340288,-0.0582 0.638266,-0.22284 0.822545,-0.47374 l 0.0012,-0.004 0.0035,-0.004 c 0.177412,-0.25796 0.223152,-0.56605 0.143959,-0.86396 L 48.465948,192.443 c -0.07904,-0.29733 -0.271104,-0.54593 -0.550512,-0.70582 -0.281,-0.16874 -0.620166,-0.22995 -0.962384,-0.17139 -0.171113,0.0292 -0.330992,0.0874 -0.470735,0.17053 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1674);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path1802" + d="m 59.845348,192.22881 -2.329439,2.18474 -0.339712,4.13023 c 0,0 0.218387,-0.0987 1.164722,-0.80119 0.946333,-0.70253 1.650018,-1.25229 1.650018,-1.25229 z" + style="fill:#d45500;fill-opacity:0.409091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1806" + d="m 53.851892,191.1053 -1.383104,0.97264 -0.09706,1.72083 1.819873,-1.53393 -0.0728,-1.22081 z" + style="fill:#d45500;fill-opacity:0.643357;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1996" + d="m 50.843399,189.41236 c -0.147468,0.0497 -0.28258,0.13036 -0.396356,0.24032 -0.227304,0.21004 -0.347784,0.51155 -0.347784,0.83586 v 6.38876 c 0,0.32587 0.114268,0.63419 0.328147,0.87862 l 0.0041,0.002 0.0021,0.002 c 0.21741,0.23569 0.512413,0.37673 0.837676,0.40406 0.32526,0.0273 0.636132,-0.0671 0.865579,-0.27724 l 0.0036,-0.002 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52351 0.343649,-0.84937 v -3.961 c 0,-0.30299 0.06213,-0.55132 0.181901,-0.76368 0.129622,-0.22143 0.302517,-0.38434 0.536916,-0.5041 0.23631,-0.11478 0.53517,-0.16455 0.912091,-0.13289 0.388876,0.0327 0.661032,0.13282 0.83199,0.27153 0.187174,0.15185 0.306403,0.33437 0.375171,0.57223 l 0.0021,0.006 0.0021,0.004 c 0.08236,0.24484 0.124542,0.52579 0.124542,0.84216 v 3.961 c 0,0.32587 0.116332,0.63215 0.330211,0.8766 l 0.0021,0.002 0.0021,0.004 c 0.217411,0.23568 0.512411,0.37466 0.837674,0.40199 0.32526,0.0273 0.636132,-0.065 0.865582,-0.27517 l 0.0036,-0.004 0.0021,-0.002 c 0.224888,-0.21922 0.343649,-0.52196 0.343649,-0.84783 v -3.961 c 0,-0.66949 -0.08001,-1.28818 -0.241845,-1.85341 -0.156224,-0.5914 -0.45897,-1.09328 -0.898652,-1.48044 -0.449541,-0.40451 -1.086805,-0.62625 -1.886707,-0.69346 l -0.287322,-0.0234 v 0.0512 c -0.268083,0.002 -0.537543,7.8e-4 -0.78083,0.0723 -0.322408,0.0846 -0.617291,0.21119 -0.879017,0.38264 -0.182169,0.11934 -0.328221,0.26307 -0.478523,0.4044 -0.04759,-0.21578 -0.08313,-0.43877 -0.234611,-0.60347 -2.04e-4,-2.2e-4 2.01e-4,-0.002 0,-0.002 -0.215739,-0.24375 -0.511488,-0.39267 -0.837676,-0.42008 l -5.3e-4,-4.1e-4 c -0.163536,-0.0137 -0.323305,0.005 -0.470773,0.0548 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1744);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path1804" + d="m 62.975533,192.89339 -1.650021,1.81039 -0.02426,1.80118 1.747081,-1.61429 z" + style="fill:#d45500;fill-opacity:0.409091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1994" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,0,125.2854)" + d="m 226.37888,296.93164 c -0.88747,-0.0277 -1.69677,0.22122 -2.32422,0.73633 -0.83527,0.65015 -1.27735,1.68438 -1.27735,2.91015 v 36.14258 c 0,1.23164 0.43586,2.4862 1.26368,3.55274 l 0.0137,0.01 0.008,0.0176 c 0.84303,1.03654 1.99494,1.74268 3.22656,2.02539 1.23162,0.28272 2.37572,0.10263 3.21875,-0.54687 l 0.006,-0.0117 0.0156,-0.006 c 0.82781,-0.68649 1.26172,-1.74102 1.26172,-2.97266 v -5.70508 l 1.83203,-1.26367 9.83203,12.66602 0.008,0.01 c 0.86032,1.14237 2.03789,1.95079 3.29883,2.24024 1.04642,0.2402 2.05422,0.0446 2.96094,-0.47266 l 0.008,0.002 v -0.008 c 1.01251,-0.58724 1.59375,-1.64289 1.59375,-2.92578 0,-1.22472 -0.4934,-2.48986 -1.37305,-3.62109 l -0.008,-0.01 -9.53711,-12.57617 8.06836,-5.56641 c 1.07777,-0.69566 1.74219,-1.71145 1.74219,-2.98047 0,-1.01661 -0.48062,-2.08724 -1.24805,-3.12109 -0.81222,-1.09425 -1.91191,-1.87939 -3.08398,-2.14844 -1.22803,-0.28189 -2.38933,-0.0417 -3.28516,0.64844 l -10.80859,7.94922 v -19.25781 c 0,-1.22578 -0.44013,-2.46443 -1.2754,-3.49805 -0.83659,-1.07089 -1.98794,-1.81333 -3.22656,-2.09766 -0.30966,-0.0711 -0.61433,-0.11186 -0.91015,-0.12109 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1752);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1808" + d="m 74.117104,195.94227 -2.84822,1.09991 -2.505059,-0.76329 0.720632,-1.81258 z" + style="fill:#d45500;fill-opacity:0.643357;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1814" + d="m 71.71499,198.10652 -2.985482,1.7491 1.956007,0.88932 1.818743,-0.76064 0.03431,-1.10599 z" + style="fill:#d45500;fill-opacity:0.643357;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8619" + d="m 67.551432,198.57607 -1.777343,1.03942 c 0,0 0.678195,0.49913 0.654809,1.15931 -0.02339,0.66017 -0.444333,1.08421 -0.444333,1.08421 l 1.894271,-1.37027 0.140316,-1.15474 z" + style="fill:#de5f01;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1992" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,0,125.2854)" + d="m 263.31638,317.02539 c -0.98345,-0.0276 -1.94569,0.0479 -2.88282,0.22852 l -0.008,-0.002 c -1.84974,0.37416 -3.39567,1.17978 -4.5918,2.40039 -1.23675,1.26205 -1.85937,3.03193 -1.85937,5.16797 0,1.84426 0.36233,3.53833 1.13672,5.03711 0.73394,1.42048 1.70061,2.67641 2.8789,3.73242 l 0.006,0.01 0.0156,0.01 c 1.1211,0.96321 2.3387,1.81996 3.6543,2.57421 l 0.008,0.01 0.008,0.002 c 1.29808,0.73065 2.55717,1.41347 3.7793,2.04883 l 0.008,0.002 0.0137,0.01 c 1.14356,0.56751 2.16582,1.1208 3.06446,1.66406 l 0.008,0.008 c 0.89028,0.52487 1.55814,1.05652 2.02148,1.56446 0.37383,0.40972 0.53906,0.78555 0.53906,1.41601 0,0.83055 -0.20192,1.21583 -0.50195,1.42774 -0.3785,0.26234 -0.80673,0.38678 -1.35156,0.38281 -0.63624,-0.0414 -1.21484,-0.10843 -1.73438,-0.19141 -1.74701,-0.40419 -3.14405,-1.01542 -4.20703,-1.79101 -1.13952,-0.83134 -2.24102,-1.89288 -3.30664,-3.20313 -0.77209,-0.94923 -1.68876,-1.65253 -2.67383,-1.94336 -0.90567,-0.30124 -1.81446,-0.30013 -2.59765,0.01 l -0.008,-0.002 -0.008,0.006 c -1.14487,0.46989 -1.92287,1.35284 -1.97851,2.56445 -0.0463,1.00776 0.16594,2.00959 0.70898,2.89453 l 0.008,0.01 0.008,0.01 c 1.62697,2.54277 3.72083,4.5849 6.20117,6.03711 l 0.008,0.002 0.008,0.008 c 2.39625,1.36231 4.8055,2.32104 7.21875,2.875 1.96007,0.44993 3.8841,0.51724 5.75,0.19921 l 0.008,0.002 0.008,-0.006 c 1.88957,-0.36407 3.49592,-1.17026 4.76758,-2.4043 1.3183,-1.27934 1.98632,-3.08898 1.98632,-5.27344 0,-1.83666 -0.33457,-3.4908 -1.07031,-4.94726 -0.69165,-1.40915 -1.61539,-2.66141 -2.7539,-3.71094 -1.08823,-1.00321 -2.27687,-1.88233 -3.56446,-2.63476 -1.23242,-0.72023 -2.44945,-1.3787 -3.64648,-1.97266 l 0.008,0.008 c -1.10636,-0.55935 -2.15362,-1.10485 -3.14453,-1.63672 l -0.008,-0.01 c -0.87177,-0.51495 -1.52584,-1.03405 -1.98633,-1.53321 -0.38153,-0.44587 -0.56055,-0.87646 -0.56055,-1.55273 0,-0.80137 0.18461,-1.11334 0.40625,-1.25 l 0.0215,-0.0117 0.0156,-0.0117 c 0.37773,-0.26214 0.76511,-0.35762 1.24609,-0.33203 l 0.0234,-0.004 0.0215,-0.002 c 0.64434,0.005 1.21697,0.0737 1.71289,0.1875 1.32542,0.30425 2.4418,0.78782 3.38086,1.43946 l 0.008,0.01 c 1.00506,0.68123 1.75771,1.43693 2.31055,2.2793 l 0.0508,0.0781 0.0605,0.0664 c 0.67433,0.77735 1.55424,1.33761 2.50977,1.65234 l 0.0293,0.0156 0.0215,0.004 c 0.99147,0.2771 1.95992,0.19779 2.72461,-0.23828 0.98733,-0.57262 1.58828,-1.55532 1.47656,-2.7539 -0.0923,-0.9898 -0.40193,-1.9566 -0.94531,-2.82227 l -0.008,-0.01 -0.0137,-0.0176 c -0.90088,-1.36511 -2.02557,-2.55433 -3.34571,-3.54297 -0.002,-0.002 -0.004,-3e-4 -0.006,-0.002 -1.28219,-0.99667 -2.63648,-1.8105 -4.04687,-2.42773 -1.39153,-0.64673 -2.73467,-1.12274 -4.0293,-1.41992 h -0.002 c -1.01982,-0.2341 -2.02436,-0.36503 -3.00781,-0.39258 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1760);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path1816" + d="m 78.972802,197.28124 -0.446106,1.42357 -1.715794,2.93323 -0.446106,-3.19192 z" + style="fill:#d45500;fill-opacity:0.643137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1990" + d="m 77.634012,195.88774 c -0.37645,0.0989 -0.731269,0.24762 -1.061951,0.44582 -0.649343,0.3852 -1.165479,0.92865 -1.536856,1.61679 v 0.002 l -0.0021,-4e-5 c -0.363138,0.68227 -0.541052,1.47061 -0.541052,2.35197 0,0.83965 0.169103,1.61007 0.507979,2.29875 v 0.002 0.002 c 0.349853,0.68877 0.849116,1.24403 1.486215,1.65046 l 0.0021,4e-5 0.0021,0.002 c 0.644027,0.39974 1.402633,0.59588 2.257742,0.59588 0.566688,1e-5 1.096767,-0.0631 1.58595,-0.19351 l 0.0021,-0.002 0.0021,5e-5 c 0.495163,-0.13994 0.903748,-0.31828 1.226283,-0.54866 l 0.0021,-0.002 0.0021,-0.002 c 0.329147,-0.24687 0.538983,-0.56753 0.538983,-0.92419 0,-0.29747 -0.09338,-0.57517 -0.279051,-0.78912 -0.195588,-0.23515 -0.496334,-0.35732 -0.820621,-0.35733 -0.263019,1e-5 -0.497101,0.0518 -0.677479,0.19944 -0.09794,0.0801 -0.213301,0.15824 -0.342098,0.23252 -0.09204,0.0455 -0.219382,0.0856 -0.384474,0.11307 -0.166092,0.0277 -0.375909,0.0433 -0.623215,0.0433 -0.421079,0 -0.777756,-0.10118 -1.095542,-0.30094 -0.311478,-0.20207 -0.556405,-0.46733 -0.74259,-0.81036 -0.174879,-0.35126 -0.263549,-0.75053 -0.263549,-1.20919 0,-0.47126 0.08924,-0.86931 0.263549,-1.20875 l 0.0021,-0.002 c 0.175627,-0.35126 0.418454,-0.62098 0.738457,-0.8227 7.94e-4,-4.5e-4 0.0013,-0.001 0.0021,-0.002 0.323305,-0.19662 0.718722,-0.29884 1.205095,-0.29885 0.06787,1e-5 0.213868,0.0173 0.411861,0.0569 l 0.0078,0.002 0.0062,1.6e-4 c 0.198017,0.0283 0.331057,0.0755 0.380857,0.10533 l 0.0057,0.002 0.0041,0.002 c 0.09917,0.0541 0.180489,0.11101 0.245978,0.16833 0.100129,0.0876 0.213842,0.1631 0.335897,0.22416 l 0.01188,0.006 0.01551,0.006 c 0.152191,0.0554 0.320881,0.0782 0.507979,0.0782 0.302442,0 0.587864,-0.13501 0.757576,-0.37543 l 0.0021,-0.004 0.0021,-0.002 c 0.148873,-0.22331 0.230476,-0.4753 0.230476,-0.73452 0,-0.37851 -0.168587,-0.72711 -0.460954,-0.98456 -0.278503,-0.26403 -0.654918,-0.45476 -1.122929,-0.58559 l -0.0021,-4e-5 c -0.463261,-0.13215 -0.997698,-0.19571 -1.60352,-0.19571 l -5.29e-4,1.2e-4 c -0.417423,0 -0.815724,0.0492 -1.192176,0.14809 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1768);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path1818" + d="m 85.905959,198.20931 -1.625756,1.73202 -0.582361,-3.16636 1.577226,-1.91501 c 0,0 -0.242649,2.84618 0.630891,3.34935 z" + style="fill:#d45500;fill-opacity:0.643137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccsccccccsccccccccccccscccccccscccccccsccccc" + inkscape:connector-curvature="0" + id="path1988" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,6.3089002,21.778617)" + d="m 316.93359,717.1543 -1.23242,0.0137 c -1.21922,0.0112 -2.2802,0.46667 -3.06445,1.29687 -0.002,0.002 0.002,0.006 0,0.01 -0.47479,0.4807 -0.53311,1.21349 -0.73047,1.86914 -0.0833,-0.0634 -0.12116,-0.14033 -0.20703,-0.20313 -1.13921,-0.86221 -2.45801,-1.54763 -3.94922,-2.07226 -1.54414,-0.54305 -3.20543,-0.79769 -4.97461,-0.78125 -2.77374,0.0257 -5.30602,0.80369 -7.55859,2.29687 -2.25279,1.45447 -4.05674,3.48453 -5.39649,6.05469 -1.30977,2.54979 -1.96289,5.50695 -1.96289,8.83399 0,3.28966 0.65446,6.28361 2.00781,8.93554 v 0.0156 l 0.006,0.01 c 1.38524,2.5897 3.30875,4.69329 5.68555,6.19922 l 0.008,0.002 0.006,0.008 c 2.39168,1.47272 5.06052,2.18044 7.90625,2.1543 1.57839,-0.0145 3.04528,-0.27821 4.38477,-0.79297 l 0.008,0.002 v -0.008 c 1.33867,-0.53974 2.51149,-1.17865 3.50586,-1.9336 0.34307,-0.26065 0.53171,-0.53755 0.82812,-0.80078 0.22253,0.48966 0.19763,1.05944 0.58204,1.46289 l 0.0156,0.0117 0.0137,0.0176 c 0.91963,0.91122 2.13732,1.34924 3.35157,1.33789 1.21422,-0.0112 2.26751,-0.43602 3.05664,-1.23242 l 0.008,-0.0137 0.008,-0.006 c 0.77873,-0.83178 1.20313,-1.909 1.20313,-3.14063 v -24.73828 c -0.0551,-2.78678 -1.26447,-4.16175 -3.50887,-4.80898 z m -12.57812,8.60742 c 1.56209,-0.0145 2.81866,0.35627 3.875,1.05078 1.0825,0.71163 1.88662,1.6409 2.49609,2.92188 l 0.006,0.01 v 0.0156 c 0.6394,1.27288 0.98242,2.75273 0.98242,4.49218 0,1.69765 -0.34056,3.21583 -1.02539,4.5918 v 0.008 0.0156 c -0.64878,1.37566 -1.55867,2.44097 -2.73828,3.23828 -1.1659,0.78807 -2.49847,1.18865 -4.06055,1.20312 -1.51954,0.014 -2.76264,-0.35866 -3.82421,-1.05664 -1.08121,-0.71077 -1.90076,-1.64604 -2.54688,-2.92383 -0.60881,-1.28225 -0.9375,-2.75119 -0.9375,-4.45312 0,-1.74383 0.32808,-3.28874 0.97461,-4.66211 9.4e-4,-0.002 -9.4e-4,-0.006 0,-0.01 0.68769,-1.37639 1.61267,-2.44571 2.79102,-3.24218 1.16864,-0.78994 2.48827,-1.18516 4.00781,-1.19922 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1776);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path1820" + d="m 109.44301,195.01455 -1.33458,-1.24662 -4.58608,1.70789 1.26178,1.94274 z" + style="fill:#d45500;fill-opacity:0.643137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1822" + d="m 101.09585,192.32027 1.69855,1.42997 0.0971,4.46675 c 0,0 -2.014,-1.55169 -2.08679,-3.185 -0.0728,-1.63331 0.29118,-2.71172 0.29118,-2.71172 z" + style="fill:#d45500;fill-opacity:0.643137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1986" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,6.3089002,21.778617)" + d="m 377.99219,719.81641 c -0.5157,0.003 -1.03566,0.0344 -1.56055,0.0938 -2.71861,0.30659 -5.27602,1.29922 -7.66211,2.94336 -2.39656,1.65134 -4.34693,3.85871 -5.83984,6.60937 v 0.01 c -1.47035,2.73895 -2.19922,5.95153 -2.19922,9.59375 0,3.14491 0.67751,5.98373 2.0957,8.44531 l 0.008,0.01 v 0.008 c 1.46022,2.45513 3.58758,4.35362 6.20899,5.58008 l 0.008,0.002 0.0137,0.004 c 2.30094,1.01879 5.01915,1.1442 7.86328,1 v 0.31055 l 1.32813,-0.14648 c 2.03973,-0.23001 4.01172,-0.77739 5.91211,-1.63868 v -0.008 l 0.008,0.002 c 1.87794,-0.89108 3.36014,-1.84606 4.45117,-2.89063 1.17763,-1.06216 1.88282,-2.24937 1.88282,-3.64258 0,-1.01806 -0.48814,-2.10714 -1.31446,-2.85547 -0.83985,-0.79388 -1.95351,-1.10206 -2.99609,-0.98437 -0.78255,0.0883 -1.53466,0.38874 -2.30274,0.85937 l -0.0156,0.004 -0.008,0.006 c -0.44618,0.29368 -0.94303,0.65481 -1.49805,1.07422 l 0.008,-0.0137 c -0.43396,0.3161 -1.05904,0.65037 -1.875,0.96484 -0.76327,0.29413 -1.85909,0.5261 -3.25586,0.68359 -1.41747,0.15987 -2.70028,-0.0224 -3.91211,-0.52148 -1.14043,-0.52672 -2.03362,-1.30415 -2.79882,-2.44336 -0.22337,-0.36421 -0.19478,-1.04061 -0.35352,-1.49023 l 18.12305,-2.04102 c 1.11212,-0.12543 2.09007,-0.59233 2.89257,-1.35156 0.81838,-0.77437 1.30285,-1.78718 1.35157,-2.95899 v -0.0234 -0.0234 c -4e-5,-2.22649 -0.43611,-4.3319 -1.33008,-6.28321 v -0.008 c -0.84318,-1.92646 -2.03385,-3.61081 -3.53516,-4.99023 -1.50625,-1.42239 -3.26225,-2.47471 -5.20507,-3.14258 -1.44192,-0.50843 -2.9451,-0.75322 -4.49219,-0.74414 z m -0.1211,8.52539 c 0.76361,0.002 1.45815,0.14368 2.10547,0.40625 l 0.0274,0.006 0.0215,0.0156 c 0.92119,0.3237 1.59724,0.78593 2.13477,1.41211 l 0.0137,0.01 0.01,0.0176 c 0.4495,0.49334 0.62351,1.09289 0.73829,1.7793 l -12.66602,1.43164 c 0.38109,-1.0107 0.82101,-1.90977 1.40234,-2.55664 0.67344,-0.74941 1.45488,-1.3148 2.36914,-1.69922 0.94394,-0.39689 1.96232,-0.65197 3.05664,-0.77539 0.2703,-0.0305 0.53258,-0.0457 0.78711,-0.0449 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1792);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path1984" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,6.3089002,21.778617)" + d="m 343.01367,720.0332 -0.76758,0.0117 v 0.13281 c -1.18295,0.0864 -2.34994,0.22978 -3.43945,0.64844 l -0.01,0.006 c -1.26616,0.50181 -2.39753,1.14808 -3.38868,1.93945 -0.003,0.002 -0.005,0.003 -0.008,0.006 -0.002,0.002 -0.005,0.003 -0.008,0.006 -0.42769,0.32558 -0.67798,0.68721 -1.0332,1.02539 -0.2298,-0.56533 -0.23093,-1.20786 -0.67774,-1.65429 -0.91062,-0.9449 -2.14156,-1.42544 -3.35937,-1.41407 -1.21922,0.0112 -2.28021,0.46668 -3.06446,1.29688 -0.002,0.002 0.002,0.004 0,0.008 -0.7862,0.79593 -1.20898,1.85867 -1.20898,3.08789 v 35.85547 c 0,1.26255 0.45722,2.52638 1.38672,3.44727 0.91963,0.91118 2.13732,1.34921 3.35156,1.33789 1.2226,-0.0115 2.27954,-0.4701 3.06445,-1.30469 0.78223,-0.7953 1.20899,-1.86188 1.20899,-3.08789 v -9.66211 c 1.15678,0.83994 2.45787,1.51542 3.89843,2.03711 1.5024,0.54406 3.09473,0.80467 4.75391,0.78906 2.80903,-0.026 5.34717,-0.78323 7.56641,-2.24219 2.24751,-1.49189 4.02898,-3.51391 5.33008,-6.04687 1.34883,-2.58761 2.02148,-5.56537 2.02148,-8.89648 0,-3.32496 -0.66825,-6.32107 -2.06641,-8.94141 l -0.008,-0.01 c -1.34248,-2.5842 -3.24606,-4.67218 -5.61719,-6.13867 -0.002,-10e-4 -0.006,-4.8e-4 -0.008,-0.002 -2.36131,-1.52172 -5.03574,-2.25914 -7.91992,-2.23242 z m -0.41211,8.49805 c 1.56209,-0.0145 2.79249,0.3513 3.80078,1.03516 l 0.008,0.002 0.008,0.0117 c 1.0825,0.71163 1.88467,1.63895 2.49414,2.91992 l 0.0156,0.0176 0.008,0.0254 c 0.63222,1.22532 0.97461,2.68442 0.97461,4.42383 0,1.69769 -0.33934,3.23962 -1.02735,4.6582 l -0.008,-0.002 v 0.008 c -0.64878,1.37566 -1.55086,2.44487 -2.73047,3.24219 l -0.008,0.006 c -1.12319,0.78261 -2.43986,1.17693 -4.00195,1.1914 -1.56209,0.0145 -2.81867,-0.34846 -3.875,-1.04297 -1.08123,-0.71077 -1.90661,-1.65775 -2.55274,-2.93554 -0.6105,-1.32551 -0.93164,-2.81398 -0.93164,-4.50977 0,-1.74641 0.32171,-3.26575 0.9668,-4.59765 0.68795,-1.37891 1.619,-2.4584 2.79883,-3.25586 1.1659,-0.78807 2.49845,-1.17889 4.06054,-1.19336 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1784);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path2456" + d="m 46.115336,189.10691 c 0,0 0.754949,-0.19045 1.149582,0.0278 0.394632,0.21825 0.49758,0.98389 0.49758,0.98389" + style="fill:none;stroke:url(#linearGradient2470);stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsc" + inkscape:connector-curvature="0" + id="path2458" + d="m 46.853128,191.57988 c 0,0 0.74637,-0.32574 1.304004,0.19825 0.291684,0.27621 0.583371,1.6162 0.583371,1.6162 0,0 -0.602679,-1.0894 -0.857898,-1.3387 -0.540475,-0.52794 -1.029477,-0.47575 -1.029477,-0.47575 z" + style="fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccczc" + inkscape:connector-curvature="0" + id="path2460" + d="m 50.936719,189.3814 c 0,0 0.58337,-0.22829 1.063792,0.15902 0.480423,0.3873 0.377475,0.84845 0.377475,0.84845 0,0 -0.35457,-0.34156 -0.652002,-0.62244 -0.297432,-0.28088 -0.789265,-0.38503 -0.789265,-0.38503 z" + style="fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsc" + inkscape:connector-curvature="0" + id="path2462" + d="m 54.119519,189.543 c 0,0 1.355477,-0.27683 2.367794,0.38301 1.192478,0.79864 1.286849,2.52709 1.286849,2.52709 0,0 -0.689885,-1.26965 -1.621428,-2.05565 -0.815329,-0.68794 -2.033215,-0.85445 -2.033215,-0.85445 z" + style="fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccczc" + inkscape:connector-curvature="0" + id="path2460-6" + d="m 59.875235,190.09701 c 0,0 0.676445,-0.14462 1.156867,0.24269 0.480423,0.3873 0.302599,1.7312 0.302599,1.7312 0,0 -0.127784,-0.95171 -0.56474,-1.43108 -0.436956,-0.47937 -0.894726,-0.54281 -0.894726,-0.54281 z" + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsc" + inkscape:connector-curvature="0" + id="path2462-2" + d="m 69.915249,193.12308 c 0,0 1.457693,-0.28976 2.528546,0.28547 1.559857,0.71176 1.305085,1.75616 1.305085,1.75616 0,0 -0.609055,-0.81634 -1.469405,-1.31256 -0.931088,-0.53702 -2.364226,-0.72907 -2.364226,-0.72907 z" + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2660" + d="m 89.381922,191.84867 -0.545963,1.56909 -1.043397,-0.36712 0.691554,-1.50545 c 0,0 0.691552,0.14457 0.897806,0.30348 z" + style="display:inline;fill:#f07001;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsc" + inkscape:connector-curvature="0" + id="path2462-2-4-8" + d="m 84.047061,194.60204 c 0,0 0.936428,-1.18225 2.457389,-1.47985 1.888827,-0.53361 2.348343,0.2686 2.348343,0.2686 0,0 -1.126945,-0.0998 -2.231797,0.12674 -1.195696,0.24516 -2.573935,1.08451 -2.573935,1.08451 z" + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccczc" + inkscape:connector-curvature="0" + id="path2460-6-7" + d="m 89.231737,192.64067 c 0,0 0.976709,-0.75402 1.602974,-0.21145 0.480423,0.3873 0.259704,1.80968 0.259704,1.80968 0,0 -0.06773,-1.00839 -0.504687,-1.48776 -0.436956,-0.47937 -1.357991,-0.11047 -1.357991,-0.11047 z" + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="czcsc" + inkscape:connector-curvature="0" + id="path2462-2-4-8-6" + d="m 94.794897,192.92812 c 0,0 0.750908,-1.16681 2.457389,-1.5828 1.706481,-0.41599 2.554238,0.55592 2.554238,0.55592 0,0 -1.375735,-0.40301 -2.480587,-0.17647 -1.195696,0.24516 -2.53104,1.20335 -2.53104,1.20335 z" + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="czcscc" + inkscape:connector-curvature="0" + id="path2462-2-4-8-6-8" + d="m 102.84473,191.84708 c 0,0 0.86491,-1.6086 2.52404,-2.38939 1.65913,-0.78078 2.82902,-0.11565 2.82902,-0.11565 0,0 -1.27548,-0.0938 -3.02153,0.83043 -1.72491,0.91299 -3.12937,3.23893 -3.12937,3.23893 0.21486,-0.52431 0.42695,-1.04878 0.79784,-1.56432 z" + style="font-style:normal;font-weight:normal;font-size:15.4732px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2677" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + d="m 179.52344,308.39844 -7.41016,7.50781 0.82227,3.2832 c 0.2993,1.1947 1.02439,2.31173 2.07812,3.19141 l 0.01,0.006 0.01,0.006 c 1.05939,0.8473 2.33299,1.34082 3.61914,1.41601 1.28613,0.0753 2.41094,-0.28776 3.10743,-1.07617 l 0.006,-0.0137 0.0117,-0.0117 c 0.67054,-0.82105 0.84424,-1.94596 0.54493,-3.14062 z" + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2704" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + d="m 191.64844,309.43164 -8.94532,5.78125 c 0.15535,0.93915 0.55012,1.87032 1.16407,2.71289 l 0.0156,0.0117 0.008,0.008 c 0.82171,1.07942 1.93668,1.86842 3.16602,2.25391 1.22933,0.38537 2.40428,0.29829 3.27148,-0.29688 l 0.0137,-0.004 0.008,-0.006 c 0.84997,-0.63356 1.29883,-1.68051 1.29883,-2.91211 z m 20.23437,2.5 -9.02148,7.45508 v 1.2832 c 0,1.23164 0.43968,2.49015 1.24805,3.59961 l 0.008,0.01 0.008,0.0176 c 0.82171,1.07938 1.93668,1.8606 3.16602,2.24609 1.22932,0.38537 2.40427,0.30621 3.27148,-0.28906 l 0.0137,-0.0117 0.008,-0.006 c 0.84997,-0.63344 1.29883,-1.67462 1.29883,-2.90625 z" + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2731" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + d="m 225.78711,332.85742 -9.60742,5.22852 c 0.17911,0.86298 0.55434,1.70867 1.13672,2.45898 l 0.0137,0.01 0.008,0.0176 c 0.84303,1.03654 1.99494,1.74267 3.22656,2.02539 1.23163,0.28271 2.37572,0.10259 3.21875,-0.54688 l 0.006,-0.01 0.0156,-0.008 c 0.82781,-0.68649 1.26172,-1.74102 1.26172,-2.97265 v -5.70508 z" + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2733" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + d="m 269.63672,336.9043 -6.85547,3.9375 c 0.42343,0.31212 0.79503,0.62202 1.07031,0.92382 0.37384,0.40972 0.53906,0.78556 0.53906,1.41602 0,0.83055 -0.2019,1.21583 -0.50195,1.42774 -0.3785,0.26234 -0.80673,0.38678 -1.35156,0.38281 -0.63624,-0.0414 -1.21484,-0.10843 -1.73438,-0.19141 -1.1686,-0.27037 -2.16521,-0.64111 -3.02539,-1.08398 l -7.10351,4.08008 c 0.71775,0.58909 1.4743,1.12667 2.27539,1.5957 l 0.008,0.002 0.008,0.01 c 2.39625,1.36231 4.8055,2.32104 7.21875,2.875 1.96007,0.44993 3.8841,0.5174 5.75,0.19922 l 0.008,0.002 0.008,-0.006 c 1.88957,-0.36407 3.49592,-1.17026 4.76758,-2.4043 1.3183,-1.27934 1.98632,-3.08898 1.98632,-5.27343 0,-1.83667 -0.33456,-3.49081 -1.07031,-4.94727 -0.5309,-1.08164 -1.19954,-2.06927 -1.99609,-2.94531 z" + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2735" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + d="m 298.05078,360.48242 c -0.43066,0.0198 -0.82319,0.11956 -1.16406,0.32031 -0.37017,0.21777 -0.80618,0.41303 -1.29297,0.58204 -0.34787,0.0921 -0.82916,0.13315 -1.45313,0.0938 -0.62774,-0.0394 -1.42076,-0.1624 -2.35546,-0.37696 -0.36397,-0.0836 -0.71112,-0.18878 -1.05078,-0.30664 l -7.32422,5.14063 c 2.19959,1.62388 4.71111,2.75329 7.49609,3.39257 2.14181,0.49169 4.14526,0.71497 5.99414,0.64649 l 0.008,-0.006 0.008,0.002 c 1.87148,-0.0993 3.41573,-0.41886 4.63476,-1.00976 l 0.008,-0.006 0.008,-0.006 c 1.24402,-0.64749 2.03711,-1.67739 2.03711,-3.02539 0,-1.1243 -0.35294,-2.2549 -1.05469,-3.22461 -0.73923,-1.05845 -1.87591,-1.78112 -3.10156,-2.0625 -0.49705,-0.11408 -0.96583,-0.17413 -1.39649,-0.1543 z" + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2737" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + d="m 337.5625,354.42188 -17.62695,11.89843 c 0.22027,0.007 0.43962,0.0177 0.66211,0.0156 1.57838,-0.0145 3.04527,-0.27821 4.38476,-0.79297 l 0.008,0.002 v -0.008 c 1.33867,-0.53974 2.51149,-1.17864 3.50586,-1.93359 0.34307,-0.26066 0.53172,-0.53755 0.82813,-0.80079 0.22254,0.48966 0.19762,1.05948 0.58203,1.46289 l 0.0156,0.0117 0.0137,0.0176 c 0.91962,0.91122 2.13731,1.34921 3.35156,1.33789 1.21422,-0.0112 2.26751,-0.43599 3.05664,-1.23242 l 0.008,-0.0137 0.008,-0.006 c 0.77873,-0.83178 1.20312,-1.90899 1.20312,-3.14063 z" + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2739" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + d="m 352.17969,369.43945 -9.00977,6.09961 c 0.003,1.25795 0.45866,2.51606 1.38477,3.4336 0.91963,0.91118 2.13732,1.3492 3.35156,1.33789 1.2226,-0.0115 2.27954,-0.4701 3.06445,-1.30469 0.78223,-0.7953 1.20899,-1.86189 1.20899,-3.08789 z" + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2741" + transform="matrix(0.26458333,-0.06073447,0,0.26458333,1.7792023,124.80523)" + d="m 409.2207,345.81836 -6.25586,8.3418 2.4668,-0.27735 c 1.11209,-0.12543 2.09007,-0.59233 2.89258,-1.35156 0.81838,-0.77437 1.30284,-1.78714 1.35156,-2.95898 v -0.0215 -0.0234 c -2e-5,-1.28056 -0.16243,-2.51481 -0.45508,-3.70898 z m -5.11132,10.97461 c -0.26414,-0.0248 -0.52842,-0.0216 -0.78907,0.008 -0.78255,0.0883 -1.53466,0.38874 -2.30273,0.85938 l -0.0156,0.004 -0.008,0.006 c -0.42584,0.28029 -0.905,0.63018 -1.42969,1.02539 l -7.5039,10.00586 c 0.65359,0.004 1.31681,-0.0127 1.98828,-0.0469 v 0.31054 l 1.32812,-0.14648 c 2.03974,-0.23001 4.01173,-0.77739 5.91211,-1.63867 v -0.008 l 0.008,0.002 c 1.87793,-0.89108 3.36013,-1.84605 4.45117,-2.89063 1.17762,-1.06215 1.88281,-2.24937 1.88281,-3.64258 0,-1.01805 -0.48814,-2.10713 -1.31445,-2.85546 -0.62989,-0.59541 -1.41462,-0.91793 -2.20703,-0.99219 z" + style="fill:#fea718;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path8563" + d="m 75.241155,197.52883 6.224995,-1.18801 1.075762,-1.41625 -1.917661,-0.96297 -2.806329,1.39254 c -0.968578,0.64041 -1.78197,1.40039 -2.576767,2.17469 z" + style="fill:#be5609;fill-opacity:0.409091;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path5445" + d="m 108.35789,258.40318 2.52223,0.77211 2.5308,-0.92653" + style="fill:none;stroke:url(#linearGradient5453);stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path5467" + d="m 132.6441,262.88733 c -3.33532,1.19991 -6.55435,2.57426 -10.50788,2.84686 0,0 -0.0589,-0.0232 -0.0796,-0.031 l -1.66554,2.0159 c 0.0236,0.008 0.0472,0.0174 0.0708,0.0248 4.93991,1.54895 12.1822,-4.85655 12.1822,-4.85655 z" + style="fill:url(#linearGradient5501);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5485" + d="m 121.76683,265.20631 -1.35548,2.47074 2.52222,-2.31632 z" + style="fill:#d13c33;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path5511" + d="m 103.7853,260.59082 10.08888,2.57369 c 0,0 3.4659,2.8139 6.48571,4.42675 0,0 -9.48835,-2.3678 -16.57459,-7.00044 z" + style="fill:#b41f1f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5513" + d="m 134.70393,249.95289 c 0.41296,-0.22243 1.8174,-1.24633 2.21336,-3.34579" + style="fill:none;stroke:url(#linearGradient5521);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsc" + inkscape:connector-curvature="0" + id="path5564" + d="m 116.79102,269.084 c 0,0 1.21823,0.75495 1.97317,1.54422 0,0 3.05412,-1.49274 5.81655,-1.13242 0,0 -3.24286,-1.23539 -5.02728,-0.96086 -1.78443,0.27453 -2.76244,0.54906 -2.76244,0.54906 z" + style="fill:#de7474;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="czc" + inkscape:connector-curvature="0" + id="path5566" + d="m 119.58777,278.24635 c 0,0 1.25289,-1.98879 0.78927,-4.85571 -0.46361,-2.86691 -3.62585,-4.20056 -3.62585,-4.20056" + style="fill:none;stroke:url(#linearGradient5574);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> + <path + sodipodi:nodetypes="czc" + inkscape:connector-curvature="0" + id="path5566-2" + d="m 119.89983,278.20903 c 0,0 1.25289,-1.98879 0.78927,-4.85571 -0.46361,-2.86691 -3.62585,-4.20056 -3.62585,-4.20056" + style="display:inline;fill:none;stroke:url(#linearGradient5574-1);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> + <path + sodipodi:nodetypes="ccczscc" + inkscape:connector-curvature="0" + id="path1758" + d="m 138.58162,275.6555 18.89002,-15.11765 -0.73448,-0.0431 c 0,0 -24.40163,10.77394 -27.07767,13.30767 -2.67604,2.53373 -3.92658,3.38894 -1.99865,6.53322 3.38449,5.51981 8.4015,3.67222 9.27362,-0.15047 0.82358,-1.78442 -0.48043,-3.36295 1.64716,-4.52969 z" + style="fill:#de381f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2111" + d="m 151.2785,259.71576 2.77959,3.51738 4.39243,-3.62032 z" + style="fill:#000000;fill-opacity:0.207071;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path5830" + d="m 156.64091,261.10234 -23.0064,12.34189 c 0,0 -7.74973,4.47612 -4.72993,9.00581 1.69056,2.53583 8.7081,4.70534 18.06407,-1.10731 l -7.2087,-2.39384 c -1.56893,-0.65648 -2.55853,-1.88917 -1.12913,-3.33468 z" + style="fill:url(#radialGradient5871);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2350" + d="m 121.47697,283.47392 c 0,0 -1.58841,0.95074 -4.12117,0.80421" + style="opacity:1;fill:none;stroke:#8e3232;stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2350-7" + d="m 121.4747,283.69537 c 0,0 -1.45496,0.85974 -3.9877,0.77993" + style="display:inline;opacity:1;fill:none;stroke:#fe7d7d;stroke-width:0.234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cczsccccccccc" + inkscape:connector-curvature="0" + id="path1198-8" + d="m 105.20443,263.76118 c -0.11527,-0.005 -0.21753,10e-4 -0.31006,0.0155 0.94356,0.26762 2.64054,0.73864 3.88927,2.47941 1.24872,1.74078 2.28336,4.1536 1.31042,7.08538 -0.33259,1.00221 -1.54677,0.16255 -2.22015,0.33971 0,0 -0.502,0.17024 -0.52627,0.607 0.0359,0.32337 0.0249,0.70642 0.0221,0.9091 l 0.5327,-0.2156 c 0,0 -0.48128,-1.63276 0.77464,-1.19321 1.2559,0.43958 1.84194,0.188 2.19779,-2.99361 0.35583,-3.18165 -2.49073,-6.30008 -4.89789,-6.90708 -0.30089,-0.0759 -0.55723,-0.1179 -0.77256,-0.1266 z" + style="display:inline;opacity:1;fill:url(#linearGradient1910);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsccccc" + inkscape:connector-curvature="0" + id="path1920" + d="m 115.21984,275.40182 c -0.0435,-0.003 -0.0892,0.002 -0.13591,0.0108 0.13594,0.15903 1.20405,1.62539 0.34556,4.31422 -0.90937,2.84822 -1.98426,4.61055 -4.0089,5.41697 -0.77613,0.30914 -1.47038,0.41811 -2.03295,0.43615 0.26591,0.1225 0.55825,0.19443 0.88057,0.20206 5.37947,-0.90006 6.67697,-7.89104 5.81876,-9.46092 -0.32182,-0.58872 -0.56112,-0.89762 -0.86713,-0.91933 z" + style="fill:url(#linearGradient1953);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="czcsc" + inkscape:connector-curvature="0" + id="path2006" + d="m 105.21683,263.95105 c 0,0 1.44363,0.30926 2.68129,1.33457 1.23766,1.02532 2.32944,3.13019 2.54783,4.98647 0,0 -1.06766,-3.05739 -2.43864,-4.3313 -1.37097,-1.27391 -2.79048,-1.98974 -2.79048,-1.98974 z" + style="fill:url(#linearGradient2014);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2016" + d="m 115.22966,275.67266 c 0,0 1.38978,1.97316 -0.18875,5.31896 0,0 0.98659,-4.04927 -0.20589,-4.76991 -0.66058,-0.22305 -1.16674,0.5319 -1.16674,0.5319 0,0 1.14959,-1.49274 1.56138,-1.08095 z" + style="fill:url(#linearGradient2024);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2026" + d="m 104.1113,279.46456 c 0,0 -0.34316,1.16674 -0.24021,2.14474 0.10294,0.97801 0.34316,2.98549 0.34316,2.98549 0,0 -0.58337,-1.59569 -0.60053,-2.47075 -0.0171,-0.87505 -0.0858,-1.63 0.49758,-2.65948 z" + style="fill:url(#linearGradient2034);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2082" + d="m 105.20443,263.76118 c -1.5073,-0.061 -1.01727,1.50282 0.0816,4.39663 0.59731,1.57291 0.72879,2.67706 0.70435,3.40755 0.17233,-0.61032 0.5462,-1.5186 1.36167,-2.27583 1.21326,-0.97057 2.281,-1.16479 2.281,-1.16479 -1.1267,-2.78114 -1.63645,-2.77025 -3.70106,-4.24625 -0.28019,-0.0684 -0.52384,-0.10906 -0.72761,-0.11731 z" + style="fill:#ffffff;fill-opacity:0.207071;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cszccc" + inkscape:connector-curvature="0" + id="path2441" + d="m 164.08408,261.54211 c 0,0 3.7754,-1.07402 6.06842,-2.66419 0.67786,-0.47007 1.32016,-1.38651 1.3843,-2.57107 0.0641,-1.18456 0.007,-2.93489 0.007,-2.93489 l -4.49496,2.02035 z" + style="opacity:1;fill:#a82a19;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csccccc" + inkscape:connector-curvature="0" + id="path2443" + d="m 151.30748,259.75524 c 0,0 -0.28266,-0.55678 0.15896,-1.13416 0.69574,-0.9096 1.91157,-2.21098 3.5594,-2.88098 2.69379,-1.09527 4.08509,-1.12489 4.08509,-1.12489 l 7.1637,3.01941 -3.16742,3.9667 z" + style="opacity:1;fill:url(#radialGradient2146);fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path2437" + d="m 151.29032,259.75524 8.91589,1.99409 c 0,0 2.8714,0.62163 3.87787,-0.26642 1.5393,-1.3913 3.76019,-6.44642 3.76019,-6.44642 l -0.93501,-0.3588 c 0,0 -2.44035,5.73958 -3.86125,6.21321 -1.42092,0.47364 -11.71132,-2.02971 -11.71132,-2.02971 -0.29921,0.35107 -0.20459,0.58875 -0.0464,0.89405 z" + style="opacity:1;fill:#c83737;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path2439" + d="m 166.90926,254.67769 2.95692,-1.33339 c 0.72189,-0.31616 1.16929,-0.0833 1.67762,0.0277 l -3.69953,1.66453 z" + style="opacity:1;fill:#de8787;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2113" + d="m 152.26668,259.04952 c 0.11497,-0.0766 7.75358,1.54345 9.31948,1.73702" + style="fill:none;stroke:url(#linearGradient2164);stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path2115" + d="m 170.57503,253.9551 -2.70943,1.21747 -0.68592,-0.24471" + style="fill:none;stroke:url(#linearGradient2172);stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2117" + d="m 167.9143,255.16799 -1.40528,3.01388" + style="fill:none;stroke:url(#linearGradient2180);stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path2148" + d="m 153.50903,257.05628 c 0,0 7.21984,-0.13726 9.07289,0.0343 1.85306,0.17158 2.86904,0.20589 2.86904,0.20589 l -6.34844,-2.71095 c 0,0 -1.68795,0.24782 -3.10394,0.78855 -1.70718,0.58925 -3.07191,1.68219 -3.07191,1.68219 z" + style="fill:#ff8080;fill-opacity:0.308081;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2190" + d="m 135.79074,261.88853 21.86277,-9.19644" + style="fill:none;stroke:#df7271;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2193" + d="m 157.45939,251.89135 c 0,0 0.4125,0.24265 0.10919,0.84927" + style="fill:none;stroke:#7d140b;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2250" + d="m 153.50903,240.99645 7.78971,-2.64233" + style="fill:none;stroke:#b03232;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2254" + d="m 149.35218,244.26781 c 0,0 0.48042,-1.13242 0.51473,-2.19622" + style="fill:none;stroke:#df4747;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2252" + d="m 149.9745,242.12887 -4.56402,1.57853" + style="fill:none;stroke:#b03232;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path2256" + d="m 160.58996,240.82575 c 0,0 0.70226,-0.88978 0.77089,-2.60557" + style="fill:none;stroke:#df4747;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccscc" + inkscape:connector-curvature="0" + id="path2269" + d="m 132.42192,250.75932 0.0343,7.18917 c 0,0 0.27453,0.96085 1.42411,1.54422 l -0.97802,-0.30887 c 0,0 -0.90937,-0.66915 -0.90937,-1.20105 0,-1.09811 0.10292,-7.15487 0.10292,-7.15487 z" + style="fill:#8f3028;fill-opacity:0.39899;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path2370" + d="m 103.858,242.74344 52.02416,-14.36488" + style="fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.59, 1.59;stroke-dashoffset:0;stroke-opacity:0.525253" /> + <g + transform="rotate(2.5572893,64.327736,589.08542)" + id="g3006"> + <path + sodipodi:nodetypes="cccccc" + style="fill:#fecbaa;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 126.93966,159.58336 -4.39658,6.26747 0.91056,1.22489 8.11176,-3.39717 -2.3339,-4.37583 z" + id="path2977" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path3012" + d="m 126.98187,159.61868 -4.02241,5.75298 0.79513,0.60804 6.01022,-5.84652 -0.93544,-0.79513 z" + style="fill:#e3dbdb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + style="fill:#4795ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 157.10771,147.51614 -9.16735,1.26284 c -6.17697,2.13737 -14.02825,7.20476 -21.09424,10.89792 0,0 1.70317,-0.0879 2.07735,0.52017 0.37418,0.60804 0.53156,1.29426 0.53156,1.29426 l 20.49659,-11.40272 z" + id="path2967" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#ac9393;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 131.55818,163.34446 0.43287,1.05643 -0.98221,2.0112 -7.76774,0.72278 z" + id="path2979" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccc" + style="fill:#207eff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 129.4583,161.51541 c 0,0 0.70864,0.3364 1.08282,0.94443 0.37417,0.60804 0.39756,1.28389 0.39756,1.28389 l 20.93055,-12.11164 -1.65073,-1.73625 z" + id="path2969" + inkscape:connector-curvature="0" /> + <path + style="fill:#1158ca;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 151.82245,151.7724 5.28526,-4.16272 -6.87551,2.38538 z" + id="path2971" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccc" + style="fill:#4e4e4e;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 123.19789,164.96215 -1.844,2.11864 c -0.0117,0.16537 -0.28599,0.40897 0.17656,0.43301 l 3.44478,-0.54044 c 0,0 0.0468,-1.02899 -0.32741,-1.49671 -0.37417,-0.46772 -1.44993,-0.5145 -1.44993,-0.5145 z" + id="path2981" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.75355967,0,0,0.75355967,33.808326,40.21793)" + id="g8698"> + <path + inkscape:connector-curvature="0" + id="path2989" + d="m 133.28385,165.10519 c 0,0 0.42995,0.62839 0.89297,0.79375 0.46302,0.16537 2.61276,0.52917 2.61276,0.52917 l -0.76067,-3.43959 z" + style="fill:#9e9e9e;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path2991" + d="m 135.86354,163.28618 0.8599,3.175 c 0,0 2.41432,-1.15755 3.63802,-2.74505 1.22369,-1.5875 2.11666,-3.27422 2.11666,-3.27422 l -0.59531,-0.99219 z" + style="fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;opacity:1;fill:#000000;fill-opacity:0.262626;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 133.28385,165.13826 2.97656,-0.19843 5.95313,-4.82865 -0.19844,-1.78594 -8.79739,5.29167 z" + id="path3014" + inkscape:connector-curvature="0" /> + </g> + <path + sodipodi:nodetypes="cscccc" + style="fill:#1158ca;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 130.89191,163.69931 c 0,0 0.65481,0.6548 0.65481,1.30961 0,0.65481 -0.58465,1.40317 -0.58465,1.40317 0,0 18.19437,-10.00924 21.42165,-13.6107 l -0.60804,-1.26285 z" + id="path2973" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + style="fill:#0f4eb2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 152.36977,152.8647 4.78471,-5.20825 -5.47259,3.91776 z" + id="path2975" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 151.35992,153.68722 4.34462,0.89151 1.91766,-1.12253 -1.88224,-3.94394 z" + id="path2987" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3031" + d="m 151.3582,153.71157 1.62058,0.3142 3.42304,-3.30729 -0.59531,-1.55443 z" + style="fill:#000000;fill-opacity:0.20202;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 149.53062,149.05962 2.1749,-4.49013 2.38538,-1.19269 1.28624,4.37319 z" + id="path2983" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#e4e4e4;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 151.96277,151.39823 3.88209,-2.80633 3.99902,1.47332 -2.12813,1.8475 z" + id="path2985" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path3033" + d="m 145.29875,150.29671 -6.28245,2.94926 -11.7518,6.28359 -2.98534,4.44066 c 0,0 5.29159,-4.16912 9.33249,-5.94144 4.0409,-1.77231 16.87446,-8.99376 16.87446,-8.99376 -1.61675,0.29768 -2.91626,0.24847 -5.18736,1.26169 z" + style="fill:#ffffff;fill-opacity:0.282828;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8693" + d="m 149.55886,148.998 2.18557,-4.43449 2.34818,-1.16426" + style="fill:none;stroke:#f0f0f0;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + id="text3070" + style="font-style:normal;font-weight:normal;font-size:10.4308px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:0.479798;stroke:none;stroke-width:0.26077" + transform="matrix(0.48517169,-0.42792925,0.6422277,0.33430735,208.49245,6.2811784)" + aria-label="1.0"> + <path + inkscape:connector-curvature="0" + id="path3090" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#ffffff;fill-opacity:0.479798;stroke-width:0.169069" + d="m -398.77068,172.58806 q -0.1931,0.01 -0.32485,-0.0959 -0.13221,-0.1125 -0.14385,-0.28435 l -0.22576,-3.33064 0.1064,0.14036 -0.50351,0.33117 q -0.0994,0.0648 -0.21667,0.071 -0.1793,0.009 -0.30505,-0.11018 -0.12621,-0.12609 -0.13606,-0.27147 -0.0152,-0.22469 0.1905,-0.35473 l 1.00105,-0.64876 q 0.11321,-0.0655 0.29252,-0.0749 0.17931,-0.009 0.29772,0.10386 0.12486,0.10628 0.1365,0.27809 l 0.2589,3.81967 q 0.0116,0.17182 -0.11134,0.29757 -0.11653,0.11879 -0.31652,0.12915 z" /> + <path + inkscape:connector-curvature="0" + id="path3092" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#ffffff;fill-opacity:0.479798;stroke-width:0.169069" + d="m -396.97723,173.18355 q -0.20206,0.0166 -0.32436,-0.0717 -0.11605,-0.0955 -0.13695,-0.28408 l -0.0122,-0.11056 q -0.0209,-0.18862 0.0728,-0.29482 0.1,-0.11328 0.30202,-0.12997 l 0.0905,-0.007 q 0.20207,-0.0166 0.31811,0.0787 0.1223,0.0884 0.1432,0.27698 l 0.0122,0.11057 q 0.0209,0.18864 -0.079,0.30191 -0.0937,0.10619 -0.29577,0.12288 z" /> + <path + inkscape:connector-curvature="0" + id="path3094" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#ffffff;fill-opacity:0.479798;stroke-width:0.169069" + d="m -393.33979,174.93617 q -0.53846,0.18923 -1.01505,0.028 -0.47258,-0.16994 -0.84835,-0.62957 -0.378,-0.46615 -0.61575,-1.1569 -0.23999,-0.69727 -0.22758,-1.2933 0.0124,-0.59604 0.28089,-1.01909 0.2725,-0.43178 0.81095,-0.621 0.53845,-0.18923 1.01104,-0.0192 0.47659,0.16123 0.85235,0.62087 0.37577,0.45962 0.61576,1.15689 0.23775,0.69075 0.22758,1.29331 -0.0125,0.59605 -0.28491,1.02781 -0.26849,0.42305 -0.80693,0.61227 z m -0.26914,-0.78198 q 0.26298,-0.0924 0.39248,-0.32785 0.13354,-0.24415 0.1211,-0.62692 -0.0147,-0.3893 -0.19413,-0.91062 -0.18173,-0.52784 -0.40697,-0.83581 -0.22532,-0.30797 -0.47773,-0.40919 -0.24839,-0.10995 -0.51135,-0.0175 -0.25671,0.0901 -0.39025,0.33437 -0.13577,0.23762 -0.12334,0.6204 0.0125,0.38277 0.19412,0.91062 0.1794,0.52131 0.40699,0.8358 0.22531,0.30797 0.47995,0.41571 0.25242,0.10123 0.50913,0.011 z" /> + </g> + <g + transform="translate(16.080892,-1.4325107)" + id="g3111"> + <path + style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 118.4739,177.73096 -12.95589,2.75955 0.23386,8.55931 12.86235,-2.89988 z" + id="path3108" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path3113" + d="m 118.40104,177.83826 -1.71979,-0.56224 -12.63386,2.64584 1.45521,0.66146 z" + style="fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3115" + d="m 104.21276,179.92186 0.26458,8.36745 1.28985,0.79375 -0.23151,-8.56589 z" + style="fill:#393939;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3117" + d="m 106.89167,181.74087 10.55026,-2.28203 0.0661,5.72161 -10.48411,2.31511 z" + style="fill:url(#radialGradient3133);fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6776" + d="m 117.07067,186.11687 0.0661,1.32291 1.38907,0.46303 c 0,0 -6.94532,2.51354 -10.64948,3.24114 l -2.44736,-0.19844 -1.65364,-2.51354 -0.33073,-6.41614 1.85208,-0.72761 z" + style="fill:#000000;fill-opacity:0.227273;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3119" + d="m 117.54114,185.11431 -1.02526,-0.4961 -0.0661,-4.96094 0.95911,-0.19843 z" + style="fill:#393939;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3121" + d="m 116.58203,184.51899 -9.55807,2.0836 0.0661,0.92604 10.48412,-2.38125 z" + style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="text3125" + style="font-style:normal;font-weight:normal;font-size:3.99791px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#c1ed25;fill-opacity:1;stroke:none;stroke-width:0.0999477" + transform="skewY(-10.98802)" + aria-label="SVG"> + <path + inkscape:connector-curvature="0" + id="path9127" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#c1ed25;fill-opacity:1;stroke-width:0.0999477" + d="m 109.38901,206.44397 q -0.27985,0 -0.50374,-0.068 -0.22388,-0.072 -0.42777,-0.24787 -0.052,-0.044 -0.08,-0.1 -0.028,-0.056 -0.028,-0.11194 0,-0.092 0.064,-0.15992 0.068,-0.072 0.16791,-0.072 0.076,0 0.13593,0.048 0.15192,0.12394 0.29984,0.1879 0.15192,0.064 0.37181,0.064 0.14792,0 0.27186,-0.044 0.12393,-0.048 0.19989,-0.12393 0.076,-0.08 0.076,-0.17991 0,-0.11993 -0.072,-0.20389 -0.072,-0.084 -0.21988,-0.13993 -0.14793,-0.06 -0.37581,-0.092 -0.21589,-0.032 -0.3798,-0.0959 -0.16391,-0.068 -0.27586,-0.16791 -0.10794,-0.10395 -0.16391,-0.23988 -0.056,-0.13992 -0.056,-0.31183 0,-0.25987 0.13193,-0.44377 0.13593,-0.1839 0.36381,-0.27985 0.22788,-0.0959 0.50374,-0.0959 0.25986,0 0.47975,0.0799 0.22388,0.076 0.36381,0.1959 0.11594,0.0919 0.11594,0.21189 0,0.0879 -0.068,0.15992 -0.068,0.072 -0.15992,0.072 -0.06,0 -0.10794,-0.036 -0.064,-0.056 -0.17191,-0.10395 -0.10794,-0.052 -0.22788,-0.084 -0.11994,-0.036 -0.22388,-0.036 -0.17191,0 -0.29185,0.044 -0.11594,0.044 -0.17591,0.11994 -0.06,0.076 -0.06,0.17591 0,0.11993 0.068,0.19989 0.072,0.076 0.20389,0.12394 0.13193,0.044 0.31584,0.08 0.23987,0.044 0.41978,0.10394 0.1839,0.06 0.30384,0.15592 0.11993,0.0919 0.1799,0.23588 0.06,0.13992 0.06,0.34382 0,0.25986 -0.14392,0.44776 -0.14393,0.18791 -0.3798,0.28785 -0.23188,0.1 -0.50374,0.1 z" /> + <path + inkscape:connector-curvature="0" + id="path9129" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#c1ed25;fill-opacity:1;stroke-width:0.0999477" + d="m 112.92179,203.59746 q 0.0999,0 0.17191,0.068 0.076,0.064 0.076,0.16392 0,0.052 -0.024,0.10794 l -0.98748,2.31079 q -0.036,0.08 -0.10395,0.11994 -0.064,0.036 -0.13193,0.036 -0.064,-0.004 -0.12394,-0.04 -0.06,-0.04 -0.092,-0.11194 l -0.98748,-2.31879 q -0.012,-0.024 -0.016,-0.048 -0.004,-0.028 -0.004,-0.052 0,-0.11594 0.084,-0.17591 0.084,-0.064 0.15991,-0.064 0.15192,0 0.21989,0.15592 l 0.87554,2.05892 -0.13993,0.004 0.80358,-2.06292 q 0.068,-0.15192 0.21989,-0.15192 z" /> + <path + inkscape:connector-curvature="0" + id="path9131" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';fill:#c1ed25;fill-opacity:1;stroke-width:0.0999477" + d="m 114.86084,206.44397 q -0.30384,0 -0.56771,-0.11194 -0.26386,-0.11194 -0.46375,-0.30784 -0.1999,-0.1999 -0.31584,-0.45976 -0.11194,-0.25986 -0.11194,-0.55971 0,-0.29984 0.11194,-0.5597 0.11594,-0.25987 0.31584,-0.45577 0.19989,-0.19989 0.46375,-0.31183 0.26387,-0.11194 0.56771,-0.11194 0.1879,0 0.36381,0.04 0.1759,0.04 0.32383,0.11994 0.06,0.032 0.088,0.088 0.032,0.052 0.032,0.10794 0,0.0959 -0.064,0.17191 -0.064,0.076 -0.16392,0.076 -0.032,0 -0.068,-0.008 -0.032,-0.008 -0.064,-0.024 -0.0999,-0.044 -0.21189,-0.068 -0.11194,-0.024 -0.23587,-0.024 -0.25987,0 -0.47575,0.13194 -0.21189,0.12793 -0.33983,0.34781 -0.12393,0.21589 -0.12393,0.47975 0,0.25987 0.12393,0.47975 0.12794,0.21989 0.33983,0.35182 0.21588,0.12793 0.47575,0.12793 0.11993,0 0.26386,-0.024 0.14392,-0.024 0.23588,-0.064 l -0.036,0.11993 v -0.68364 l 0.068,0.06 h -0.44377 q -0.10395,0 -0.17591,-0.068 -0.068,-0.068 -0.068,-0.17191 0,-0.10395 0.068,-0.17191 0.072,-0.068 0.17591,-0.068 h 0.65566 q 0.10394,0 0.17191,0.072 0.068,0.068 0.068,0.17191 v 0.84756 q 0,0.08 -0.04,0.13193 -0.036,0.052 -0.084,0.084 -0.18391,0.11194 -0.40379,0.1799 -0.21589,0.064 -0.45576,0.064 z" /> + </g> + </g> + <path + inkscape:connector-curvature="0" + id="path3296" + d="m 63.821752,198.50949 c 0,0 0.970523,0.64312 2.22168,0.39756 1.251153,-0.24555 1.789035,-0.8302 1.789035,-0.8302" + style="fill:none;stroke:#666666;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3296-2" + d="m 63.81006,198.74335 c 0,0 0.970523,0.64312 2.22168,0.39756 1.251153,-0.24555 1.789035,-0.8302 1.789035,-0.8302" + style="display:inline;fill:none;stroke:#b8b8b8;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3404" + d="m 63.903603,194.45201 -0.11693,3.92886 c 0.450368,0.22505 0.897071,0.43177 1.286235,0.35079 l 0.04677,-3.99902 c -0.62591,0.0388 -0.886256,-0.14176 -1.216075,-0.28063 z" + style="fill:#eee9ee;fill-opacity:0.328283;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path3406" + d="m 63.786673,198.91874 c 0.307736,0.13252 0.601081,0.26505 1.028989,0.39757 l -0.374177,1.42655 -1.099148,-0.23386 z" + style="fill:#eee9ee;fill-opacity:0.328283;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3408" + d="m 63.248794,200.92995 0.982215,0.3274 -0.795125,1.5201 -1.496711,-0.70158 z" + style="fill:#eee9ee;fill-opacity:0.328283;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.65128317,0.07829255,-0.10341453,0.4930702,116.21719,122.44412)" + id="g3446"> + <path + sodipodi:nodetypes="ccscscc" + style="display:inline;fill:#b41f1f;fill-opacity:1;stroke:none;stroke-width:0.226157" + d="m 75.003068,273.56672 c 0.94478,-0.12406 1.82301,0.67191 1.96912,1.78469 l 0.346713,2.28636 c 0.168269,1.10963 -0.49685,2.1085 -1.44163,2.23255 -0.94479,0.12405 -1.800861,-0.67507 -1.96913,-1.7847 l -0.346713,-2.28636 c -0.14611,-1.11278 0.49686,-2.10849 1.44164,-2.23254 z" + id="rect1273-7" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccccccccccc" + id="rect1273-0-2" + style="display:inline;fill:#071a18;fill-opacity:1;stroke:none;stroke-width:0.226157" + d="m 75.483308,273.61548 c -0.15775,-0.0314 -0.31493,-0.0707 -0.48032,-0.049 -0.2362,0.031 -0.45339,0.11679 -0.64425,0.24497 -0.19085,0.12818 -0.35506,0.29916 -0.48535,0.50092 -0.13029,0.20177 -0.22665,0.43414 -0.28114,0.68591 -0.0545,0.25177 -0.0672,0.52265 -0.0307,0.80084 l 0.346533,2.35675 c 0.0365,0.27819 0.11908,0.53641 0.23672,0.76558 0.10148,0.19766 0.23905,0.36149 0.38646,0.50962 0.15798,0.0316 0.31511,0.0708 0.48078,0.049 0.94477,-0.12405 1.58798,-1.1194 1.44187,-2.23218 l -0.346993,-2.35674 c -0.0681,-0.51841 -0.30507,-0.95577 -0.62363,-1.27567 z" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#000000;fill-opacity:0.181818;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 75.179088,273.55389 c -0.0584,7.9e-4 -0.11716,0.005 -0.17621,0.0129 -0.16201,0.0213 -0.300643,0.0973 -0.442443,0.16601 l 0.950823,2.49299 1.65892,0.78943 -0.19791,-1.66404 c -0.13698,-1.04323 -0.91768,-1.808 -1.79318,-1.79731 z" + id="path2398-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + sodipodi:nodetypes="ccccsccccccccc" + id="rect1273-0-4-5" + style="display:inline;fill:#de381f;fill-opacity:1;stroke:none;stroke-width:0.226157" + d="m 75.440019,273.569 c -0.15775,-0.0314 -0.271641,-0.0242 -0.437031,-0.003 -0.2362,0.031 -0.490464,0.0812 -0.681314,0.20936 -0.19086,0.12818 -0.322384,0.33547 -0.452664,0.53723 -0.13029,0.20177 -0.222272,0.43344 -0.276772,0.68521 -0.0545,0.25177 -0.0673,0.52265 -0.0307,0.80084 l 0.346543,2.2866 c 0.0365,0.27819 0.11908,0.53641 0.23672,0.76558 0.10148,0.19767 0.23905,0.36149 0.38646,0.50962 0.15798,0.0316 0.31511,0.0708 0.48077,0.049 0.94478,-0.12405 1.58799,-1.1194 1.44188,-2.23218 l -0.346983,-2.28659 c -0.068,-0.51841 -0.263628,-0.92085 -0.582188,-1.24075 z" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#e48a89;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 73.734738,274.57139 c -128.639381,65.58535 -64.3196906,32.79267 0,0 z m -0.15762,0.51677 c -0.098,0.38671 -0.25201,1.3449 -0.20515,1.59965 0.18872,1.30401 0.02365,0.56279 0.130383,1.35066 0.11037,0.81484 0.62436,2.12612 1.98108,1.8634 0.38144,-0.0228 0.45934,-0.41287 0.39739,-0.92036 -0.23746,0.22959 -0.53358,0.3844 -0.86868,0.4284 -0.16567,0.0218 -0.32261,-0.0175 -0.48059,-0.0491 -0.14742,-0.14814 -0.28507,-0.31187 -0.38654,-0.50953 -0.11765,-0.22917 -0.20018,-0.48714 -0.23668,-0.76533 l -0.346713,-2.28674 c -0.0323,-0.24567 -0.0239,-0.48492 0.0155,-0.71106 z" + id="path2436-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccsccccccccc" /> + </g> + <use + height="100%" + width="100%" + transform="translate(4.5309895,-1.9124563)" + id="use3448" + xlink:href="#g3446" + y="0" + x="0" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,88.497514,123.96055)" + id="g1559-4" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-6-5-1" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-3-3-7" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1464-9-4-9" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-2-1-3" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(1.1868684,0,0,1.217799,46.230074,108.19235)" + id="g1567-4" + style="display:inline"> + <path + style="display:inline;fill:#829645;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.019794,78.565374 -1.166741,-0.240212 0.720635,-5.010118 z" + id="path1561-9-4-0" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#677536;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 69.019794,78.565372 1.37328,-0.737405 -1.819386,-4.512923 z" + id="path1563-1-1-8" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1569-0" + d="m 71.274108,79.406974 -0.960845,0.514739 0.686319,-8.064235 1.336749,6.559629 z" + style="fill:#5c6b21;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1571-0" + d="m 70.999582,71.857478 -1.612847,4.735594 1.210741,-0.01085 z" + style="fill:#b2c859;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1573-2" + d="m 69.386735,76.593072 -0.549057,2.951166 1.475585,0.377471 0.28421,-3.339492 z" + style="fill:#7f9435;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.440849,79.647186 -1.166741,-0.240212 0.720635,-5.010118 z" + id="path1561-2" + inkscape:connector-curvature="0" /> + <path + style="fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 72.440849,79.647184 1.37328,-0.737405 -1.819386,-4.512923 z" + id="path1563-5" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path1561-9-6" + d="m 68.107463,80.446148 -1.166741,-0.240212 0.720635,-5.010118 z" + style="display:inline;fill:#a6bf3f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1563-1-2" + d="m 68.107463,80.446146 1.37328,-0.737405 -1.819386,-4.512923 z" + style="display:inline;fill:#6b8416;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + d="m 131.0654,206.03692 h 1.41901 v 5.43955 c -0.48873,0.39347 -0.95886,0.32172 -1.41901,0 z" + style="fill:#e7dae8;fill-opacity:1;stroke:none;stroke-width:0.234436" + id="rect402" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,23.585479,123.19248)" + id="g400"> + <path + sodipodi:nodetypes="cccccccccc" + inkscape:connector-curvature="0" + d="m 120.54513,89.420008 c 1.59616,-0.636813 1.67081,-0.628004 3.23552,0.03116 0.20331,0.135032 0.23453,0.34925 0.22708,0.498481 l 0.003,3.728167 c 0.008,0.210805 0.0131,0.420579 -0.17482,0.539541 -0.9635,0.737962 -2.36526,0.592787 -3.31676,0.03522 -0.20025,-0.16602 -0.21125,-0.392027 -0.19185,-0.627657 v -3.765648 c 0.004,-0.139827 0.055,-0.328515 0.21823,-0.439287 z" + style="display:inline;fill:#625563;fill-opacity:1;stroke:none;stroke-width:0.186965" + id="rect375-5" /> + <ellipse + ry="0.6163938" + rx="1.7445437" + cy="89.588615" + cx="122.14373" + id="path378-1" + style="display:inline;fill:#a194a2;fill-opacity:1;stroke:none;stroke-width:0.146358" /> + </g> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path3654" + d="m 175.26814,192.46419 c 0,0 -0.80121,1.36247 -2.88658,2.785 l 0.96285,9.01902 c 0,0 1.25757,-0.4738 2.73824,-2.30595" + style="fill:none;stroke:#f0f7f6;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3698" + d="m 165.16535,185.729 3.46114,3.64822" + style="fill:none;stroke:#e2e9e7;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3700" + d="m 172.88276,191.38843 -4.2095,-2.10475" + style="fill:none;stroke:#e7f3f1;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path3702" + d="m 174.81091,205.1857 -0.19758,-1.77683" + style="fill:none;stroke:#d8ebe9;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3704" + d="m 173.44402,194.42862 -0.51449,-3.13374" + style="fill:none;stroke:#d8ebe9;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3706" + d="m 165.13308,185.70962 -4.66328,-1.88516" + style="fill:none;stroke:#9fb0ac;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + transform="rotate(14.255647)" + ry="1.2005144" + rx="0.61586231" + cy="186.08946" + cx="228.13513" + id="path3708" + style="fill:none;fill-opacity:1;stroke:#cfd8d7;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <ellipse + ry="1.2005144" + rx="0.61586231" + cy="200.31274" + cx="172.91211" + id="path3708-4" + style="display:inline;fill:#bbcecc;fill-opacity:1;stroke:#f0f7f6;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <path + style="display:inline;fill:none;stroke:#7a928c;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 165.32349,185.56001 3.46114,3.64822" + id="path3698-6" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#6c7f7d;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 165.29122,185.54063 -4.66328,-1.88516" + id="path3706-3" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#7e9590;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 173.03706,191.22503 -4.2095,-2.10475" + id="path3700-8" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#79918b;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 175.26876,192.23365 c 0,0 -0.57034,1.15726 -2.65571,2.57979 l 0.96285,9.01902 c 0,0 1.05236,-0.29424 2.53303,-2.12639" + id="path3654-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="display:inline;fill:none;stroke:#9fb0ac;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 175.07868,205.0311 -0.23386,-2.05798" + id="path3702-5" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + style="display:inline;fill:none;stroke:#819892;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 173.67551,193.99287 -0.60427,-2.83875" + id="path3704-8" + inkscape:connector-curvature="0" /> + <ellipse + style="display:inline;fill:#bbcecc;fill-opacity:1;stroke:#79918b;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="path3708-4-2" + cx="173.0892" + cy="200.16722" + rx="0.61586231" + ry="1.2005144" /> + <g + transform="matrix(1.0399189,0,0,1.1555747,48.178642,147.54882)" + id="g1450-54" + style="display:inline"> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.48967,82.684143 -2.522217,0.960845 -0.188738,0.480422 2.65948,0.223054 z" + id="path1498-1" + inkscape:connector-curvature="0" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.795873,84.056777 1.321163,2.333482 1.338318,0.223052 -0.03431,-2.350638 z" + id="path1500-1" + inkscape:connector-curvature="0" /> + <path + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 28.053241,83.576355 1.92169,-1.647161 h 1.818743 l -1.355479,0.892212 z" + id="path1502-9" + inkscape:connector-curvature="0" /> + <path + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.08579,-1.132425 z" + id="path1466-7" + inkscape:connector-curvature="0" /> + <path + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.010669,86.165017 -1.722815,-0.279048 0.922072,-1.868406 1.370973,0.06066 z" + id="path1460-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 31.59303,84.041828 -0.897805,2.074659 1.9412,-1.492298 z" + id="path1462-0" + inkscape:connector-curvature="0" /> + <path + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 29.275722,85.825305 0.9706,1.237515 1.298178,-0.0364 -0.812876,-0.982733 z" + id="path1464-60" + inkscape:connector-curvature="0" /> + <path + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.600027,84.63632 -0.206251,1.989731 -0.909939,0.412504 -0.764347,-0.970598 z" + id="path1458-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.2521,85.463731 1.870217,-1.612846 -1.321164,-2.590851 -0.960845,1.887373 z" + id="path1468-34" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.180827,83.593514 0.102947,-1.286847 2.796746,0.326001 -0.274526,0.549055 z" + id="path1470-96" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.318091,82.28951 1.630005,-1.304003 1.938848,0.308843 -0.789265,1.355476 z" + id="path1472-5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-6-9" + d="m 34.822901,84.321288 -1.337203,-0.279048 0.715687,-1.868406 0.892534,-0.162393 z" + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-3-9" + d="m 35.034703,81.992204 -0.456642,2.280554 1.506708,-1.492298 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + inkscape:connector-curvature="0" + id="path1464-9-8" + d="m 33.476281,83.981576 0.753354,1.237515 1.007611,-0.0364 -0.630933,-0.982733 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-2-9" + d="m 36.056518,82.792591 -0.160087,1.989731 -0.70627,0.412504 -0.593266,-0.970598 z" + style="display:inline;fill:#445500;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,53.424081,168.95074)" + id="g1559-2" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-6-5-0" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-3-3-2" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1464-9-4-7" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-2-1-6" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,55.681432,168.10423)" + id="g1559-5" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-6-5-08" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-3-3-6" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1464-9-4-0" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-2-1-2" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="matrix(1.1826133,0,0,1.1826133,-1.9547711,-45.910941)" + id="g15335"> + <g + transform="matrix(0.30648786,0,0,0.30648786,0.84333196,166.3971)" + id="g2092" + style="fill:#000000"> + <path + style="fill:url(#linearGradient8007);fill-opacity:1;stroke-width:0.248721" + inkscape:connector-curvature="0" + id="path2313" + d="m 108.82387,203.71197 -33.413116,34.19162 c -11.289426,13.98058 7.682979,12.35395 15.816141,16.38073 2.917493,2.98216 -11.182476,5.18334 -8.264984,8.16798 2.917492,2.98216 17.641749,5.74545 20.564209,8.72761 2.9175,2.98216 -5.971774,6.14588 -3.05428,9.12804 2.91749,2.98216 9.66528,0.15669 10.92878,7.04128 0.90037,4.91969 12.15995,2.11412 17.66662,-1.91515 2.91749,-2.98465 -5.58129,-2.70359 -2.6638,-5.68575 7.25518,-7.41933 14.01043,-2.69613 16.49266,-10.13039 1.22619,-3.6736 -10.68006,-5.66336 -7.75759,-8.64552 8.39432,-4.90228 37.40757,-8.09337 23.64089,-21.86005 l -34.63434,-35.4004 c -4.23571,-4.06658 -11.30435,-4.11135 -15.32119,0 z m 38.38007,65.90597 c 0,1.69628 12.49821,2.80806 12.49821,-0.40044 -1.78084,-5.15349 -11.02081,-4.80528 -12.49821,0.40044 z m -56.300381,9.01363 c 2.959774,2.55934 7.531257,-0.63672 8.901709,-4.20835 -2.867748,-3.81039 -13.602528,0.1368 -8.901709,4.20835 z M 145.637,273.10252 c -3.81537,3.42239 0.4278,6.89453 4.18846,4.68341 0.83819,-0.85063 -0.0224,-3.83279 -4.18846,-4.68341 z" /> + <path + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1;stroke-width:0.248721" + id="path2315" + d="m 100.82751,256.1348 c 0.8929,0.55465 14.39843,3.29804 17.69895,3.84522 1.14412,0.24126 0.33329,1.4202 -1.2436,2.2161 -3.5567,0.94514 -20.807961,-6.06132 -16.45535,-6.06132 z" /> + <path + inkscape:connector-curvature="0" + style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.248721" + id="path2317" + d="m 122.12545,206.10964 13.2195,13.42593 c 1.25355,1.28092 1.23614,3.76315 0.53474,4.47697 l -6.56373,-5.25049 -1.29086,7.77501 -5.48429,-2.89511 -8.78232,5.54896 -2.90755,-11.69733 -4.71823,8.16301 h -7.212889 c -2.939876,0 -3.285597,-3.73081 -0.614338,-6.40207 4.665997,-5.03659 10.020947,-10.17018 12.930977,-13.14488 2.92496,-2.98962 8.02124,-2.90506 10.88899,0 z" /> + <path + style="fill:url(#linearGradient8017);fill-opacity:1;stroke:none;stroke-width:0.863275px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.36483,205.90357 -35.099585,36.32045 c 0,0 -3.052139,3.66257 0,5.49385 3.052138,1.83128 23.806675,5.49385 23.806675,5.49385 l 21.36497,-47.30815 c 0,0 -2.74693,-2.74692 -5.49385,-2.13649 -2.74692,0.61043 -4.57821,2.13649 -4.57821,2.13649 z" + id="path8009" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsccsc" /> + </g> + <g + transform="matrix(0.32175499,0,0,0.32175499,3.4326083,193.93264)" + id="g2190" + style="fill:#000000"> + <g + id="g7498" + transform="matrix(0.26458333,0,0,0.26458333,-1.3719515,36.637716)" + style="fill:#000000"> + <path + inkscape:connector-curvature="0" + id="path7131" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 139.06411,694.98079 c -0.24215,-9.92803 -0.36322,-15.49741 -0.36322,-25.54651 0,-10.0491 0,-15.9817 0.36322,-26.15187 0.24215,-10.0491 1.93718,-10.41232 10.41232,-11.01769 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -4.47972,0.24215 -11.98628,0.60537 -15.61848,0.60537 -3.6322,0 -11.8652,-0.36322 -15.73955,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47514,0.72644 10.41232,0.96859 10.65446,11.01769 0.24215,10.0491 0.36322,15.9817 0.36322,26.0308 0,10.0491 -0.12107,15.61848 -0.36322,25.66758 -0.24214,10.04909 -2.17932,10.65446 -10.65446,11.01768 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 4.72186,-0.24214 12.10735,-0.60536 15.73955,-0.60536 3.6322,0 10.65447,0.24214 15.61848,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -8.47514,-0.36322 -10.17017,-0.96859 -10.41232,-11.01768 z" /> + <path + inkscape:connector-curvature="0" + id="path7133" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 222.38348,644.61422 0.12107,42.01249 c 0,2.3004 -0.60537,3.63221 -1.45288,3.63221 -0.96859,0 -2.3004,-2.17932 -5.81153,-6.65904 l -41.5282,-53.51448 -15.61848,-0.24215 c -0.72645,0.72644 -0.72645,2.05825 0,2.78469 5.81152,0.36322 8.83836,4.23757 10.17017,8.95944 l -0.12108,52.0616 c 0,10.77554 -2.05824,11.50198 -10.53339,12.34949 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 5.9326,-0.12107 7.99085,-0.60536 13.07594,-0.60536 5.08508,0 6.90119,0.48429 12.95486,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -8.47514,-0.84751 -10.53339,-1.33181 -10.53339,-12.34949 l -0.12108,-38.62245 c 0,-4.11649 0.60537,-5.9326 1.57396,-5.9326 0.72644,0 2.05825,1.33181 4.1165,3.99543 l 42.25465,53.39341 c 1.3318,1.8161 2.90576,2.90576 4.84293,2.90576 1.69503,0 1.45289,-1.45288 1.45289,-3.75328 l 0.12107,-61.02103 c 0,-10.77555 2.05825,-11.50199 10.53339,-12.3495 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -5.9326,0.12107 -7.99085,0.60537 -13.07593,0.60537 -5.08509,0 -6.90119,-0.4843 -12.95487,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47515,0.84751 10.5334,1.33181 10.5334,12.3495 z" /> + <path + inkscape:connector-curvature="0" + id="path7135" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 265.81292,694.98079 c -0.24215,-9.68588 -0.36322,-15.25526 -0.36322,-24.82007 4.23757,0.12107 8.47514,2.05825 11.01769,5.20616 l 19.00853,23.97255 c 2.42147,3.14791 4.1165,6.78012 4.35865,8.71729 0,0.36322 0.12107,0.72644 0.60537,0.72644 2.42147,-0.12107 2.17932,-0.60536 5.81152,-0.60536 4.72187,0 7.74871,0.48429 13.43916,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -2.17932,-0.36322 -7.7487,-1.57395 -11.8652,-6.65904 l -26.51509,-31.47911 c -0.96859,-1.08966 -1.57396,-2.05824 -1.57396,-3.02683 0,-0.84752 0.12107,-1.69503 4.23757,-5.9326 l 17.79781,-18.2821 c 5.56938,-5.9326 11.62305,-7.7487 16.46599,-8.35407 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -5.69045,0.12107 -7.86978,0.60537 -12.71272,0.60537 -4.84294,0 -8.59621,-0.4843 -14.28667,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 4.35865,0.36322 9.56481,2.42147 4.60079,7.86978 l -19.37175,21.30893 c -2.54255,2.78469 -6.53797,4.96401 -11.01769,5.32723 0,-8.47514 0.12107,-14.28667 0.36322,-23.48825 0.24215,-10.0491 2.05825,-10.65447 10.53339,-11.01769 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -5.9326,0.12107 -9.68588,0.60537 -15.86062,0.60537 -6.05368,0 -9.44374,-0.4843 -15.49741,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47514,0.36322 10.17017,0.96859 10.41232,11.01769 0.24215,10.0491 0.48429,15.9817 0.48429,26.0308 0,10.0491 -0.24214,15.61848 -0.48429,25.66758 -0.24215,10.04909 -1.93718,10.65446 -10.41232,11.01768 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 5.9326,-0.12107 9.56481,-0.60536 15.73955,-0.60536 6.05368,0 9.56481,0.48429 15.61848,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -8.47514,-0.36322 -10.29124,-0.96859 -10.53339,-11.01768 z" /> + <path + inkscape:connector-curvature="0" + id="path7137" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 368.54187,631.78043 c -7.02226,-0.96859 -6.65904,-3.26899 -18.52424,-3.26899 -12.22842,0 -23.00396,8.11192 -23.00396,20.94571 0,11.38091 7.99085,16.82922 17.43458,20.82464 7.62763,3.39006 20.21927,6.05368 20.21927,19.85606 0,9.80695 -5.81152,16.10277 -15.37633,16.10277 -11.38091,0 -19.85605,-6.29582 -22.51967,-18.40317 -1.45288,-0.48429 -1.57395,-0.24215 -2.66362,0.36322 0.4843,9.32266 0.96859,12.47057 2.42147,18.40317 7.62763,0 10.89662,2.78469 21.67216,2.78469 5.56938,0 10.77554,-1.33181 15.01311,-3.87435 6.90119,-4.35865 11.38091,-11.8652 11.38091,-19.61391 0,-11.50198 -7.86978,-16.95028 -16.70814,-20.70356 -5.81153,-2.42147 -22.51967,-7.14334 -22.51967,-19.00854 0,-6.78011 6.41689,-14.77096 13.43916,-14.77096 11.8652,0 16.82921,8.71729 19.25068,16.70814 1.33181,0 1.57396,0.12107 2.66362,-0.72644 -0.36322,-5.81153 -0.84752,-9.20159 -2.17933,-15.61848 z" /> + <path + inkscape:connector-curvature="0" + id="path7139" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 421.98069,709.38853 c 11.74413,0 23.7304,-5.56938 31.9634,-16.34492 -0.60537,-1.08966 -1.45288,-1.8161 -2.78469,-1.8161 -8.59622,9.44373 -16.82922,13.19701 -28.08905,13.19701 -18.76639,0 -28.21012,-19.00854 -28.21012,-36.68527 0,-19.73498 12.59164,-35.95882 27.8469,-35.95882 16.70814,0 23.85148,11.13876 26.99939,21.55108 1.08966,0.12107 1.8161,0 2.78469,-0.60537 -0.60537,-6.29582 -1.45289,-12.10735 -2.66362,-18.76639 -6.17475,-0.60537 -11.62305,-5.44831 -26.51509,-5.44831 -23.97255,0 -39.34889,18.76639 -39.34889,41.52821 0,21.43 11.98628,39.34888 38.01708,39.34888 z" /> + <path + inkscape:connector-curvature="0" + id="path7141" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 489.70806,674.51937 c -2.66362,0 -3.51113,-0.96859 -3.02684,-2.17933 l 12.71272,-31.35803 h 0.36322 l 11.62305,33.53736 z m -13.68131,25.30435 7.26441,-18.76639 c 0.60537,-1.57395 1.33181,-2.66361 4.23757,-2.66361 h 25.30436 l 7.62763,22.27752 c 1.69503,4.96401 -3.14791,4.96401 -8.95944,5.32723 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 4.47972,-0.12107 11.13877,-0.60536 15.86063,-0.60536 4.96401,0 10.17017,0.48429 14.64989,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -4.72186,-0.36322 -8.71729,-0.84751 -10.89661,-7.02226 l -25.30436,-70.46477 c -1.8161,1.08966 -4.72187,2.42147 -6.29582,2.42147 l -28.08905,66.10612 c -3.14791,7.38549 -6.78011,8.59622 -12.10735,8.95944 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 4.47972,-0.12107 7.26441,-0.60536 11.98628,-0.60536 4.96401,0 8.59621,0.48429 13.07593,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -4.60079,-0.24214 -10.29124,-1.08966 -8.35407,-6.17475 z" /> + <path + inkscape:connector-curvature="0" + id="path7143" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 565.52655,672.34004 c 2.66362,0.84752 6.17475,1.08966 10.29125,1.08966 22.03537,0 28.33119,-13.80237 28.33119,-24.09362 0,-7.14333 -4.47971,-20.46142 -26.87831,-20.46142 -3.14791,0 -11.62305,1.21074 -16.46599,1.21074 -6.05368,0 -9.44374,-0.4843 -15.49741,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47514,0.36322 10.29125,0.96859 10.41232,11.01769 0.12107,10.0491 0.24215,15.9817 0.24215,26.0308 0,10.0491 0,15.61848 -0.24215,25.66758 -0.24215,10.17017 -1.93718,10.65446 -10.41232,11.01768 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 5.9326,-0.12107 9.56481,-0.60536 15.73955,-0.60536 6.78012,0 11.13876,0.48429 17.19244,0.60536 0.72644,-0.72644 0.72644,-2.05825 0,-2.78469 -8.35407,-0.48429 -12.3495,-1.08966 -12.47057,-8.11192 -0.12107,-9.08051 -0.24215,-16.82922 -0.24215,-25.54651 z m 0.24215,-34.74809 c 0.12107,-3.51113 2.05825,-5.81152 10.77554,-5.81152 8.35407,0 16.95029,4.35864 16.95029,19.73497 0,13.07594 -6.65904,19.00854 -18.40317,19.00854 -2.90577,0 -7.99085,-0.24215 -9.56481,-0.60537 v -0.60536 c 0,-10.0491 0.12108,-21.67216 0.24215,-31.72126 z" /> + <path + inkscape:connector-curvature="0" + id="path7145" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:121.073px;line-height:100%;font-family:'Linux Libertine Display O';-inkscape-font-specification:'Linux Libertine Display O';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.908051px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 647.32304,664.95456 -14.1656,0.12107 c 0,0 -0.12107,-16.46599 0.24215,-26.39402 0.12107,-2.90576 1.57395,-5.32723 4.47972,-5.32723 h 18.88746 c 9.08051,0 10.89662,6.4169 13.56023,14.77097 1.45288,0.24214 1.69503,0 2.90577,-0.60537 -0.60537,-4.96401 -2.42147,-16.95029 -2.66362,-17.91888 0,-0.24214 -0.12107,-0.36322 -0.48429,-0.36322 -2.05825,0.36322 -3.14791,0.84752 -6.05368,0.84752 h -35.35346 c -3.6322,0 -9.68588,-0.4843 -15.73955,-0.60537 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 8.47514,0.36322 10.0491,0.96859 10.41232,11.01769 0.24215,9.92802 0.24215,15.9817 0.24215,26.0308 0,10.0491 0,15.73955 -0.24215,25.66758 -0.36322,10.04909 -1.93718,10.65446 -10.41232,11.01768 -0.72644,0.72644 -0.72644,2.05825 0,2.78469 5.9326,-0.12107 12.3495,-0.60536 15.9817,-0.60536 h 26.87831 c 5.81153,0 15.49741,0.60536 15.49741,0.60536 1.69503,-6.05367 3.39006,-14.40774 4.35865,-20.58249 -1.21074,-0.72644 -1.33181,-0.96859 -2.90577,-0.60537 -2.42147,8.71729 -6.78011,17.43458 -15.9817,17.43458 h -18.88746 c -2.66362,0 -4.35865,-1.93717 -4.47972,-5.20616 -0.36322,-10.17017 -0.24215,-31.35803 -0.24215,-31.35803 l 14.1656,0.12108 c 10.29125,0.12107 10.77554,2.66361 11.13876,8.11192 0.72644,0.72644 1.93718,0.72644 2.66362,0 -0.12108,-4.23757 -0.4843,-5.69045 -0.4843,-9.44373 0,-3.99543 0.36322,-6.78012 0.4843,-10.41232 -0.72644,-0.72644 -1.93718,-0.72644 -2.66362,0 -0.36322,6.65904 -0.84751,8.11192 -11.13876,8.11192 z" /> + </g> + </g> + <g + transform="translate(0,-3.1659699)" + aria-label="www.inkscape.org" + style="font-style:normal;font-weight:normal;font-size:6.00086px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.150022" + id="text9463"> + <path + d="m 22.248875,288.60978 q 0.04657,0 0.08467,0.0339 0.04233,0.0339 0.04233,0.0931 0,0.0127 -0.0042,0.0296 -0.0042,0.0169 -0.0085,0.0254 l -0.651933,1.94734 q -0.01693,0.0381 -0.05503,0.0635 -0.03387,0.0212 -0.07197,0.0169 -0.0762,-0.004 -0.1143,-0.0804 l -0.5969,-1.40547 0.0762,0.0169 -0.529167,1.38854 q -0.03387,0.0762 -0.1143,0.0804 -0.0381,0.004 -0.0762,-0.0169 -0.0381,-0.0254 -0.0508,-0.0635 l -0.668866,-1.94734 q -0.0127,-0.0296 -0.0127,-0.055 0,-0.055 0.03387,-0.0889 0.0381,-0.0381 0.09737,-0.0381 0.0381,0 0.06773,0.0212 0.03387,0.0212 0.04657,0.0635 l 0.601133,1.8034 -0.08043,-0.004 0.5461,-1.37583 q 0.03387,-0.0804 0.118533,-0.0804 0.04233,0 0.07197,0.0212 0.02963,0.0212 0.04657,0.0593 l 0.579967,1.38007 -0.09313,0.004 0.5969,-1.80763 q 0.0254,-0.0847 0.118533,-0.0847 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4604" + inkscape:connector-curvature="0" /> + <path + d="m 25.432143,288.60978 q 0.04657,0 0.08467,0.0339 0.04233,0.0339 0.04233,0.0931 0,0.0127 -0.0042,0.0296 -0.0042,0.0169 -0.0085,0.0254 l -0.651933,1.94734 q -0.01693,0.0381 -0.05503,0.0635 -0.03387,0.0212 -0.07197,0.0169 -0.0762,-0.004 -0.1143,-0.0804 l -0.5969,-1.40547 0.0762,0.0169 -0.529167,1.38854 q -0.03387,0.0762 -0.1143,0.0804 -0.0381,0.004 -0.0762,-0.0169 -0.0381,-0.0254 -0.0508,-0.0635 l -0.668866,-1.94734 q -0.0127,-0.0296 -0.0127,-0.055 0,-0.055 0.03387,-0.0889 0.0381,-0.0381 0.09737,-0.0381 0.0381,0 0.06773,0.0212 0.03387,0.0212 0.04657,0.0635 l 0.601133,1.8034 -0.08043,-0.004 0.5461,-1.37583 q 0.03387,-0.0804 0.118533,-0.0804 0.04233,0 0.07197,0.0212 0.02963,0.0212 0.04657,0.0593 l 0.579966,1.38007 -0.09313,0.004 0.5969,-1.80763 q 0.0254,-0.0847 0.118533,-0.0847 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4606" + inkscape:connector-curvature="0" /> + <path + d="m 28.615411,288.60978 q 0.04657,0 0.08467,0.0339 0.04233,0.0339 0.04233,0.0931 0,0.0127 -0.0042,0.0296 -0.0042,0.0169 -0.0085,0.0254 l -0.651933,1.94734 q -0.01693,0.0381 -0.05503,0.0635 -0.03387,0.0212 -0.07197,0.0169 -0.0762,-0.004 -0.1143,-0.0804 l -0.5969,-1.40547 0.0762,0.0169 -0.529167,1.38854 q -0.03387,0.0762 -0.1143,0.0804 -0.0381,0.004 -0.0762,-0.0169 -0.0381,-0.0254 -0.0508,-0.0635 l -0.668866,-1.94734 q -0.0127,-0.0296 -0.0127,-0.055 0,-0.055 0.03387,-0.0889 0.0381,-0.0381 0.09737,-0.0381 0.0381,0 0.06773,0.0212 0.03387,0.0212 0.04657,0.0635 l 0.601133,1.8034 -0.08043,-0.004 0.5461,-1.37583 q 0.03387,-0.0804 0.118533,-0.0804 0.04233,0 0.07197,0.0212 0.02963,0.0212 0.04657,0.0593 l 0.579966,1.38007 -0.09313,0.004 0.5969,-1.80763 q 0.0254,-0.0847 0.118533,-0.0847 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4608" + inkscape:connector-curvature="0" /> + <path + d="m 29.262913,290.81958 q -0.07197,0 -0.110066,-0.0466 -0.0381,-0.0466 -0.0381,-0.11853 v -0.0889 q 0,-0.0762 0.0381,-0.11853 0.0381,-0.0423 0.110066,-0.0423 h 0.02963 q 0.07197,0 0.110066,0.0423 0.0381,0.0423 0.0381,0.11853 v 0.0889 q 0,0.072 -0.0381,0.11853 -0.0381,0.0466 -0.110066,0.0466 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4610" + inkscape:connector-curvature="0" /> + <path + d="m 30.243525,290.69258 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 -0.05503,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -1.94733 q 0,-0.0508 0.03387,-0.0889 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0889 z m -0.127,-2.35797 q -0.0889,0 -0.135467,-0.0381 -0.04233,-0.0423 -0.04233,-0.11853 v -0.0423 q 0,-0.0762 0.04657,-0.1143 0.0508,-0.0423 0.135467,-0.0423 0.08043,0 0.122767,0.0423 0.04657,0.0381 0.04657,0.1143 v 0.0423 q 0,0.0762 -0.04657,0.11853 -0.04233,0.0381 -0.127,0.0381 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4612" + inkscape:connector-curvature="0" /> + <path + d="m 31.927729,288.60555 q 0.2794,0 0.4445,0.1143 0.169334,0.11006 0.2413,0.3048 0.0762,0.1905 0.0762,0.42333 v 1.2446 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 -0.05927,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -1.2319 q 0,-0.16933 -0.05503,-0.30903 -0.05503,-0.1397 -0.182033,-0.22437 -0.122767,-0.0847 -0.325967,-0.0847 -0.182033,0 -0.347133,0.0847 -0.160867,0.0847 -0.262467,0.22437 -0.1016,0.1397 -0.1016,0.30903 v 1.2319 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 -0.05927,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -1.89653 q 0,-0.0508 0.03387,-0.0889 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0889 v 0.3556 l -0.09737,0.1524 q 0.0085,-0.13547 0.08467,-0.25824 0.08043,-0.127 0.2032,-0.22436 0.122767,-0.1016 0.270934,-0.15664 0.1524,-0.0593 0.304799,-0.0593 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4614" + inkscape:connector-curvature="0" /> + <path + d="m 33.507292,290.81958 q -0.05503,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -2.87867 q 0,-0.0508 0.03387,-0.0889 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0889 v 2.87867 q 0,0.0508 -0.0381,0.0889 -0.03387,0.0381 -0.0889,0.0381 z m 1.439334,-2.1717 q 0.04657,0 0.08467,0.0423 0.0381,0.0381 0.0381,0.0847 0,0.055 -0.04657,0.0974 l -1.4224,1.21073 -0.0127,-0.30057 1.27,-1.0922 q 0.0381,-0.0423 0.0889,-0.0423 z m 0.03387,2.1717 q -0.05503,0 -0.09313,-0.0466 l -0.9652,-1.02446 0.1905,-0.17357 0.956733,1.02023 q 0.0381,0.0423 0.0381,0.0974 0,0.0593 -0.04657,0.0931 -0.04657,0.0339 -0.08043,0.0339 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4616" + inkscape:connector-curvature="0" /> + <path + d="m 35.472816,290.47668 q -0.03387,-0.0508 -0.03387,-0.0974 0.0042,-0.0508 0.05503,-0.0804 0.03387,-0.0296 0.0762,-0.0254 0.04657,0.004 0.08467,0.0423 0.1143,0.14817 0.275167,0.2413 0.1651,0.0889 0.389467,0.0889 0.118533,0 0.232833,-0.0381 0.118533,-0.0423 0.194733,-0.12276 0.0762,-0.0847 0.0762,-0.21167 0,-0.13123 -0.0762,-0.21167 -0.0762,-0.0804 -0.198966,-0.127 -0.118534,-0.0466 -0.254,-0.0804 -0.143934,-0.0381 -0.2794,-0.0847 -0.135467,-0.0508 -0.2413,-0.12276 -0.1016,-0.0762 -0.1651,-0.18204 -0.0635,-0.10583 -0.0635,-0.25823 0,-0.1778 0.09737,-0.31327 0.09737,-0.13546 0.262467,-0.21166 0.169333,-0.0762 0.381,-0.0762 0.105833,0 0.2286,0.0296 0.122767,0.0254 0.2413,0.0889 0.118533,0.0635 0.211667,0.17357 0.0381,0.0381 0.0381,0.0889 0,0.0466 -0.04233,0.0847 -0.03387,0.0254 -0.08043,0.0254 -0.04233,0 -0.07197,-0.0339 -0.1016,-0.1143 -0.2413,-0.17357 -0.1397,-0.0593 -0.300566,-0.0593 -0.122767,0 -0.232834,0.0423 -0.105833,0.0381 -0.1778,0.11853 -0.07197,0.0804 -0.07197,0.21167 0.0085,0.12276 0.08467,0.19896 0.08043,0.0762 0.207434,0.127 0.131233,0.0508 0.2921,0.0931 0.135466,0.0339 0.258233,0.0804 0.127,0.0466 0.220133,0.11853 0.09737,0.0677 0.1524,0.17357 0.05927,0.10583 0.05927,0.2667 0,0.18627 -0.105833,0.32173 -0.1016,0.13547 -0.275167,0.20744 -0.173567,0.072 -0.385233,0.072 -0.2286,0 -0.4445,-0.0889 -0.211667,-0.0889 -0.376767,-0.29633 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4618" + inkscape:connector-curvature="0" /> + <path + d="m 38.515523,288.60555 q 0.2032,0 0.372534,0.0466 0.169333,0.0423 0.270933,0.11854 0.105833,0.0762 0.105833,0.1651 0,0.0423 -0.03387,0.0847 -0.02963,0.0381 -0.0762,0.0381 -0.05503,0 -0.0889,-0.0254 -0.02963,-0.0254 -0.05927,-0.0593 -0.02963,-0.0339 -0.0889,-0.0635 -0.05503,-0.0254 -0.160867,-0.0466 -0.1016,-0.0212 -0.2286,-0.0212 -0.237066,0 -0.427566,0.11854 -0.1905,0.11853 -0.300567,0.32173 -0.110067,0.19897 -0.110067,0.44873 0,0.254 0.1016,0.4572 0.105834,0.2032 0.2921,0.32174 0.1905,0.1143 0.436034,0.1143 0.169333,0 0.262466,-0.0296 0.09737,-0.0296 0.160867,-0.0677 0.08467,-0.0466 0.118533,-0.0889 0.0381,-0.0466 0.09737,-0.0466 0.0508,0 0.08043,0.0339 0.02963,0.0296 0.02963,0.0804 0,0.0677 -0.1016,0.1524 -0.09737,0.0804 -0.270934,0.14394 -0.173566,0.0593 -0.402166,0.0593 -0.313267,0 -0.554567,-0.14816 -0.237067,-0.14817 -0.372533,-0.40217 -0.131234,-0.25823 -0.131234,-0.57997 0,-0.30903 0.135467,-0.56303 0.135467,-0.254 0.376767,-0.4064 0.2413,-0.15663 0.567266,-0.15663 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4620" + inkscape:connector-curvature="0" /> + <path + d="m 41.511335,288.65635 q 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0931 v 1.905 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 -0.05927,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -0.50377 l 0.07197,-0.0339 q 0,0.11853 -0.06773,0.2413 -0.0635,0.12276 -0.1778,0.2286 -0.1143,0.10583 -0.270934,0.17356 -0.1524,0.0635 -0.334433,0.0635 -0.283633,0 -0.512233,-0.14816 -0.224367,-0.14817 -0.3556,-0.4064 -0.127,-0.25824 -0.127,-0.57997 0,-0.3302 0.131233,-0.57997 0.131233,-0.254 0.3556,-0.39793 0.224367,-0.14393 0.503767,-0.14393 0.182033,0 0.338666,0.0635 0.160867,0.0635 0.2794,0.17356 0.118534,0.11007 0.186267,0.254 0.06773,0.1397 0.06773,0.2921 l -0.0889,-0.0635 v -0.53763 q 0,-0.055 0.03387,-0.0931 0.03387,-0.0381 0.09313,-0.0381 z m -0.880533,1.9685 q 0.224367,0 0.397933,-0.1143 0.173567,-0.11854 0.270934,-0.32174 0.1016,-0.20743 0.1016,-0.46143 0,-0.24977 -0.1016,-0.44873 -0.09737,-0.19897 -0.270934,-0.3175 -0.173566,-0.11854 -0.397933,-0.11854 -0.220133,0 -0.397933,0.1143 -0.173567,0.1143 -0.275167,0.31327 -0.09737,0.19897 -0.09737,0.4572 0,0.254 0.09737,0.46143 0.09737,0.2032 0.270933,0.32174 0.1778,0.1143 0.402167,0.1143 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4622" + inkscape:connector-curvature="0" /> + <path + d="m 43.329816,288.63941 q 0.287866,0 0.508,0.14394 0.224366,0.1397 0.3556,0.38946 0.131233,0.24554 0.131233,0.56727 0,0.32173 -0.131233,0.5715 -0.131234,0.24977 -0.3556,0.3937 -0.224367,0.14393 -0.503767,0.14393 -0.148167,0 -0.283633,-0.0423 -0.131234,-0.0466 -0.2413,-0.12277 -0.110067,-0.0762 -0.194734,-0.1778 -0.08467,-0.10583 -0.135466,-0.2286 l 0.0762,-0.055 v 1.31657 q 0,0.0508 -0.0381,0.0889 -0.03387,0.0381 -0.0889,0.0381 -0.05503,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -2.76014 q 0,-0.055 0.03387,-0.0931 0.03387,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0931 v 0.4572 l -0.05927,-0.0339 q 0.04233,-0.13124 0.122767,-0.23284 0.08467,-0.10583 0.194733,-0.1778 0.110067,-0.0762 0.2413,-0.1143 0.131233,-0.0381 0.275167,-0.0381 z m -0.02117,0.23707 q -0.2286,0 -0.402167,0.1143 -0.173566,0.11007 -0.275166,0.3048 -0.09737,0.1905 -0.09737,0.4445 0,0.24977 0.09737,0.44873 0.1016,0.19897 0.275166,0.31327 0.173567,0.11007 0.402167,0.11007 0.224367,0 0.3937,-0.11007 0.173567,-0.1143 0.275167,-0.31327 0.1016,-0.19896 0.1016,-0.44873 0,-0.24977 -0.1016,-0.4445 -0.1016,-0.19473 -0.275167,-0.3048 -0.169333,-0.1143 -0.3937,-0.1143 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4624" + inkscape:connector-curvature="0" /> + <path + d="m 45.808696,290.86191 q -0.325967,0 -0.575733,-0.1397 -0.249767,-0.1397 -0.389467,-0.38946 -0.1397,-0.24977 -0.1397,-0.5842 0,-0.35984 0.1397,-0.61384 0.143933,-0.254 0.3683,-0.38946 0.2286,-0.1397 0.4826,-0.1397 0.186267,0 0.359833,0.0677 0.1778,0.0635 0.313267,0.19473 0.135467,0.127 0.220133,0.31327 0.08467,0.18627 0.0889,0.4318 0,0.0508 -0.0381,0.0889 -0.0381,0.0339 -0.0889,0.0339 h -1.697566 l -0.0508,-0.2286 h 1.667933 l -0.05503,0.0508 v -0.0847 q -0.02117,-0.19897 -0.131234,-0.33867 -0.110066,-0.1397 -0.2667,-0.21166 -0.1524,-0.072 -0.321733,-0.072 -0.127,0 -0.262467,0.0508 -0.131233,0.0508 -0.2413,0.16087 -0.105833,0.10583 -0.173566,0.27516 -0.06773,0.1651 -0.06773,0.3937 0,0.24977 0.1016,0.45297 0.1016,0.2032 0.2921,0.32173 0.1905,0.11854 0.461434,0.11854 0.143933,0 0.262466,-0.0423 0.118534,-0.0423 0.207434,-0.11006 0.09313,-0.072 0.1524,-0.14817 0.04657,-0.0381 0.0889,-0.0381 0.04657,0 0.0762,0.0339 0.03387,0.0339 0.03387,0.0762 0,0.0508 -0.04233,0.0889 -0.127,0.1524 -0.3302,0.2667 -0.2032,0.11006 -0.4445,0.11006 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4626" + inkscape:connector-curvature="0" /> + <path + d="m 47.238041,290.81958 q -0.07197,0 -0.110066,-0.0466 -0.0381,-0.0466 -0.0381,-0.11853 v -0.0889 q 0,-0.0762 0.0381,-0.11853 0.0381,-0.0423 0.110066,-0.0423 h 0.02963 q 0.07197,0 0.110066,0.0423 0.0381,0.0423 0.0381,0.11853 v 0.0889 q 0,0.072 -0.0381,0.11853 -0.0381,0.0466 -0.110066,0.0466 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4628" + inkscape:connector-curvature="0" /> + <path + d="m 49.971254,289.73585 q 0,0.32173 -0.143934,0.57996 -0.1397,0.254 -0.381,0.40217 -0.2413,0.14393 -0.5461,0.14393 -0.300566,0 -0.5461,-0.14393 -0.2413,-0.14817 -0.385233,-0.40217 -0.1397,-0.25823 -0.1397,-0.57996 0,-0.32597 0.1397,-0.57997 0.143933,-0.254 0.385233,-0.40217 0.245534,-0.14816 0.5461,-0.14816 0.3048,0 0.5461,0.14816 0.2413,0.14817 0.381,0.40217 0.143934,0.254 0.143934,0.57997 z m -0.254,0 q 0,-0.25824 -0.105834,-0.4572 -0.105833,-0.2032 -0.2921,-0.3175 -0.182033,-0.11854 -0.4191,-0.11854 -0.232833,0 -0.4191,0.11854 -0.182033,0.1143 -0.2921,0.3175 -0.105833,0.19896 -0.105833,0.4572 0,0.25823 0.105833,0.4572 0.110067,0.19896 0.2921,0.3175 0.186267,0.1143 0.4191,0.1143 0.237067,0 0.4191,-0.1143 0.186267,-0.11854 0.2921,-0.3175 0.105834,-0.19897 0.105834,-0.4572 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4630" + inkscape:connector-curvature="0" /> + <path + d="m 50.621931,290.81958 q -0.05927,0 -0.09313,-0.0381 -0.03387,-0.0381 -0.03387,-0.0889 v -1.89653 q 0,-0.0508 0.03387,-0.0889 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0889 v 0.635 l -0.0635,0.0127 q 0.0127,-0.14817 0.07197,-0.2921 0.0635,-0.14817 0.169333,-0.27094 0.105833,-0.12276 0.249767,-0.19896 0.148166,-0.0762 0.3302,-0.0762 0.0762,0 0.148166,0.0339 0.07197,0.0296 0.07197,0.1016 0,0.0635 -0.03387,0.0974 -0.03387,0.0339 -0.08043,0.0339 -0.0381,0 -0.08467,-0.0212 -0.04233,-0.0212 -0.1143,-0.0212 -0.118533,0 -0.237066,0.072 -0.118534,0.0677 -0.2159,0.18627 -0.09737,0.11853 -0.156634,0.2667 -0.05503,0.14393 -0.05503,0.2921 v 1.04563 q 0,0.0508 -0.0381,0.0889 -0.0381,0.0381 -0.0889,0.0381 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4632" + inkscape:connector-curvature="0" /> + <path + d="m 52.942392,288.60555 q 0.186267,0 0.347133,0.0677 0.160867,0.0635 0.2794,0.16933 0.122767,0.1016 0.1905,0.22014 0.06773,0.1143 0.06773,0.22013 l -0.06773,-0.1016 v -0.3937 q 0,-0.055 0.03387,-0.0931 0.0381,-0.0381 0.09313,-0.0381 0.05503,0 0.0889,0.0381 0.0381,0.0381 0.0381,0.0931 v 1.83303 q 0,0.33867 -0.1397,0.5715 -0.1397,0.23284 -0.381,0.35137 -0.237066,0.12277 -0.541866,0.12277 -0.148167,0 -0.313267,-0.0381 -0.160866,-0.0381 -0.2794,-0.0974 -0.1143,-0.0593 -0.131233,-0.12277 -0.02963,-0.0381 -0.02963,-0.0762 0.0042,-0.0339 0.0381,-0.0593 0.0381,-0.0296 0.08467,-0.008 0.0508,0.0254 0.143934,0.0635 0.0381,0.0127 0.110066,0.0381 0.0762,0.0254 0.173567,0.0423 0.1016,0.0212 0.207433,0.0212 0.381,0 0.592667,-0.22013 0.211666,-0.2159 0.211666,-0.5715 v -0.4064 l 0.04657,0.0127 q -0.0381,0.1524 -0.127,0.2667 -0.0889,0.1143 -0.207433,0.19473 -0.118534,0.0762 -0.254,0.1143 -0.135467,0.0423 -0.270934,0.0423 -0.2921,0 -0.529166,-0.14816 -0.232833,-0.14817 -0.3683,-0.40217 -0.135467,-0.254 -0.135467,-0.57997 0,-0.32173 0.135467,-0.57573 0.135467,-0.25823 0.3683,-0.40217 0.232833,-0.14816 0.524933,-0.14816 z m 0.0254,0.23706 q -0.2286,0 -0.414866,0.11854 -0.182034,0.1143 -0.287867,0.3175 -0.1016,0.19896 -0.1016,0.45296 0,0.254 0.1016,0.4572 0.105833,0.2032 0.287867,0.32174 0.186266,0.1143 0.414866,0.1143 0.232833,0 0.414867,-0.1143 0.182033,-0.1143 0.287866,-0.31327 0.105834,-0.2032 0.105834,-0.46567 0,-0.26246 -0.105834,-0.46143 -0.105833,-0.2032 -0.287866,-0.31327 -0.182034,-0.1143 -0.414867,-0.1143 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;font-family:Quicksand;-inkscape-font-specification:Quicksand;fill:#000000;stroke-width:0.150022" + id="path4634" + inkscape:connector-curvature="0" /> + </g> + <g + id="g7508" + transform="matrix(0.07510125,0,0,0.07510125,6.9513552,214.00146)" + style="display:inline;fill:#000000"> + <path + inkscape:connector-curvature="0" + id="path7108" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 200.67967,777.90068 q -2.83434,0 -2.83434,-3.98341 0,-3.98341 4.13661,-8.88606 6.89436,-8.27323 19.151,-9.5755 l 4.21322,-0.22981 q 13.94193,0 20.22346,11.10758 3.7536,6.81775 3.7536,15.70382 0,3.67699 -0.61284,7.737 -2.22151,13.63551 -10.57135,23.13441 -9.19248,10.49475 -21.44912,10.49475 -12.18004,0 -15.47401,-6.81776 -0.99585,-2.14491 -0.99585,-4.51963 0,-2.45133 1.30227,-5.13247 2.52793,-4.90266 6.89436,-4.90266 0.38302,0 0.45962,0.45963 0.15321,0.38302 -0.0766,0.84264 -0.15321,0.45962 -0.53623,0.45962 -2.60454,0 -4.51964,3.37058 -1.22566,2.37472 -1.22566,4.36643 0,1.9917 0.76604,3.67699 2.45133,5.20907 11.72041,5.20907 10.49475,0 18.9978,-10.72456 7.6604,-9.6521 9.88191,-22.67478 0.76604,-4.21322 0.76604,-7.96682 0,-8.34984 -3.75359,-14.09514 -4.97926,-7.737 -15.62722,-7.737 -13.3291,0 -19.99365,8.96267 -3.37057,4.59624 -3.37057,8.57965 0,1.60868 0.68943,1.60868 -0.45962,1.53208 -1.9151,1.53208 z m 11.03098,29.03292 q 0,-11.64381 2.06831,-22.59818 2.06831,-11.03098 5.05586,-17.38911 3.06416,-6.43474 5.89851,-6.43474 1.22566,0 1.22566,1.22567 -3.44718,7.12417 -6.05171,18.99779 -4.82605,21.67893 -4.82605,31.33104 0,0.99585 -1.07246,0.99585 -2.29812,0 -2.29812,-6.12832 z" /> + <path + inkscape:connector-curvature="0" + id="path7110" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 279.08477,792.53205 q -2.91095,0 -2.91095,-6.35814 0,-3.60038 1.37887,-6.74115 -5.20907,4.51964 -11.64381,16.85288 -6.43473,12.25664 -6.43473,16.01024 0,0.91925 -1.22567,0.91925 -2.22151,0 -2.22151,-6.05172 0,-11.414 2.29812,-20.68308 2.29812,-9.26908 5.59209,-9.26908 1.45547,0 1.45547,1.68528 -3.52378,11.18419 -5.05586,22.9046 h 0.53623 q 6.20492,-14.32495 13.71211,-22.36837 4.28983,-4.59624 7.81361,-4.59624 0.76604,0 1.22567,0.45963 0.53622,0.45962 0.53622,1.14906 -0.53622,0.53622 -1.30226,1.60868 -0.76604,1.07246 -2.06831,5.13247 -1.30227,3.98341 -1.30227,8.73285 0,0.61284 -0.38302,0.61284 z" /> + <path + inkscape:connector-curvature="0" + id="path7112" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 290.52181,814.5174 q -6.28153,0 -6.28153,-9.88192 0,-5.89851 2.91095,-12.94608 4.06002,-9.88191 10.64796,-13.4823 2.83435,-1.53208 5.28568,-1.53208 2.45133,0 3.8302,1.07245 1.45547,1.07246 1.83849,2.14492 l 0.45963,0.99585 q -0.22981,1.30227 -1.30227,1.30227 -1.22566,0 -1.45548,-0.53623 -0.1532,-0.61283 -0.38302,-0.99585 -0.22981,-0.45963 -1.07245,-1.14906 -0.84265,-0.76604 -1.9151,-0.76604 -4.97926,0 -9.03928,8.96266 -4.59624,10.34154 -4.59624,19.45742 0,4.59624 1.8385,4.59624 1.45548,0 4.06001,-3.21737 2.68114,-3.29397 5.5921,-8.19663 5.05586,-8.42644 8.19662,-14.63136 2.60454,-5.51549 5.36228,-5.51549 1.45548,0 1.45548,1.76189 -0.68944,1.45548 -1.76189,4.13662 -1.07246,2.68114 -2.83435,10.64796 -1.76189,7.96681 -1.76189,15.85702 0,7.89022 2.37472,7.89022 0.91925,0 1.68529,-0.84265 0.76604,-0.76604 1.37887,-2.37472 0.22981,-0.84264 1.07246,-0.84264 0.30641,0 0.45962,0.22981 0.15321,0.22981 0,0.76604 -0.15321,0.53623 -0.53623,1.45547 -0.38302,0.99586 -1.68528,2.60454 -1.22567,1.60868 -2.60454,1.60868 -3.21737,0 -4.97926,-4.21322 -1.68529,-4.21322 -1.68529,-9.95852 0,-5.7453 0.84265,-11.03097 h -0.76604 q -9.72871,16.62307 -14.63137,16.62307 z" /> + <path + inkscape:connector-curvature="0" + id="path7114" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 362.26266,779.81578 q 2.22151,1.68529 4.21322,1.68529 2.0683,0 2.91095,-0.53623 0,0.99585 -0.91925,1.9151 -0.84264,0.84265 -2.52793,0.84265 -1.60869,0 -3.52379,-0.76604 -0.1532,7.20077 -2.37472,14.78457 -2.22152,7.50719 -5.7453,12.63966 -3.52378,5.05586 -6.97096,5.05586 -3.44718,0 -5.28568,-2.68114 -1.9151,-2.98755 -1.9151,-8.50304 0,-3.14077 0.38302,-6.74115 -9.4989,17.00609 -14.63137,17.00609 -5.05586,0 -5.05586,-8.57965 0,-8.88607 4.36643,-18.9978 3.67699,-8.04342 6.74115,-8.42644 1.45548,0 1.45548,1.60869 -0.91925,2.22151 -2.29812,5.7453 -1.37888,3.44718 -3.677,11.10758 -2.22151,7.6604 -2.22151,11.33739 0,3.60039 1.60868,3.60039 1.99171,0 6.20493,-6.43474 4.28982,-6.43473 7.50719,-12.86947 l 3.29397,-6.35813 q 2.14491,-4.28983 3.8302,-4.28983 1.68529,0 1.68529,1.60869 -4.67284,16.01023 -4.67284,25.04951 0,4.21322 2.45132,4.21322 2.75775,0 5.7453,-4.51964 3.06416,-4.59624 5.05587,-11.87362 2.06831,-7.35398 2.06831,-14.47816 v -0.45962 q -2.22152,-1.60868 -3.60039,-3.8302 -1.37887,-2.22152 -1.37887,-3.29397 0,-1.14906 0.99585,-2.06831 0.99585,-0.91925 2.14491,-0.91925 1.45548,0 2.60454,2.60454 1.14906,2.52793 1.53208,5.8219 z" /> + <path + inkscape:connector-curvature="0" + id="path7116" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 402.86248,775.29615 q 0,5.66869 3.21737,6.05171 -0.22982,1.07246 -1.7619,1.07246 -3.14076,0 -4.44303,-3.8302 -0.61283,-1.76189 -0.61283,-4.28983 0,-2.60453 1.9917,-6.20492 4.51964,-8.34984 16.39326,-10.72456 4.06001,-0.76604 8.65625,-0.76604 4.67285,0 7.96682,-0.91925 3.29397,-0.91925 4.51964,-2.06831 3.21736,-2.98755 4.74944,-2.98755 1.53208,0 1.53208,0.91924 0,0.22982 0,0.45963 -0.53622,2.14491 -4.59624,4.06001 -2.45132,1.07246 -5.51548,1.68529 -2.52794,1.07245 -4.21323,5.89851 -1.68528,4.74944 -3.52378,13.78872 3.98341,-0.38302 6.58794,-0.38302 0.68944,0 0.61284,0.84264 -0.30642,0.91925 -1.60869,0.99585 -1.30227,0 -6.05171,0.76604 -3.60039,17.77213 -6.28153,25.12612 -6.74115,18.61477 -19.22761,18.61477 -8.96267,0 -11.18418,-8.19663 -0.84265,-2.83435 -0.84265,-5.6687 0,-5.36228 2.83435,-10.72456 4.28983,-8.19662 11.26079,-8.19662 0.99585,0 1.60869,0.45962 0.68943,0.45962 0.91924,1.37887 -6.58794,0 -10.87776,6.81776 -3.37058,5.28567 -3.37058,10.95437 0,8.27323 5.8219,10.11173 1.37888,0.38302 3.60039,0.38302 2.22152,0 4.67285,-1.30227 2.52793,-1.22566 4.51963,-4.59624 2.06831,-3.29397 3.37058,-5.51549 1.30227,-2.29812 2.98755,-8.12002 1.99171,-7.12417 3.37058,-13.17589 1.37887,-6.12832 1.68529,-7.35398 -4.28983,0.68943 -6.51134,0.68943 -2.14491,0 -2.45133,-1.9151 -0.0766,-1.53208 0.84264,-1.76189 0.38302,0.45962 2.37473,0.45962 2.06831,0 6.43473,-0.38302 1.9151,-7.50719 3.677,-12.18003 1.76189,-4.74945 4.13661,-7.20078 -1.22566,0.0766 -3.8302,0.0766 -14.70797,0 -20.60647,8.65626 -2.83435,4.06001 -2.83435,8.19663 z m 33.70576,15.70382 q 0,0.38302 -0.68944,0.38302 -0.68943,0 -1.37887,-0.30642 -0.61283,-0.30642 -0.61283,-0.84264 0,-7.81361 1.76189,-12.56306 1.76189,-4.82605 4.67285,-4.82605 0.76604,0 1.30226,0.53622 0.53623,0.53623 0.53623,1.45548 -3.44718,3.44718 -4.97926,10.26494 -0.61283,2.83435 -0.61283,5.89851 z" /> + <path + inkscape:connector-curvature="0" + id="path7118" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 465.91925,792.53205 q -2.91096,0 -2.91096,-6.35814 0,-3.60038 1.37888,-6.74115 -5.20908,4.51964 -11.64381,16.85288 -6.43474,12.25664 -6.43474,16.01024 0,0.91925 -1.22566,0.91925 -2.22152,0 -2.22152,-6.05172 0,-11.414 2.29812,-20.68308 2.29812,-9.26908 5.59209,-9.26908 1.45548,0 1.45548,1.68528 -3.52378,11.18419 -5.05586,22.9046 h 0.53622 q 6.20493,-14.32495 13.71212,-22.36837 4.28982,-4.59624 7.81361,-4.59624 0.76604,0 1.22566,0.45963 0.53623,0.45962 0.53623,1.14906 -0.53623,0.53622 -1.30227,1.60868 -0.76604,1.07246 -2.06831,5.13247 -1.30226,3.98341 -1.30226,8.73285 0,0.61284 -0.38302,0.61284 z" /> + <path + inkscape:connector-curvature="0" + id="path7120" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 490.9918,777.36445 q 5.82191,0 5.82191,6.81776 0,3.9068 -2.60454,8.19663 -4.44303,7.12417 -11.79701,7.12417 -1.14906,0 -1.9151,-0.38302 -0.76604,-0.38302 -1.14907,-1.14906 5.43889,0 9.95853,-6.28153 3.67699,-5.05586 3.67699,-9.26908 0,-3.14077 -2.52793,-3.14077 -5.05587,0 -9.4223,7.89022 -4.67284,8.57964 -4.67284,17.61892 0,7.6604 4.36643,9.19248 0.84264,0.30641 2.14491,0.30641 1.30227,0 2.75774,-0.61283 1.45548,-0.68944 2.45133,-1.60868 1.99171,-1.8385 3.29397,-4.06002 0.30642,-0.61283 1.14906,-0.61283 1.37888,0 1.30227,0.45963 -0.22981,0.84264 -1.76189,2.83434 -1.45548,1.99171 -2.75774,3.21737 -1.22567,1.14906 -3.29398,2.06831 -1.9917,0.99585 -4.06001,0.99585 -8.12002,0 -10.34154,-7.6604 -0.68944,-2.60453 -0.68944,-5.36228 0,-5.13247 2.37473,-11.18418 3.75359,-9.19248 10.34154,-13.25249 3.60039,-2.14492 7.35398,-2.14492 z" /> + <path + inkscape:connector-curvature="0" + id="path7122" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 520.72822,777.36445 q 5.82191,0 5.82191,6.81776 0,3.9068 -2.60454,8.19663 -4.44303,7.12417 -11.79702,7.12417 -1.14906,0 -1.9151,-0.38302 -0.76604,-0.38302 -1.14906,-1.14906 5.43889,0 9.95853,-6.28153 3.67699,-5.05586 3.67699,-9.26908 0,-3.14077 -2.52793,-3.14077 -5.05587,0 -9.4223,7.89022 -4.67284,8.57964 -4.67284,17.61892 0,7.6604 4.36643,9.19248 0.84264,0.30641 2.14491,0.30641 1.30227,0 2.75774,-0.61283 1.45548,-0.68944 2.45133,-1.60868 1.99171,-1.8385 3.29397,-4.06002 0.30642,-0.61283 1.14906,-0.61283 1.37888,0 1.30227,0.45963 -0.22981,0.84264 -1.76189,2.83434 -1.45548,1.99171 -2.75774,3.21737 -1.22567,1.14906 -3.29398,2.06831 -1.9917,0.99585 -4.06001,0.99585 -8.12002,0 -10.34154,-7.6604 -0.68944,-2.60453 -0.68944,-5.36228 0,-5.13247 2.37473,-11.18418 3.75359,-9.19248 10.34154,-13.25249 3.60039,-2.14492 7.35398,-2.14492 z" /> + <path + inkscape:connector-curvature="0" + id="path7124" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 541.65518,825.70158 q -4.44303,0 -6.58794,-4.67284 -2.06831,-4.67285 -2.06831,-14.01854 0,-9.34569 2.75774,-22.13855 2.75775,-12.79287 6.43474,-21.21931 3.7536,-8.42644 6.51134,-8.42644 1.30227,0 1.30227,1.53208 -1.60869,3.67699 -4.06001,11.10758 -2.45133,7.35398 -4.13662,13.63551 -1.60868,6.28153 -2.98756,14.70797 -1.30226,8.42644 -1.30226,14.47815 0,5.97512 1.14906,9.19249 1.22566,3.29397 3.29397,3.29397 1.76189,0 3.37057,-1.68529 1.60869,-1.60868 2.29812,-3.21737 0.38302,-0.84264 1.37888,-0.45962 0.38302,0.15321 0.1532,0.61283 -0.1532,0.53623 -0.61283,1.30227 -0.38302,0.76604 -1.45547,2.37472 -2.29812,3.60039 -5.43889,3.60039 z" /> + <path + inkscape:connector-curvature="0" + id="path7126" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 552.73761,838.49445 q 6.89436,0 10.80116,-6.51134 3.37058,-5.7453 5.20908,-14.32495 -13.86533,0.30642 -21.29592,10.57135 -0.45962,0.68944 -1.45547,0.22981 -0.53623,-0.30641 -0.30642,-0.76604 3.29397,-4.97926 9.19248,-8.50304 5.89851,-3.44718 14.32495,-3.7536 0.84264,-3.8302 1.60868,-8.96267 0.76604,-5.13246 1.7619,-9.95852 h -0.68944 q -9.95852,17.69553 -15.16759,17.69553 -5.82191,0 -5.82191,-8.96267 0,-8.96267 3.8302,-18.00194 3.8302,-9.11588 6.97097,-9.80531 l 0.45962,-0.0766 q 1.30227,0 1.30227,1.68529 -0.84264,2.06831 -2.14491,5.43889 -1.30227,3.29397 -3.44718,10.95437 -2.14491,7.58379 -2.14491,11.87362 0,4.21322 1.83849,4.21322 2.14491,0 6.89436,-7.43059 6.97097,-10.87777 12.10343,-22.06195 2.22152,-4.67285 4.74945,-4.67285 1.60869,0 1.60869,1.7619 -1.45548,2.68114 -3.52379,10.03512 -2.06831,7.35398 -3.37057,14.86118 -1.30227,7.43058 -2.22152,11.64381 5.8219,0.99585 6.74115,5.05586 0.15321,0.68944 0.15321,1.8385 0,1.22566 -0.91925,2.0683 -0.91925,0.91925 -1.60868,0.91925 0.15321,-0.53623 0.0766,-1.9151 -0.0766,-1.30227 -0.53623,-2.22151 -0.38302,-0.91925 -1.53208,-1.9151 -1.14906,-0.99586 -2.98755,-1.45548 -5.89851,22.21516 -20.45327,22.21516 -6.28153,0 -8.34984,-4.44303 -0.0766,-0.22981 -0.0766,-0.38302 0,-0.45963 0.84264,-0.61283 0.76604,-0.0766 1.14906,0.53622 1.37887,3.14077 6.43474,3.14077 z" /> + <path + inkscape:connector-curvature="0" + id="path7128" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.498724px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 592.1019,815.05362 q -1.60869,0 -1.60869,-2.98755 0,-1.8385 0.99586,-3.90681 0.99585,-2.06831 2.83434,-2.06831 1.53208,0 1.53208,1.7619 0,1.76189 -2.83434,5.8985 z" /> + </g> + <g + id="g5690" + transform="matrix(0.98012979,0,0,0.98012979,22.311122,-43.843305)"> + <rect + ry="1.5951878" + y="309.14462" + x="42.538853" + height="7.0069218" + width="11.693553" + id="rect5386" + style="fill:url(#linearGradient8025);fill-opacity:1;stroke:none;stroke-width:0.146029;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <g + aria-label="1.0" + transform="scale(1.0930261,0.91489123)" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.70963px;line-height:1.25;font-family:'Linux Libertine O';-inkscape-font-specification:'Linux Libertine O Bold';letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.117741" + id="text6248-3"> + <path + d="m 42.328073,343.49942 q -0.13187,0 -0.216644,-0.0801 -0.08477,-0.0848 -0.08477,-0.20723 v -2.37365 l 0.06593,0.10361 -0.357932,0.21664 q -0.07064,0.0424 -0.150708,0.0424 -0.122451,0 -0.202515,-0.0895 -0.08006,-0.0942 -0.08006,-0.19781 0,-0.16013 0.145998,-0.2449 l 0.711155,-0.42387 q 0.08006,-0.0424 0.202514,-0.0424 0.12245,0 0.197805,0.0848 0.08006,0.0801 0.08006,0.20251 v 2.72217 q 0,0.12245 -0.08948,0.20723 -0.08477,0.0801 -0.221353,0.0801 z" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';letter-spacing:0px;fill:#ffffff;stroke-width:0.117741" + id="path4597" + inkscape:connector-curvature="0" /> + <path + d="m 43.544482,343.49471 q -0.136579,0 -0.211933,-0.0706 -0.07064,-0.0754 -0.07064,-0.21194 v -0.0801 q 0,-0.13658 0.07064,-0.20723 0.07535,-0.0754 0.211933,-0.0754 h 0.06123 q 0.136579,0 0.207223,0.0754 0.07536,0.0707 0.07536,0.20723 v 0.0801 q 0,0.13658 -0.07536,0.21194 -0.07064,0.0706 -0.207223,0.0706 z" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';letter-spacing:0px;fill:#ffffff;stroke-width:0.117741" + id="path4599" + inkscape:connector-curvature="0" /> + <path + d="m 45.602813,343.54652 q -0.405029,0 -0.687607,-0.21194 -0.277868,-0.21664 -0.423867,-0.59812 -0.145998,-0.38619 -0.145998,-0.88541 0,-0.50393 0.145998,-0.88541 0.145999,-0.38148 0.423867,-0.59342 0.282578,-0.21664 0.687607,-0.21664 0.405028,0 0.682896,0.21664 0.282578,0.21194 0.428577,0.59342 0.145999,0.38148 0.145999,0.88541 0,0.49922 -0.145999,0.88541 -0.145999,0.38148 -0.428577,0.59812 -0.277868,0.21194 -0.682896,0.21194 z m 0,-0.56516 q 0.197804,0 0.339093,-0.12245 0.145999,-0.12716 0.226062,-0.37677 0.08006,-0.25432 0.08006,-0.63109 0,-0.38148 -0.08006,-0.63109 -0.08006,-0.24961 -0.226062,-0.37206 -0.141289,-0.12716 -0.339093,-0.12716 -0.193095,0 -0.339094,0.12716 -0.145999,0.12245 -0.226062,0.37206 -0.08006,0.24961 -0.08006,0.63109 0,0.37677 0.08006,0.63109 0.08006,0.24961 0.226062,0.37677 0.145999,0.12245 0.339094,0.12245 z" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';letter-spacing:0px;fill:#ffffff;stroke-width:0.117741" + id="path4601" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path5730" + d="m 75.347965,123.46785 c -8.67295,8.03108 -17.135537,20.71891 -21.311935,33.72013 -0.0377,-0.0891 8.516211,-20.4125 25.362311,-33.58354 2.68317,-0.47985 -2.756916,-2.12865 -4.050376,-0.13664 z" + style="fill:url(#linearGradient5738);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccsc" + inkscape:connector-curvature="0" + id="path5857" + d="m 138.172,208.20356 c 0,0 -0.0935,-2.66601 -1.02899,-4.91107 -0.93545,-2.24507 -2.55309,-3.68365 -2.55309,-3.68365 l 6.061,1.11118 c 0,0 1.02899,0.3274 1.73057,1.35639 0.70158,1.02899 3.32083,5.23848 4.11596,7.95127" + style="display:inline;fill:none;stroke:url(#linearGradient5895);stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5897" + d="m 138.19519,203.65168 4.72943,-0.82682" + style="display:inline;fill:none;stroke:url(#linearGradient5905);stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5897-0" + d="m 138.54008,206.34796 5.52792,-1.3246" + style="display:inline;fill:none;stroke:url(#linearGradient5905-1);stroke-width:0.287176px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cssc" + inkscape:connector-curvature="0" + id="path3749-5" + d="m 99.374047,174.59945 c 2.107033,2.45103 11.051123,3.31104 18.963213,1.591 7.91207,-1.72001 17.4258,-4.57357 21.37123,-12.34111 2.75202,-5.41806 -6.06307,-4.38606 -6.06307,-4.38606" + style="display:inline;fill:none;fill-opacity:1;stroke:url(#linearGradient6460);stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6788" + d="m 103.03908,183.08637 1.89428,0.39756 0.3274,-5.94006" + style="fill:none;stroke:#3c8dac;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6790" + d="m 109.11946,183.48393 1.89428,0.21048 -0.0234,-5.72959" + style="fill:none;stroke:#55999a;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path6901" + d="m 103.67598,244.60583 6.83771,0.01 3.54718,0.40366 -0.10868,-1.24938 -4.09158,-3.0005 z" + style="fill:#000000;fill-opacity:0.232323;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + style="stroke:none" + transform="matrix(0.88539698,0.03425272,-0.03425272,0.88539698,25.266257,127.73808)" + id="g408"> + <path + sodipodi:nodetypes="cccc" + style="fill:url(#linearGradient6925);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.11257,121.93025 -9.05653,5.8136 11.47673,-4.37721 z" + id="path405" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path410" + d="m 103.53277,123.34237 0.41007,2.32243 -11.8868,2.07905 z" + style="fill:url(#linearGradient10910);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6937" + d="m 92.247616,127.69764 11.425394,-3.50502 0.27584,1.81966 z" + style="fill:#000000;fill-opacity:0.141414;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path412" + d="m 92.05604,127.74385 12.79395,-3.28255 3.11542,2.20455 z" + style="fill:url(#linearGradient6917);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6901-5" + d="m 144.99025,236.75574 11.14557,-0.19843 -4.96094,-3.63803 z" + style="display:inline;fill:#000000;fill-opacity:0.171717;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="translate(-0.396875,-0.13229167)" + id="g8796"> + <path + style="fill:none;stroke:#ffffff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.313131" + d="m 156.26581,230.53673 6.92228,2.33861" + id="path8777" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#ffffff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.313131" + d="m 153.23834,231.70229 6.92228,2.33861" + id="path8777-1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#ffffff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.313131" + d="m 150.18801,232.93853 6.92228,2.33861" + id="path8777-5" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;stroke:#ffffff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.313131" + d="m 147.16054,234.10409 6.92228,2.33861" + id="path8777-1-8" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline;stroke:none" + transform="matrix(0.88539698,0.03425272,-0.03425272,0.88539698,66.58053,119.88799)" + id="g408-6"> + <path + sodipodi:nodetypes="cccc" + style="fill:url(#linearGradient6996);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.11257,121.93025 -9.05653,5.8136 11.47673,-4.37721 z" + id="path405-3" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path410-6" + d="m 103.53277,123.34237 0.41007,2.32243 -11.8868,2.07905 z" + style="fill:url(#linearGradient6909);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path6937-1" + d="m 92.247616,127.69764 11.425394,-3.50502 0.27584,1.81966 z" + style="fill:#000000;fill-opacity:0.141414;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path412-1" + d="m 92.05604,127.74385 12.79395,-3.28255 3.11542,2.20455 z" + style="fill:url(#linearGradient7000);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path7096" + d="m 126.76849,230.25884 7.11067,2.05052 1.45521,-0.49609" + style="fill:none;stroke:#625563;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path7104" + d="m 138.31094,230.29191 0.85989,0.46302 0.8599,-0.3638" + style="fill:none;stroke:#625563;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path7132" + d="m 167.09357,182.43156 c 0,0 -1.40317,2.54908 -1.77735,2.97003" + style="fill:none;stroke:#dce4e3;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path7134" + d="m 165.0122,185.84593 c 0,0 -2.33861,3.57807 -8.02142,6.05699" + style="fill:none;stroke:url(#linearGradient7142);stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path7144" + d="m 152.29585,189.25864 -4.44903,1.89593 c 0,0 1.12253,0.74835 1.07576,1.63702 -0.0468,0.88867 -0.35618,1.6157 -0.35618,1.6157 1.98441,0.27651 4.28074,-0.0537 5.22186,-1.3092 0,0 0.23816,-1.73471 -1.49241,-3.83945 z" + style="fill:#ffffff;fill-opacity:0.414141;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="translate(-8.0681989,4.0691786)" + id="g7207"> + <path + inkscape:connector-curvature="0" + id="path1194" + d="m 168.43258,217.73182 0.49399,-0.0286 1.48768,-0.59217 -0.11841,5.12117 -1.15448,0.53283 z" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + id="path1192" + d="m 163.19135,215.30533 v 4.85474 l 5.95001,2.60497 v -5.09155 z" + style="display:inline;opacity:1;fill:#e6e6e6;stroke:none;stroke-width:0.234437px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#a5a5a5;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 163.19387,215.34352 1.37263,-0.51474 5.86802,2.28201 -1.304,0.60053 z" + id="path2368" + inkscape:connector-curvature="0" /> + </g> + <path + inkscape:connector-curvature="0" + id="path8092" + d="m 129.51213,216.86268 v -3.66184" + style="fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8092-7" + d="m 130.33209,217.13253 v -3.66184" + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8092-7-5" + d="M 131.28295,217.33924 V 213.6774" + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8092-7-5-6" + d="m 132.42396,217.41365 v -3.66184" + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8092-7-5-6-8" + d="m 133.41614,217.26482 v -3.66184" + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8092-7-5-6-8-5" + d="m 134.28432,216.9589 v -3.66184" + style="display:inline;fill:none;stroke:#796b7a;stroke-width:0.258152;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="display:inline;fill:#a7a7a7;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 111.38113,233.443 3.54088,0.74261 -1.37602,0.98901 -3.37709,0.33061 z" + id="path1362-8-8" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 110.11928,235.51349 0.17805,2.30989 3.17259,-0.87741 0.14057,-1.79285 z" + id="path1364-8-3" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + style="display:inline;fill:#4f5257;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 114.8145,234.20711 0.392,2.13193 -1.68201,0.50608 0.0645,-1.735 z" + id="path1366-6-7" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.71122168,0.22997984,-0.28452887,0.57486837,65.96299,153.46712)" + id="g8393" + style="display:inline"> + <path + style="display:inline;fill:#916f6f;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 138.15267,73.952957 -0.34316,-5.284648 1.09811,0.06863 1.44127,5.627806 z" + id="path1332-3-4" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#ac9393;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 137.80951,68.56536 1.26969,-1.132425 0.92653,0.274529 -1.02948,1.132425 z" + id="path1334-0-9" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#6c5353;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 139.86846,67.638832 3.50022,3.774749 -3.01979,2.985482 -1.37264,-5.662123 z" + id="path1336-5-6" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0.88605929,0,0,0.88605929,76.698266,154.58746)" + id="g1559-4-9" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-6-5-1-9" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-3-3-7-8" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1464-9-4-9-5" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-2-1-3-9" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="g1450-5-6" + transform="matrix(1.4156561,0.49085544,-0.42514702,1.2261491,79.800315,98.733972)"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1498-5-2" + d="m 30.855154,82.697299 -2.887701,0.947689 -0.188738,0.480422 2.65948,0.223054 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1500-9-7" + d="m 27.778715,84.12541 1.338321,2.264849 1.338318,0.223052 -0.03431,-2.350638 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1502-6-7" + d="m 27.967453,83.644988 2.007478,-1.715794 h 1.818743 l -0.829182,0.892212 z" + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path1466-2-8" + d="m 32.926099,83.130249 0.343159,2.316324 -0.658756,0.858422 -2.498308,-1.664846 0.06863,-1.046635 z" + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-7-1" + d="m 31.010669,86.165017 -1.108802,-0.279048 -0.890729,-1.710532 2.569761,-0.09721 z" + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1462-1-6" + d="m 31.59303,84.041828 -0.853846,2.011136 1.897241,-1.428775 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1464-6-61" + d="m 29.901867,85.885969 0.344455,0.887415 1.062083,0.04152 -0.576781,-0.771208 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-0-3" + d="m 32.600027,84.63632 0.01304,1.700295 -1.304662,0.478285 -0.588915,-0.746943 z" + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1468-3-6" + d="m 33.269258,85.446573 1.531433,-1.424658 -1.233448,-2.327727 -0.726935,1.453219 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1470-9-0" + d="m 30.180827,83.593514 0.907012,-1.234222 2.001943,0.28939 -0.246632,0.493044 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1472-6-6" + d="m 31.063679,82.355291 0.855178,-0.948785 1.648386,0.287682 -0.469564,0.955638 z" + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1525-1" + d="m 34.088901,82.605457 -0.701729,1.394555 0.760206,0.17103 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1527-7" + d="m 33.387172,83.9737 0.146193,1.197212 0.540917,0.06578 0.131574,-1.118276 z" + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1529-4" + d="m 34.088901,82.605457 0.74772,1.432778 -0.38224,1.172258 -0.380099,0.0262 z" + style="fill:#445016;fill-opacity:1;stroke:none;stroke-width:0.213859px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8561" + d="m 16.025199,77.580328 0.74445,0.3886 -2.034157,2.79789 1.268514,-2.376949 -0.539182,-0.58521 z" + style="fill:#c1cd7d;fill-opacity:1;stroke:none;stroke-width:0.18974px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + inkscape:connector-curvature="0" + id="path8503" + d="m 49.708593,208.95988 1.256771,-0.46302 1.256771,2.41432 -1.5875,-0.23151 z" + style="fill:#88aa00;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8505" + d="m 52.519791,211.96951 0.429948,-1.32291 -1.488281,-1.02526 z" + style="fill:#668000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8507" + d="m 52.982812,210.71274 1.256771,0.0661 -0.363802,1.52135 -1.289844,-0.33073 z" + style="fill:#445500;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8509" + d="m 54.261478,210.83101 -0.210476,3.48452 -0.888672,-0.35079 z" + style="display:inline;fill:#88aa00;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path8526" + d="m 54.115398,213.34796 -0.11693,0.93544 1.333005,0.8419 -0.07016,-1.19269 z" + style="fill:#668000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.88605929,0,0,0.88605929,62.105326,118.60273)" + id="g1559-4-0" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-6-5-1-3" + d="m 34.311915,88.675561 -2.308404,-0.564368 1.530435,-1.775249 0.892732,0.04472 z" + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-3-3-7-1" + d="M 34.426678,86.380664 34.02456,88.612269 35.7929,86.666054 Z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1464-9-4-9-0" + d="m 32.003511,88.111193 1.61212,1.735258 1.182578,-0.04747 -0.740491,-1.281653 z" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-2-1-3-7" + d="m 35.759743,86.681875 -0.187885,2.594954 -0.82891,0.537976 -0.696284,-1.265827 z" + style="display:inline;fill:#445500;stroke:none;stroke-width:0.288388px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path8676" + d="m 108.04371,168.70393 c 0,0 -8.380247,2.48695 -8.801196,5.19974" + style="fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path8700" + d="m 137.53356,162.2026 c 0,0 0.0468,-1.3564 -0.6782,-2.05798 -0.72497,-0.70158 -1.12253,-0.81851 -1.12253,-0.81851 l -2.12814,0.14032 2.29184,1.19269 c 0.39133,0.23698 1.43194,1.05818 1.63703,1.54348 z" + style="fill:#dfa292;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="translate(0.52916666,-0.52916662)" + id="g3581"> + <path + style="fill:#b2b068;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 178.83347,251.63935 -4.02677,1.1887 -1.79394,3.77034 4.89535,-0.42569 3.28384,0.79056 3.52709,1.27705 2.61489,-2.73653 0.88178,-2.67573 -7.45604,-1.88847 z" + id="path504" + inkscape:connector-curvature="0" /> + <path + style="fill:#8a6f64;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 173.04316,256.50718 0.82095,3.40545 2.85816,3.10141 0.0304,-6.78053 z" + id="path506" + inkscape:connector-curvature="0" /> + <path + style="fill:#a8877d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 176.60065,262.8012 2.12843,0.79054 -0.57925,-7.45467 -1.42756,0.0964 z" + id="path508" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#8a6f64;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 178.06013,256.1727 0.60812,7.60149 1.21625,1.09459 1.52028,-7.84471 z" + id="path510" + inkscape:connector-curvature="0" /> + <path + style="fill:#412c27;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 184.3483,258.05786 -2.22484,6.8435 3.2949,-2.89071 v -4.62172 z" + id="path512" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#8a6f64;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 188.09408,252.82805 0.18245,4.19602 -0.42569,3.28384 -2.49328,-0.42568 -0.24326,-3.28384 z" + id="path516" + inkscape:connector-curvature="0" /> + <path + style="fill:#a8877d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 179.94529,264.74717 2.18924,0.12161 2.43248,-6.87172 -3.22304,-1.09461 z" + id="path518" + inkscape:connector-curvature="0" /> + <path + style="fill:#8a6f64;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 180.75244,264.77141 1.4835,-4.51505 -0.0429,4.57955 z" + id="path520" + inkscape:connector-curvature="0" /> + <path + style="fill:#6c5649;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 186.407,255.13931 v 4.90204 l -1.03203,-0.129 -0.344,-3.44003 z" + id="path522" + inkscape:connector-curvature="0" /> + <path + style="fill:#c1cd7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 184.0501,252.17433 -2.49329,-0.63852 -2.64532,0.82096 -1.91558,0.48649 0.0912,1.61151 2.37166,0.12163 3.34465,1.30744 0.45608,-1.88515 2.00681,-1.21624 z" + id="path1291" + inkscape:connector-curvature="0" /> + <path + style="fill:#c1cd7d;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 173.04317,256.64399 1.79395,-3.70951 -0.18243,2.88856 z" + id="path1287" + inkscape:connector-curvature="0" /> + <path + style="fill:#96a35b;fill-opacity:1;stroke:none;stroke-width:0.234436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 185.02311,256.55279 -0.30407,-1.5507 3.40546,-2.15882 z" + id="path1289" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#000000;fill-opacity:0.257576;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 173.01546,256.84659 3.55468,1.1693 1.49671,-0.88867 2.89987,1.40317 3.67162,-0.56127 -3.08697,-1.0056 -3.50791,-0.77174 -4.88769,0.25725 z" + id="path8816" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <g + style="display:inline" + id="g1450-9" + transform="matrix(0.85107766,0.59757688,-0.6640371,0.94573126,209.12036,148.42254)"> + <path + inkscape:connector-curvature="0" + id="path1498-7" + d="m 30.48967,82.684143 -2.522217,0.960845 -0.188738,0.480422 2.65948,0.223054 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1500-2" + d="m 27.795873,84.056777 1.321163,2.333482 1.338318,0.223052 -0.03431,-2.350638 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1502-62" + d="m 28.053241,83.576355 1.92169,-1.647161 h 1.818743 l -1.355479,0.892212 z" + style="fill:#7a9122;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1466-21" + d="m 32.926099,83.130249 0.343159,2.316324 -0.943686,0.514739 -2.213378,-1.321163 0.08579,-1.132425 z" + style="fill:#657e12;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccc" + style="fill:#c87137;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.899264,88.775213 -1.132425,-2.264849 -1.647164,-0.102946 0.06863,-0.549056 1.578533,0.274527 0.446106,-1.029476 0.03432,-0.995161 0.480423,0.205896 -0.102949,1.029475 -0.24021,0.892215 1.891895,1.974382 -0.690841,0.66794 z" + id="path1447-7" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path1452-0" + d="m 35.548226,88.870564 -1.650021,-2.511428 -1.734947,-0.169854 -0.254784,0.157721 1.856275,0.157723 1.006996,2.377969 z" + style="fill:#deaa87;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1454-5" + d="m 33.752615,86.104353 0.303313,-0.0364 0.412504,-0.958466 0.01214,-1.188984 h -0.254783 v 1.213249 z" + style="fill:#deaa87;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path1456-5" + d="m 35.790876,88.712841 -0.885673,-1.929067 1.334575,1.431634 z" + style="fill:#784421;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1460-3" + d="m 31.010669,86.165017 -1.722815,-0.279048 0.922072,-1.868406 1.370973,0.06066 z" + style="fill:#88aa00;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1462-34" + d="m 31.59303,84.041828 -0.897805,2.074659 1.9412,-1.492298 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path1464-3" + d="m 29.275722,85.825305 0.9706,1.237515 1.298178,-0.0364 -0.812876,-0.982733 z" + style="fill:#668000;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1458-5" + d="m 32.600027,84.63632 -0.206251,1.989731 -0.909939,0.412504 -0.764347,-0.970598 z" + style="fill:#445500;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1468-9" + d="m 33.2521,85.463731 1.870217,-1.612846 -1.321164,-2.590851 -0.960845,1.887373 z" + style="fill:#5d6c22;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1470-5" + d="m 30.180827,83.593514 0.102947,-1.286847 2.796746,0.326001 -0.274526,0.549055 z" + style="fill:#98b522;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path1472-3" + d="m 30.318091,82.28951 1.630005,-1.304003 1.938848,0.308843 -0.789265,1.355476 z" + style="fill:#688013;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="display:inline;fill:#88aa00;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.822901,84.321288 -1.337203,-0.279048 0.715687,-1.868406 0.892534,-0.162393 z" + id="path1460-6-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccc" + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 35.034703,81.992204 -0.456642,2.280554 1.506708,-1.492298 z" + id="path1462-3-0" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#668000;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 33.476281,83.981576 0.753354,1.237515 1.007611,-0.0364 -0.630933,-0.982733 z" + id="path1464-9-49" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#445500;stroke:none;stroke-width:0.233099px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 36.056518,82.792591 -0.160087,1.989731 -0.70627,0.412504 -0.593266,-0.970598 z" + id="path1458-2-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <ellipse + transform="rotate(14.255647)" + ry="1.2005144" + rx="0.61586231" + cy="187.88388" + cx="225.9301" + id="path3708-47" + style="display:inline;fill:none;fill-opacity:1;stroke:#cfd8d7;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <ellipse + transform="rotate(14.255647)" + ry="1.2005144" + rx="0.61586231" + cy="189.68173" + cx="223.55463" + id="path3708-47-9" + style="display:inline;fill:none;fill-opacity:1;stroke:#cfd8d7;stroke-width:0.149352;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + <g + transform="matrix(0.87339455,0,0,0.74020468,5.9228705,123.87506)" + id="g400-1" + style="display:inline"> + <path + sodipodi:nodetypes="cccccccccc" + inkscape:connector-curvature="0" + d="m 120.54513,89.420008 c 1.59616,-0.636813 1.67081,-0.628004 3.23552,0.03116 0.20331,0.135032 0.23453,0.34925 0.22708,0.498481 l 0.003,3.728167 c 0.008,0.210805 0.0131,0.420579 -0.17482,0.539541 -0.9635,0.737962 -2.36526,0.592787 -3.31676,0.03522 -0.20025,-0.16602 -0.21125,-0.392027 -0.19185,-0.627657 v -3.765648 c 0.004,-0.139827 0.055,-0.328515 0.21823,-0.439287 z" + style="display:inline;fill:#625563;fill-opacity:1;stroke:none;stroke-width:0.186965" + id="rect375-5-5" /> + <ellipse + ry="0.6163938" + rx="1.7445437" + cy="89.588615" + cx="122.14373" + id="path378-1-1" + style="display:inline;fill:#a194a2;fill-opacity:1;stroke:none;stroke-width:0.146358" /> + </g> + <path + inkscape:connector-curvature="0" + id="path2680" + d="m 95.050667,242.52527 10.781783,3.00964 5.22552,-1.2237 -4.8948,1.62057 -0.33072,0.59531 -0.29766,-0.69453 z" + style="display:inline;fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g918-3" + style="display:inline" + transform="matrix(0.88605929,0,0,0.88605929,122.82441,160.37438)"> + <g + id="g898-6"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path862-1" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path854-8" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + style="fill:url(#linearGradient3765);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path856-9" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path858-2" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path860-8" + d="m 40.656062,122.54036 0.614212,11.33929 2.291482,-1.48828 -0.472472,-11.22117 z" + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path864-5" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path2838" + d="m 32.498511,120.90796 3.807237,1.04513 1.97827,11.79497 -3.95654,-1.08245 -0.597214,-1.60501 -1.306405,-0.89582 -0.44791,1.49303 -2.61281,-0.74652 z" + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + transform="translate(-1.8289666,-0.37325849)" + id="g2836"> + <path + style="fill:#3ecaf3;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.25896,133.00154 1.940944,-1.3064 1.53036,-4.3298 -1.493034,-2.46351 z" + id="path2830" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#2aa0ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 102.88477,335.9707 -10.253911,31.28907 8.662111,3.18164 3.7207,-12.34375 7.94727,2.09179 4.06445,14.84766 10.60742,3.00586 -11.13672,-38.18359 z m 5.68554,10.15821 3.33008,8.40234 -5.57617,-1.71484 z" + transform="matrix(0.2986068,0,0,0.2986068,0.06234731,22.44237)" + id="path2806" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="display:inline;fill:#9ce9ff;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 30.749783,122.7881 1.642337,-1.08245 3.69526,1.0078 -1.418383,1.41838 z" + id="path2811" + inkscape:connector-curvature="0" /> + <path + style="fill:#3ecaf3;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 34.626084,124.08066 3.50863,11.19776 1.642338,-1.19443 -3.695259,-11.34706 z" + id="path2828" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="g918-3-0" + style="display:inline" + transform="matrix(0.88605929,0,0,0.88605929,111.29168,35.817234)"> + <g + id="g898-6-5"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path862-1-4" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path854-8-2" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + style="fill:url(#linearGradient3757);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path856-9-1" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path858-2-9" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path860-8-2" + d="m 40.656062,122.54036 0.614212,11.33929 2.291482,-1.48828 -0.472472,-11.22117 z" + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path864-5-1" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + sodipodi:nodetypes="cccccccccsccccccccc" + inkscape:connector-curvature="0" + id="path2998" + d="m 31.38475,119.25308 c 0,0 -1.583602,1.47803 -1.741962,2.3754 l 0.7827,1.2519 9.616284,5.45201 -0.211147,5.80654 -2.692123,-0.84458 -6.7567,-8.86817 c 0,0 -0.05279,1.21409 -0.475081,1.31966 -0.422294,0.10558 -0.686227,0.10558 -0.686227,0.10558 0,0 0.332641,3.4296 0.959967,3.44473 1.448645,0.0349 2.714764,2.08122 2.893463,2.62575 0.739014,0.95016 -3.959004,-1.2141 -3.959004,-1.2141 l -1.372455,-3.64229 0.05279,-2.69212 -1.002948,-0.26393 0.05279,-2.0059 1.319668,-0.0528 1.741962,-3.32556 z" + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="translate(2.3888544,1.7916408)" + id="g2989"> + <path + style="fill:#cad9dd;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 37.265824,127.09902 -9.464206,-5.27776 4.686497,11.3992 z" + id="path2927" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#719aa4;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 32.488115,133.1458 2.314203,0.59722 2.388854,-6.71865 z" + id="path2929" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + </g> + <g + transform="translate(1.4780283,-0.15836017)" + id="g2996"> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.685504;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="rect2935" + width="2.5494125" + height="2.4876966" + x="25.965887" + y="116.27463" + ry="0.6607936" + transform="matrix(0.97579213,0.21870007,0,1,0,0)" /> + <ellipse + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.689256;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="path2953" + cx="36.635544" + cy="106.77193" + rx="1.3945963" + ry="1.3460615" + transform="matrix(0.96519793,0.26152048,0,1,0,0)" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:0.976233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 26.792304,122.36749 c 0,0 1.16131,-6.07047 7.495715,-5.64818" + id="path2955" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <ellipse + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.689256;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + id="path2953-4" + cx="30.219408" + cy="124.17725" + rx="1.3945963" + ry="1.3460615" + transform="matrix(0.96519793,0.26152048,0,1,0,0)" /> + <path + style="display:inline;fill:none;stroke:#ffffff;stroke-width:0.976233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 28.377724,131.54436 c 0,0 -2.269822,-2.16425 -1.847535,-6.86228" + id="path2955-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + </g> + </g> + </g> + <g + transform="translate(-5.4604575,-20.527905)" + id="g3546"> + <g + transform="matrix(0.88605929,0,0,0.88605929,-1.6666099,98.591575)" + style="display:inline" + id="g918-3-8"> + <g + id="g898-6-2"> + <path + style="fill:#756459;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 41.270274,133.87965 -0.448847,0.63783 2.244235,-1.44103 c 0.243145,-0.21921 0.441057,-0.44374 0.496094,-0.68508 z" + id="path862-1-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient3733);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 12.756694,3.16555 c 0.420766,0.40822 0.569498,0.84666 0.590587,1.29929 l 0.614212,11.33929 c -0.05443,0.25654 -0.253487,0.44633 -0.448847,0.63783 l -13.087424,-4.15773 c -0.197895,-0.16239 -0.358876,-0.35126 -0.377151,-0.6425 L 26.98217,118.80607 c 0.0217,-0.27257 0.04398,-0.54495 0.326611,-0.73055 z" + id="path854-8-9" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:#c8beb7;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 27.308781,118.07552 2.634367,-1.07235 12.579174,3.00948 -2.456847,1.22842 z" + id="path856-9-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ac9d93;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 42.522322,120.01265 c 0.37258,0.36499 0.575359,0.74761 0.566962,1.15755 l -2.433222,1.37016 -0.590587,-1.29929 z" + id="path858-2-6" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#907c6f;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 40.656062,122.54036 0.614212,11.33929 2.291482,-1.48828 -0.472472,-11.22117 z" + id="path860-8-3" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 32.417473,119.32773 -2.8052,-0.67483 2.70442,0.79162 7.600523,1.88764 c 0.344403,0.14187 0.373229,0.38237 0.481779,0.59795 -0.01331,-0.21446 -0.01104,-0.41435 -0.125037,-0.65757 l 0.805957,-0.4503 0.824676,-0.5007 -0.730251,0.31162 -1.123559,0.4684 z" + id="path864-5-4" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + </g> + <path + sodipodi:nodetypes="cccccccc" + style="fill:#907d70;fill-opacity:1;stroke:none;stroke-width:0.298607px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 26.879965,121.70155 7.635962,0.89142 0.03623,5.01163 2.111804,2.861 0.0562,2.55794 -7.865221,-2.32263 1e-6,-1.58359 z" + id="path3530" + inkscape:connector-curvature="0" /> + </g> + <g + transform="translate(-0.6869097,-2.4000533)" + id="g3828"> + <path + inkscape:connector-curvature="0" + id="path3522" + d="m 23.011905,215.85027 1.543482,-0.0468 5.191712,-6.36101 -1.356395,-0.0468 z" + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3520" + d="m 20.703647,206.31405 2.182812,9.72343 2.116667,-2.3151 4.167187,5.15937 1.521354,-2.24895 -3.836458,-4.7625 2.050521,-2.4474 z" + style="fill:url(#linearGradient3830);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3524" + d="m 29.232603,218.79692 0.982215,-0.28063 1.543482,-2.15152 -1.216076,0.23386 z" + style="fill:#8cd1d2;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3526" + d="m 26.80045,211.7811 1.122532,-0.0468 3.695001,4.72399 -1.028986,0.0935 z" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path3528" + d="m 20.673297,206.26198 8.091584,3.27405 0.982218,-0.0468 -7.623865,-3.13374 z" + style="fill:#ffffff;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <g + transform="matrix(0.4455495,0.48781957,-0.48781957,0.4455495,127.25656,69.400327)" + id="g5976-39" + style="display:inline"> + <circle + style="fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-44" + cx="75.587036" + cy="166.47276" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-2" + cx="69.816925" + cy="171.25676" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-54" + cx="71.635941" + cy="175.49008" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-68" + cx="67.898705" + cy="178.96274" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-2" + cx="67.83255" + cy="170.463" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-7" + cx="140.80478" + cy="-144.69336" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-8" + cx="137.84521" + cy="-149.23973" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-5-7" + cx="136.23911" + cy="-144.05313" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-47" + cx="130.62692" + cy="-134.71466" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-3-3" + cx="135.18159" + cy="-139.46674" + r="0.32027039" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-9" + cx="157.18925" + cy="134.6259" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-0" + cx="139.32707" + cy="116.0218" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-5" + cx="147.44138" + cy="123.96669" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.368687;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-4-6" + cx="146.26036" + cy="128.08867" + r="0.55344278" /> + </g> + <path + inkscape:connector-curvature="0" + id="path2313-0" + d="m 120.47113,248.49603 c -0.26524,0.0869 -0.52791,0.26998 -0.71827,0.52771 l -3.16657,4.2855 c -1.0699,1.67805 0.72821,0.93041 1.49899,1.05765 0.27649,0.19137 -1.05979,0.84109 -0.7833,1.0327 0.2765,0.19136 1.67186,-0.007 1.94882,0.1839 0.27649,0.19137 -0.56587,0.76924 -0.28937,0.96063 0.27649,0.19136 0.91601,-0.28756 1.03577,0.32543 0.0853,0.43809 1.15241,-0.18001 1.67428,-0.73409 0.27649,-0.3741 -0.52896,-0.0816 -0.25246,-0.4555 0.68757,-0.93006 1.32768,-0.6938 1.56291,-1.476 0.11625,-0.38651 -1.01215,-0.20259 -0.73519,-0.5766 0.79553,-0.72715 3.54526,-1.93708 2.24059,-2.81117 l -3.28244,-2.27168 c -0.2007,-0.12644 -0.46852,-0.13549 -0.73376,-0.0485 z m 0.0285,0.299 c 0.18937,-0.0615 0.378,-0.053 0.5139,0.0399 l 1.25292,0.85891 c 0.11874,0.0822 0.11717,0.31793 0.0506,0.40755 l -0.62208,-0.29229 -0.12217,0.77728 -0.51979,-0.10293 -0.83236,0.80073 -0.2755,-1.01771 -0.44724,0.92116 -0.68359,0.22561 c -0.27862,0.0919 -0.31132,-0.25083 -0.0581,-0.58755 0.44221,-0.62328 0.94966,-1.27724 1.22545,-1.65018 0.1386,-0.18742 0.32869,-0.31897 0.51805,-0.38047 z m -1.50443,5.44702 c 0.0846,0.0246 1.36454,-0.13788 1.67732,-0.18926 0.10847,-0.0131 0.0315,0.12432 -0.11795,0.24905 -0.33708,0.20092 -1.97191,0.0764 -1.55942,-0.0598 z m 4.97653,-0.75176 c -0.25751,0.0946 -0.51146,0.30914 -0.58148,0.57892 0,0.16076 1.18455,-0.12473 1.18455,-0.42882 -0.0843,-0.21637 -0.34554,-0.24398 -0.60307,-0.15012 z m -5.41851,2.48468 c -0.0201,0.006 -0.0403,0.013 -0.0608,0.021 -0.35894,0.13761 -0.74411,0.52439 -0.43782,0.68859 0.2805,0.14997 0.71381,-0.29593 0.8437,-0.6773 -0.0744,-0.0743 -0.20449,-0.075 -0.34515,-0.0321 z m 4.6886,-1.52644 c -0.36159,0.44368 0.0404,0.6401 0.39691,0.31292 0.0795,-0.1069 -0.002,-0.36259 -0.39691,-0.31292 z" + style="display:inline;fill:#fe9191;fill-opacity:0.388889;stroke-width:0.0235715" /> + <g + transform="matrix(0.08213177,0.65554303,-0.65554303,0.08213177,266.50017,115.6548)" + id="g5976-4" + style="display:inline"> + <circle + style="fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-28" + cx="66.915405" + cy="176.85785" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-1" + cx="69.816925" + cy="171.25676" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-8" + cx="71.635941" + cy="175.49008" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-683" + cx="67.898705" + cy="178.96274" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-92" + cx="67.83255" + cy="170.463" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-6" + cx="134.26445" + cy="-133.07188" + r="0.71714538" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-8-6" + cx="137.16597" + cy="-138.67297" + r="0.71714538" /> + <circle + r="0.32027039" + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-5-5" + cx="119.7724" + cy="-141.00937" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-02" + cx="135.24774" + cy="-130.967" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-7-3-6" + cx="135.18159" + cy="-139.46674" + r="0.32027039" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-45" + cx="131.70023" + cy="119.31641" + r="0.55344278" /> + <circle + transform="rotate(27.044033)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-89" + cx="133.22725" + cy="121.4063" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-4-6-8" + cx="133.33705" + cy="127.30769" + r="0.32027039" /> + <circle + transform="rotate(27.044034)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-4-78" + cx="146.26036" + cy="128.08867" + r="0.55344278" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-7-9" + cx="163.15636" + cy="-97.020065" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-40-5" + cx="115.16314" + cy="-141.08458" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-79-0" + cx="157.23447" + cy="-120.80077" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-1-1" + cx="124.55238" + cy="-120.62488" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-6-1" + cx="181.03282" + cy="-130.351" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-67-7" + cx="157.9874" + cy="-112.20711" + r="0.32027039" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-85-4" + cx="142.18866" + cy="-115.30206" + r="0.32027039" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.264064;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-1-1-1" + cx="87.360001" + cy="154.07304" + r="0.71714538" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-683-3" + cx="79.766258" + cy="153.8784" + r="0.32027036" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-683-4" + cx="87.107254" + cy="147.63408" + r="0.32027036" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-683-37" + cx="79.703117" + cy="157.60388" + r="0.32027036" /> + <circle + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-683-8" + cx="63.792774" + cy="144.46082" + r="0.32027036" /> + <circle + transform="rotate(27.044031)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.203786;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-3-2-45-2" + cx="133.33742" + cy="109.15289" + r="0.55344278" /> + <circle + transform="rotate(115.61256)" + style="display:inline;fill:#ffffff;fill-opacity:0.247475;stroke:none;stroke-width:0.117928;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" + id="path5973-7-0-1-1-1-4" + cx="114.55821" + cy="-125.83712" + r="0.32027039" /> + </g> + <text + id="text5365-9" + y="113.62748" + x="216.50778" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.02637px;line-height:1.25;font-family:Quicksand;-inkscape-font-specification:Quicksand;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.100659" + xml:space="preserve"><tspan + dy="0.36000004" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:Quicksand;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke-width:0.100659" + y="113.62748" + x="216.50778" + id="tspan5363-5" + sodipodi:role="line">artwork by </tspan><tspan + id="tspan1830-4" + style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.82222px;font-family:Quicksand;-inkscape-font-specification:'Quicksand Semi-Bold';text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke-width:0.100659" + y="118.66044" + x="216.50778" + sodipodi:role="line">Bayu Rizaldhan Rayes</tspan></text> + </g> + <g + style="display:inline" + inkscape:label="effects" + id="layer5"> + <path + sodipodi:nodetypes="cccccccccc" + inkscape:connector-curvature="0" + id="path7121" + d="m 161.55649,48.905845 5.82553,1.828009 3.96875,4.233333 3.96875,1.918229 1.45521,15.345833 c -1.91863,2.58742 -3.10363,6.17518 -3.27657,9.38606 -5.11302,0.531291 -0.0312,9.983111 -16.69947,0.403523 l -9.45885,-24.010937 6.2177,-9.613844 c 0,0 3.23645,-0.614685 7.99895,0.509794 z" + style="fill:url(#linearGradient7129);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + style="display:inline" + inkscape:label="clip" + id="layer6"> + <rect + ry="0" + y="-14.562982" + x="198.98512" + height="194.46875" + width="63.764584" + id="rect5967" + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.465;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <rect + ry="0" + y="165.7905" + x="-47.22356" + height="50.784657" + width="287.14844" + id="rect5967-7" + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.504264;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <rect + ry="0" + y="-51.232361" + x="-7.1865702" + height="50.78466" + width="235.51196" + id="rect5967-7-1" + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.456679;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + <rect + ry="0" + y="-22.046534" + x="-59.384323" + height="200.08142" + width="58.900265" + id="rect5967-7-1-1" + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.453315;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.111111;paint-order:normal" /> + </g> + <rect + y="-0.31301066" + x="9.9520636" + height="165.68576" + width="86.536514" + id="rect15337" + style="fill:url(#linearGradient15345);fill-opacity:1;stroke:none;stroke-width:9.97154;stroke-linejoin:round" /> + </g> + <style + id="style1182" /> + <rect + style="fill:#ffffff;stroke-width:18.8976;stroke-linejoin:round" + id="rect10912" + width="327.49841" + height="312.2905" + x="165.5016" + y="-0.29050872" /> +</svg> diff --git a/packaging/wix/README b/packaging/wix/README new file mode 100644 index 0000000..a13d4d5 --- /dev/null +++ b/packaging/wix/README @@ -0,0 +1,32 @@ +howto create windows msi installer + +you need: +1. WiX Toolset (aka Windows Installer XML) + get it from http://wixtoolset.org/ + (3.10 works fine at the time of this writing) + +build the installer +1. build inkscape +2. open command shell "cmd" +3. change current directory to inkscape\packaging\wix +4. set environment variables using + wixenv.bat (adjust paths in the file if necessary!) +5. create installer using + install.bat + +when completed there should be inkscape.msi in your path + +helpful tips +- set CompressionLevel="none" in inkscape.wxs + while experimenting with installer creation + (results in huge installer but much faster compilation times) + +things still todo +- detailed explanation what to do for new revisions +- better filenames (nightly builds versus releases) +- howto remove python .pyc files after deinstallation +- localisation into the installer +- make "Typical" and "Complete" installations actually install different files + (at least don't lie to the user by suggesting there would be two different choices) +- conditionally install localized content according to the users previous feature choices + (e.g. only install translated versions of tutorials if the "Tutorials" feature is selected) diff --git a/packaging/wix/feature_attributes.xml b/packaging/wix/feature_attributes.xml new file mode 100644 index 0000000..3698314 --- /dev/null +++ b/packaging/wix/feature_attributes.xml @@ -0,0 +1,35 @@ +<!-- + set attributes for all features: + - AllowAdvertise="no" (to hide "This feature will be installed when required") + - InstallDefault="local" (to hide "This feature will be installed to run from network") + + this is ugly - investigate making this auto-updating + see also https://gitlab.kitware.com/cmake/cmake/merge_requests/742 + + + Empty features (i.e. features that only contain other features but no components) + need dummy components to ensure InstallDefault="local" works. + see http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Removing-Install-to-Run-From-Network-Feature-Option-td688625.html +--> + +<CPackWiXPatch> + <CPackWiXFragment Id="#PRODUCTFEATURE" AllowAdvertise="no" InstallDefault="local" /> + + <CPackWiXFragment Id="CM_G_group_1_program_files" AllowAdvertise="no" InstallDefault="local" Absent="disallow"> + <Component Id="dummy1" Directory="INSTALL_ROOT" Guid="7D08CAE1-A5A8-4C4B-A2B4-E97E2EA10FE4" KeyPath="yes" /> + </CPackWiXFragment> + <CPackWiXFragment Id="CM_G_group_2_inkscape_data" AllowAdvertise="no" InstallDefault="local"> + <Component Id="dummy2" Directory="INSTALL_ROOT" Guid="7405B66E-65E5-403B-B407-E39025587E46" KeyPath="yes" /> + </CPackWiXFragment> + <CPackWiXFragment Id="CM_G_group_3_translations" AllowAdvertise="no" InstallDefault="local"> + <Component Id="dummy3" Directory="INSTALL_ROOT" Guid="C2A35C47-B012-4DDF-B486-DD6A8DF42F5D" KeyPath="yes" /> + </CPackWiXFragment> + + <CPackWiXFragment Id="CM_C_inkscape" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_python" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_examples" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_extensions" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_tutorials" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_dictionaries" AllowAdvertise="no" InstallDefault="local" /> + <!-- should also include every single CM_C_translations.* but adding them manually does not seem reasonable --> +</CPackWiXPatch> diff --git a/packaging/wix/file_association.xml b/packaging/wix/file_association.xml new file mode 100644 index 0000000..b3a9565 --- /dev/null +++ b/packaging/wix/file_association.xml @@ -0,0 +1,14 @@ +<CPackWiXPatch> + <CPackWiXFragment Id="CM_CP_inkscape.bin.inkscape.exe"> + <ProgId Id="Inkscape.SVG" Description="Scalable Vector Graphics" Icon="CM_FP_inkscape.bin.inkscape.exe"> + <Extension Id="svg"> + <Verb Id="open" TargetFile='CM_FP_inkscape.bin.inkscape.exe' Argument=""%1"" /> + </Extension> + </ProgId> + <ProgId Id="Inkscape.SVGZ" Description="Compressed Scalable Vector Graphics" Icon="CM_FP_inkscape.bin.inkscape.exe"> + <Extension Id="svgz"> + <Verb Id="open" TargetFile='CM_FP_inkscape.bin.inkscape.exe' Argument=""%1"" /> + </Extension> + </ProgId> + </CPackWiXFragment> +</CPackWiXPatch> diff --git a/packaging/wix/files.py b/packaging/wix/files.py new file mode 100755 index 0000000..354aac2 --- /dev/null +++ b/packaging/wix/files.py @@ -0,0 +1,146 @@ +#!/usr/bin/python + +from __future__ import print_function +from __future__ import unicode_literals # make all literals unicode strings by default (even in Python 2) + +import os +import re +import uuid +from io import open # needed for support of encoding parameter in Python 2 + +from helpers import get_inkscape_dist_dir, get_inkscape_locales_and_names + +# basestring is not available in Python 3 +try: + basestring +except NameError: + basestring = (str,bytes) + + +directory_ids = {} +file_ids = {} + +def indent(level): + indentstring = '' + for i in range(level): + indentstring += ' ' + return indentstring + +def valid_id(identifier): + return identifier.replace('@','_') + +def directory(root, breadcrumb, level, exclude=[]): + """ + list all files and directory recursively + create the file_ids dictionary to be used in ComponentGroup references + """ + global file_ids + global directory_ids + # first list files within directory + files = [ f for f in os.listdir(root) if os.path.isfile(os.path.join(root,f)) and f not in exclude] + for file in files: + file_key = os.path.join(root, file) + file_key = file_key.replace('/', '\\') # for usage from MSYS2 shell + _id = '_%06d' % (len(file_ids.keys()) + 1) + file_ids[file_key] = 'component' + _id + wxs.write(indent(level)+ "<Component Id='component" + _id + "' Guid='" + str(uuid.uuid4()) + "' DiskId='1' Win64='$(var.Win64)'>\n") + if file == 'inkscape.exe': + # we reference inkscape.exe in inkscape.wxs + _id = '_inkscape_exe' + wxs.write(indent(level + 1)+ "<File Id='file" + _id + "' Name='" + file + "' DiskId='1' Source='" + file_key + "' KeyPath='yes' />\n") + wxs.write(indent(level)+ "</Component>\n") + + # then all directories + dirs = [ f for f in os.listdir(root) if os.path.isdir(os.path.join(root,f)) ] + for dir in dirs: + directory_key = breadcrumb + '__' + dir + if not directory_key in directory_ids.keys(): + directory_ids[directory_key] = 'dir_%06d' % (len(directory_ids.keys()) + 1) + wxs.write(indent(level) + "<Directory Id='" + directory_ids[directory_key] + "' Name='" + dir + "'>\n") + directory(os.path.join(root, dir), directory_key, level + 1) + wxs.write(indent(level) + "</Directory>\n") + +def test_conditions(value, conditions): + """ + check if "value" fulfills any of the "conditions", where a condition can be + - a string that has to be a substring of "value" + - a compiled regex pattern which has to match in "value" + """ + if not isinstance(conditions, list): + conditions = [conditions] + for condition in conditions: + if isinstance(condition, basestring): + if condition in value: + return True + elif isinstance(condition, type(re.compile(''))): + if re.search(condition, value): + return True + return False + + +def ComponentGroup(name, conditions, level): + """ + add componentgroup that contain all items from file_ids that match condition + remove the matched elements from file_ids + """ + global file_ids + keys = [k for k in file_ids.keys() if test_conditions(k, conditions)] + wxs.write(indent(level) + "<ComponentGroup Id='" + name + "'>\n") + for component in keys: + wxs.write(indent(level + 1) + "<ComponentRef Id='" + file_ids[component] + "' />\n") + wxs.write(indent(level) + "</ComponentGroup>\n") + for key in keys: + del file_ids[key] + +# get directory containing the Inkscape distribution files +inkscape_dist_dir = get_inkscape_dist_dir() + +# get locales currently supported by Inkscape (dict of the form {'de': 'German (de)'}) +locales = get_inkscape_locales_and_names() + +with open('files.wxs', 'w', encoding='utf-8') as wxs: + wxs.write("<!-- do not edit, this file is created by files.py tool any changes will be lost -->\n") + wxs.write("<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>\n") + wxs.write(indent(1) + "<?include version.wxi?>\n") + wxs.write(indent(1) + "<Fragment>\n") + wxs.write(indent(2) + "<!-- Step 1: Define the directory structure -->\n") + wxs.write(indent(2) + "<Directory Id='TARGETDIR' Name='SourceDir'>\n") + wxs.write(indent(3) + "<Directory Id='$(var.ProgramFilesFolder)' Name='PFiles'>\n") + wxs.write(indent(4) + "<Directory Id='INSTALLDIR' Name='Inkscape'>\n") + print("start parsing files from " + inkscape_dist_dir) + directory(inkscape_dist_dir, 'inkscape', 5, ['inkscape.dbg', 'inkview.dbg', 'gdb.exe']) + print("found %d files" % len(file_ids.keys())) + wxs.write(indent(4) + "</Directory>\n") + wxs.write(indent(3) + "</Directory>\n") + # link to ProgramMenu + wxs.write(indent(3) + "<Directory Id='ProgramMenuFolder'>\n") + wxs.write(indent(4) + "<Directory Id='ApplicationProgramsFolder' Name='$(var.FullProductName)'/>\n") + wxs.write(indent(3) + "</Directory>\n") + wxs.write(indent(3) + "<Directory Id='DesktopFolder' Name='Desktop' />\n") + wxs.write(indent(2) + "</Directory>\n") + + # Python + ComponentGroup("Python", ['inkscape\\python\\','inkscape\\lib\\python2.7\\', + 'inkscape\\libpython', 'inkscape\\python'], 2) + # translations and localized content + for lang_code in sorted(locales): + ComponentGroup("Translation_" + valid_id(lang_code), ['\\' + lang_code + '\\', + re.compile(r'\.' + lang_code + r'\.[a-z]+$')], 2) + # other components + ComponentGroup("Extensions", 'inkscape\\share\\extensions\\', 2) + ComponentGroup("Examples", 'inkscape\\share\\examples\\', 2) + ComponentGroup("Tutorials", 'inkscape\\share\\tutorials\\', 2) + ComponentGroup("Dictionaries", ['inkscape\\lib\\aspell-0.60\\', 'inkscape\\lib\\enchant\\'], 2) + # everything that is left (which should be the Inkscape core unless inkscape_dist_dir contains unnecessary files or we defined our components poorly) + ComponentGroup("AllOther", '', 2) + + # create a FeatureGroup for translations + wxs.write(indent(2) + "<FeatureGroup Id='Translations'>\n") + sorted_locales = sorted( ((v,k) for k,v in locales.items()) ) # sort by language name (instead of language code) + for lang_name, lang_code in sorted_locales: + wxs.write(indent(3) + "<Feature Id='Translation_" + valid_id(lang_code) + "' Level='1' Title='" + lang_name + "' AllowAdvertise='no'>\n") + wxs.write(indent(4) + "<ComponentGroupRef Id='Translation_" + valid_id(lang_code) + "' />\n") + wxs.write(indent(3) + "</Feature>\n") + wxs.write(indent(2) + "</FeatureGroup>\n") + wxs.write(indent(1) + "</Fragment>\n") + wxs.write("</Wix>\n") diff --git a/packaging/wix/gpl-3.0.rtf b/packaging/wix/gpl-3.0.rtf new file mode 100644 index 0000000..210e8a3 --- /dev/null +++ b/packaging/wix/gpl-3.0.rtf @@ -0,0 +1,152 @@ +{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}} +{\colortbl;\red255\green0\blue0;\red0\green0\blue255;} +\widowctrl\hyphauto + +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 GNU GENERAL PUBLIC LICENSE\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Version 3, 29 June 2007\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Copyright \u169? 2007 Free Software Foundation, Inc. <{\field{\*\fldinst{HYPERLINK "https://fsf.org/"}}{\fldrslt{\ul +https://fsf.org/ +}}} +>\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Preamble\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The GNU General Public License is a free, copyleft license for software and other kinds of works.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The precise terms and conditions for copying, distribution and modification follow.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 TERMS AND CONDITIONS\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 0. Definitions.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \u8220"This License\u8221" refers to version 3 of the GNU General Public License.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \u8220"Copyright\u8221" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \u8220"The Program\u8221" refers to any copyrightable work licensed under this License. Each licensee is addressed as \u8220"you\u8221". \u8220"Licensees\u8221" and \u8220"recipients\u8221" may be individuals or organizations.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 To \u8220"modify\u8221" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \u8220"modified version\u8221" of the earlier work or a work \u8220"based on\u8221" the earlier work.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 A \u8220"covered work\u8221" means either the unmodified Program or a work based on the Program.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 To \u8220"propagate\u8221" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 To \u8220"convey\u8221" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 An interactive user interface displays \u8220"Appropriate Legal Notices\u8221" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 1. Source Code.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The \u8220"source code\u8221" for a work means the preferred form of the work for making modifications to it. \u8220"Object code\u8221" means any non-source form of a work.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 A \u8220"Standard Interface\u8221" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The \u8220"System Libraries\u8221" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \u8220"Major Component\u8221", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The \u8220"Corresponding Source\u8221" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The Corresponding Source for a work in source code form is that same work.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 2. Basic Permissions.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 4. Conveying Verbatim Copies.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 5. Conveying Modified Source Versions.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \u8220"keep intact all notices\u8221".\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\sa180\par} +{\pard \ql \f0 \sa180 \li0 \fi0 A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \u8220"aggregate\u8221" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 6. Conveying Non-Source Forms.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\sa180\par} +{\pard \ql \f0 \sa180 \li0 \fi0 A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 A \u8220"User Product\u8221" is either (1) a \u8220"consumer product\u8221", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \u8220"normally used\u8221" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \u8220"Installation Information\u8221" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 7. Additional Terms.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \u8220"Additional permissions\u8221" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\sa180\par} +{\pard \ql \f0 \sa180 \li0 \fi0 All other non-permissive additional terms are considered \u8220"further restrictions\u8221" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 8. Termination.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\par} +{\pard \ql \f0 \sa180 \li0 \fi0 However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 9. Acceptance Not Required for Having Copies.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 10. Automatic Licensing of Downstream Recipients.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 An \u8220"entity transaction\u8221" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 11. Patents.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 A \u8220"contributor\u8221" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \u8220"contributor version\u8221".\par} +{\pard \ql \f0 \sa180 \li0 \fi0 A contributor's \u8220"essential patent claims\u8221" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \u8220"control\u8221" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 In the following three paragraphs, a \u8220"patent license\u8221" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \u8220"grant\u8221" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \u8220"Knowingly relying\u8221" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 A patent license is \u8220"discriminatory\u8221" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 12. No Surrender of Others' Freedom.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 13. Use with the GNU Affero General Public License.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 14. Revised Versions of this License.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \u8220"or any later version\u8221" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 15. Disclaimer of Warranty.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \u8220"AS IS\u8221" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 16. Limitation of Liability.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 17. Interpretation of Sections 15 and 16.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 END OF TERMS AND CONDITIONS\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 How to Apply These Terms to Your New Programs\par} +{\pard \ql \f0 \sa180 \li0 \fi0 If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \u8220"copyright\u8221" line and a pointer to where the full notice is found.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \f1 <one line to give the program's name and a brief idea of what it does.>\line + Copyright (C) <year> <name of author>\line +\line + This program is free software: you can redistribute it and/or modify\line + it under the terms of the GNU General Public License as published by\line + the Free Software Foundation, either version 3 of the License, or\line + (at your option) any later version.\line +\line + This program is distributed in the hope that it will be useful,\line + but WITHOUT ANY WARRANTY; without even the implied warranty of\line + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\line + GNU General Public License for more details.\line +\line + You should have received a copy of the GNU General Public License\line + along with this program. If not, see <https://www.gnu.org/licenses/>.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Also add information on how to contact you by electronic and paper mail.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \f1 <program> Copyright (C) <year> <name of author>\line + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\line + This is free software, and you are welcome to redistribute it\line + under certain conditions; type `show c' for details.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \u8220"about box\u8221".\par} +{\pard \ql \f0 \sa180 \li0 \fi0 You should also get your employer (if you work as a programmer) or school, if any, to sign a \u8220"copyright disclaimer\u8221" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <{\field{\*\fldinst{HYPERLINK "https://www.gnu.org/licenses/"}}{\fldrslt{\ul +https://www.gnu.org/licenses/ +}}} +>.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <{\field{\*\fldinst{HYPERLINK "https://www.gnu.org/licenses/why-not-lgpl.html"}}{\fldrslt{\ul +https://www.gnu.org/licenses/why-not-lgpl.html +}}} +>.\par} +} diff --git a/packaging/wix/helpers.py b/packaging/wix/helpers.py new file mode 100755 index 0000000..becff5e --- /dev/null +++ b/packaging/wix/helpers.py @@ -0,0 +1,65 @@ +#!/usr/bin/python
+
+from __future__ import print_function
+from __future__ import unicode_literals # make all literals unicode strings by default (even in Python 2)
+
+import os
+import re
+import sys
+from io import open # needed for support of encoding parameter in Python 2
+
+
+# check where to look for the Inkscape files to bundle
+# - btool builds used [root]/inkscape
+# - cmake builds use [root]/build/inkscape unless "DESTDIR" is specified
+def get_inkscape_dist_dir():
+ # first check the environment variable
+ sourcedir = os.getenv('INKSCAPE_DIST_PATH')
+ if sourcedir is None:
+ sourcedir = ''
+ if not os.path.isdir(sourcedir):
+ sourcedir = '..\\..\\inkscape'
+ if not os.path.isdir(sourcedir):
+ sourcedir = '..\\..\\build\\inkscape'
+ if not os.path.isdir(sourcedir):
+ print("could not find inkscape distribution files, please set environment variable 'INKSCAPE_DIST_PATH'")
+ sys.exit(1)
+ return sourcedir
+
+
+# get the full list of available Inkscape UI translations (by looking at available .po files in the /po directory)
+def get_inkscape_locales():
+ files = os.listdir('..\\..\\po')
+ po_files = [file for file in files if file.endswith('.po')]
+ locales = [po_file[0:-3] for po_file in po_files if po_file.endswith('.po')]
+
+ return locales
+
+
+# get the list of available Inkscape UI translations (by parsing inkscape-preferences.cpp)
+# (note that this is also used in /packaging/win32/languages/_language_lists.py, don't break it!)
+def get_inkscape_locales_and_names():
+ re_languages = re.compile(r'Glib::ustring languages\[\] = \{(.+?)\};', re.DOTALL)
+ re_langValues = re.compile(r'Glib::ustring langValues\[\] = \{(.+?)\};', re.DOTALL)
+ re_quotes = re.compile(r'"(.*?)"')
+
+ # get the raw array contents from inkscape-preferences.cpp
+ filepath = os.path.join(os.path.dirname(__file__), '../../src/ui/dialog/inkscape-preferences.cpp')
+ with open(filepath, 'r', encoding='utf-8') as f:
+ languages = re.search(re_languages, f.read())
+ f.seek(0)
+ langValues = re.search(re_langValues, f.read())
+
+ # split array elements and extract strings
+ if languages and langValues:
+ languages = languages.group(1).split(',')
+ langValues = langValues.group(1).split(',')
+ languages = [re.search(re_quotes, language).group(1) for language in languages]
+ langValues = [re.search(re_quotes, langValue).group(1) for langValue in langValues]
+
+ # return the results as a dict (remove first element which is "System default")
+ if languages and langValues:
+ return dict(zip(langValues[1:], languages[1:]))
+ else:
+ print("Could not get the list of Inkscape translations from inkscape-preferences.cpp")
+ sys.exit(1)
diff --git a/packaging/wix/inkscape.wxs b/packaging/wix/inkscape.wxs new file mode 100644 index 0000000..bd11dc5 --- /dev/null +++ b/packaging/wix/inkscape.wxs @@ -0,0 +1,127 @@ +<?xml version='1.0' encoding='windows-1252'?>
+<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi' xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
+ <?include version.wxi?>
+
+ <!-- change Product Id for every new version and subversion, do not change UpgradeCode -->
+ <Product Name="$(var.FullProductName)" Id='81922150-317e-4bb0-a31d-ff1c14f707c5' UpgradeCode='4d5fedaa-84a0-48be-bd2a-08246398361a' Language='1033' Codepage='1252' Version='$(var.ProductVersion)' Manufacturer='Inkscape project'>
+
+ <Package Id='*' Keywords='SVG, vector graphics' Description="Installer for Inkscape vector graphics editor" Comments='Licensed under the GNU GPL' Manufacturer='Inkscape project' InstallerVersion='$(var.InstallerVersion)' Platform='$(var.Platform)' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
+
+ <Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1" CompressionLevel="high"/>
+ <Property Id='DiskPrompt' Value="inkscape Installation [1]" />
+
+ <Property Id='ALLUSERS' Value="2" />
+
+ <MajorUpgrade DowngradeErrorMessage="A newer version is already installed." />
+
+ <DirectoryRef Id="ApplicationProgramsFolder">
+ <Component Id="ApplicationShortcut" Guid="37de8ea4-e83a-4e40-8f9c-c6066b78d935" Win64='$(var.Win64)' >
+ <Shortcut Id="ApplicationStartMenuShortcut"
+ Name="$(var.FullProductName)"
+ Description="Inkscape Vector Graphics Application"
+ Target="[INSTALLDIR]inkscape.exe"
+ WorkingDirectory="INSTALLDIR"/>
+ <util:InternetShortcut Id="OnlineDocumentationShortcut"
+ Name="Inkscape Homepage"
+ Target="http://www.inkscape.org/"/>
+ <RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/>
+ <RegistryValue Root="HKCU" Key="Software\inkscape.org\Inkscape" Name="startmenu_installed" Type="integer" Value="1" KeyPath="yes"/>
+ </Component>
+ </DirectoryRef>
+
+ <DirectoryRef Id="DesktopFolder">
+ <Component Id="DesktopShortcut" Guid="3afc08a7-05a1-40cf-90c2-0d6c042bfc41" Win64='$(var.Win64)'>
+ <!-- Shortcut Id="desktopFoobar10" Directory="DesktopFolder" Target="[INSTALLDIR]inkscape.exe" Name="$(var.FullProductName)" WorkingDirectory='INSTALLDIR' Icon="file_inkscape_exe" IconIndex="0" / -->
+ <Shortcut Id="DesktopShortcut" Directory="DesktopFolder" Target="[INSTALLDIR]inkscape.exe" Name="$(var.FullProductName)" WorkingDirectory='INSTALLDIR' />
+ <RemoveFolder Id="DesktopFolder" On="uninstall"/>
+ <RegistryValue Root="HKCU" Key="Software\inkscape.org\Inkscape" Name="desktop_installed" Type="integer" Value="1" KeyPath="yes"/>
+ </Component>
+ </DirectoryRef>
+
+ <DirectoryRef Id="INSTALLDIR">
+ <Component Id="RegisterExtension" Guid="d544e040-573e-4ea8-983e-4bcae6b87f3d" Win64='$(var.Win64)'>
+ <ProgId Id="inkscape.svg" Description='scalable vector graphics file' Icon='file_inkscape_exe'>
+ <Extension Id='svg' ContentType='image/svg+xml'>
+ <Verb Id='edit' Command='Edit with Inkscape' TargetFile='file_inkscape_exe' Argument='"%1"' />
+ </Extension>
+ <Extension Id='svgz' ContentType='image/svg+xml'>
+ <Verb Id='open' Command='Open with Inkscape' TargetFile='file_inkscape_exe' Argument='"%1"' />
+ </Extension>
+ </ProgId>
+ </Component>
+ </DirectoryRef>
+
+ <Feature Id='Inkscape' Level='1' Absent="disallow" Display="expand" ConfigurableDirectory='INSTALLDIR' AllowAdvertise='no'
+ Title="$(var.FullProductName)"
+ Description='Inkscape core files, shortcuts and file extension'>
+ <!-- core files, i.e. everything that does not fit into any of the other features -->
+ <ComponentGroupRef Id='AllOther' />
+
+ <!-- shortcuts and file extensions -->
+ <Feature Id='ApplicationShortcut' Level='1' AllowAdvertise='no'
+ Title='Start Menu entry'
+ Description='Create a link in the start menu.'>
+ <ComponentRef Id='ApplicationShortcut' />
+ </Feature>
+ <Feature Id='DesktopShortcut' Level='1' AllowAdvertise='no'
+ Title='Desktop shortcut'
+ Description='Create a link on the desktop.' >
+ <ComponentRef Id='DesktopShortcut' />
+ </Feature>
+ <Feature Id='RegisterExtension' Level='1' AllowAdvertise='no'
+ Title='Register file extensions'
+ Description='Register SVG files (.svg and .svgz) with Inkscape and add entries in Explorer context menu.'>
+ <ComponentRef Id='RegisterExtension' />
+ </Feature>
+ </Feature>
+
+ <Feature Id='Python' Level='1' ConfigurableDirectory='INSTALLDIR' AllowAdvertise='no'
+ Title='Python 2.7'
+ Description='Bundled Distribution of Python 2.7 including modules required to run Inkscape extensions.'>
+ <ComponentGroupRef Id='Python' />
+ </Feature>
+
+ <Feature Id='Additional' Level='1' ConfigurableDirectory='INSTALLDIR' AllowAdvertise='no'
+ Title="Additional files"
+ Description='Additional components to enhance Inkscape functionality and provide supplemental documentation.'>
+ <Feature Id='Extensions' Level='1' AllowAdvertise='no'
+ Title='Extensions (recommended)'
+ Description='Inkscape extensions (including many import and export plugins). Requires Python.'>
+ <ComponentGroupRef Id='Extensions' />
+ </Feature>
+ <Feature Id='Dictionaries' Level='1' AllowAdvertise='no'
+ Title='Dictionaries'
+ Description='GNU Aspell dictionaries of some common languages for spell checking in Inkscape' >
+ <ComponentGroupRef Id='Dictionaries' />
+ </Feature>
+ <Feature Id='Examples' Level='1' AllowAdvertise='no'
+ Title='Examples'
+ Description='Example files highlighting some of the features of the SVG file format and Inkscape functionality.' >
+ <ComponentGroupRef Id='Examples' />
+ </Feature>
+ <Feature Id='Tutorials' Level='1' AllowAdvertise='no'
+ Title='Tutorials'
+ Description='Tutorials on how to use specific Inkscape features.' >
+ <ComponentGroupRef Id='Tutorials' />
+ </Feature>
+ </Feature>
+
+ <Feature Id='Translations' Level='1' ConfigurableDirectory='INSTALLDIR' AllowAdvertise='no'
+ Title='Translations'
+ Description='Translations and localized content for Inkscape. Note: Some translations might be incomplete, translators welcome!' >
+ <FeatureGroupRef Id='Translations' />
+ </Feature>
+
+ <!-- set license text -->
+ <WixVariable Id="WixUILicenseRtf" Value="gpl-3.0.rtf" />
+ <!-- set dialog custom bitmaps -->
+ <WixVariable Id="WixUIDialogBmp" Value="Bitmaps\dialog.bmp"/>
+ <WixVariable Id="WixUIBannerBmp" Value="Bitmaps\banner.bmp"/>
+
+ <UIRef Id="WixUI_Mondo" />
+ <UIRef Id="WixUI_ErrorProgressText" />
+
+ <Icon Id="inkscape.ico" SourceFile="..\..\share\branding\inkscape.ico" />
+ <Property Id="ARPPRODUCTICON" Value="inkscape.ico" />
+ </Product>
+</Wix>
diff --git a/packaging/wix/install.bat b/packaging/wix/install.bat new file mode 100644 index 0000000..f0dd0bd --- /dev/null +++ b/packaging/wix/install.bat @@ -0,0 +1,34 @@ +
+@echo build files.wxs
+python files.py
+@if NOT %ERRORLEVEL% == 0 goto theend
+
+@echo create version information
+for /f "tokens=*" %%a in ('python version.py') do (set INKSCAPE_VER=%%a)
+@if NOT %ERRORLEVEL% == 0 goto theend
+
+@echo call wix compiler ...
+candle inkscape.wxs -ext WiXUtilExtension
+@if NOT %ERRORLEVEL% == 0 goto theend
+
+candle files.wxs
+@if NOT %ERRORLEVEL% == 0 goto theend
+
+@echo call wix linker ...
+light -ext WixUIExtension -ext WiXUtilExtension inkscape.wixobj files.wixobj -o inkscape-%INKSCAPE_VER%.msi
+@if NOT %ERRORLEVEL% == 0 goto theend
+
+@echo the installer is now created
+@rem uncomment following line if you want to test the installer
+goto theend
+
+@echo install ...
+msiexec /i inkscape-%INKSCAPE_VER%.msi /l*v inkscape.log
+
+pause the program is now installed. press any key to run uninstaller ...
+@echo deinstall ...
+msiexec /x inkscape-%INKSCAPE_VER%.msi
+
+
+:theend
+@echo ... finished
\ No newline at end of file diff --git a/packaging/wix/next_uuid.py b/packaging/wix/next_uuid.py new file mode 100644 index 0000000..6ed20b5 --- /dev/null +++ b/packaging/wix/next_uuid.py @@ -0,0 +1,10 @@ +import uuid
+
+"""
+a helper script to simply generate some new UUID
+"""
+
+out = open('next_uuid.txt', 'wt')
+for i in xrange(10):
+ out.write(str(uuid.uuid4()) + '\n')
+
diff --git a/packaging/wix/version.py b/packaging/wix/version.py new file mode 100755 index 0000000..68ca5cc --- /dev/null +++ b/packaging/wix/version.py @@ -0,0 +1,87 @@ +#!/usr/bin/python
+
+from __future__ import print_function
+
+import os
+import struct
+
+from helpers import get_inkscape_dist_dir
+
+version = ''
+versionstr = ''
+architecture = ''
+
+def is64bitArchitecture(filename):
+ ''' test if a executable is of x64 format @see http://stackoverflow.com/questions/1001404/check-if-unmanaged-dll-is-32-bit-or-64-bit/1002672#1002672
+ @see http://www.microsoft.com/whdc/system/platform/firmware/PECOFF.mspx
+ //offset to PE header is always at 0x3C
+ //PE header starts with "PE\0\0" = 0x50 0x45 0x00 0x00
+ //followed by 2-byte machine type field (see document above for enum)
+ '''
+ with open(filename, 'rb') as cofffile:
+ cofffile.seek(0x3c)
+ peOffset = struct.unpack('H', cofffile.read(2))[0]
+ cofffile.seek(peOffset)
+ peHead = struct.unpack('I', cofffile.read(4))[0]
+ if peHead != 0x00004550: # "PE\0\0", little-endian
+ # throw new Exception("Can't find PE header")
+ pass
+ machineType = struct.unpack('H', cofffile.read(2))[0]
+ if machineType in (0x8664, 0x200):
+ return True
+ return False
+
+#get directory containing the inkscape distribution files
+inkscape_dist_dir = get_inkscape_dist_dir()
+
+if is64bitArchitecture(inkscape_dist_dir + '\\inkscape.exe'):
+ architecture = '-x64'
+else:
+ architecture = '-x86'
+
+# retrieve the version information from CMakeLists.txt
+with open('..\..\CMakeLists.txt', 'r') as rc:
+ isversioninfo = False
+
+ for line in rc.readlines():
+ if 'set(INKSCAPE_VERSION_MAJOR' in line:
+ version_major = line.split()[-1][0:-1]
+ if 'set(INKSCAPE_VERSION_MINOR' in line:
+ version_minor = line.split()[-1][0:-1]
+ if 'set(INKSCAPE_VERSION_PATCH' in line:
+ version_patch = line.split()[-1][0:-1]
+ if version_patch == '':
+ version_patch = '0'
+ if 'set(INKSCAPE_VERSION_SUFFIX' in line:
+ version_suffix = line.split()[-1][0:-1]
+ version_suffix = version_suffix.replace('"', '')
+
+ version_list = [version_major, version_minor, version_patch, '0']
+ version = '.'.join(version_list)
+
+ versionstr = '.'.join(version_list[0:2])
+ if version_patch != '0':
+ versionstr += '.' + version_patch
+ versionstr += version_suffix
+
+ # required by install.bat
+ print(versionstr + architecture)
+
+with open('version.wxi', 'w') as wxi:
+ wxi.write("<?xml version='1.0' encoding='utf-8'?>\n")
+ wxi.write("<!-- do not edit, this file is created by version.py tool any changes will be lost -->\n")
+ wxi.write("<Include>\n")
+ wxi.write("<?define ProductVersion='" + version + "' ?>\n")
+ wxi.write("<?define FullProductName='Inkscape " + versionstr + "' ?>\n")
+ if 'x64' in architecture:
+ wxi.write("<?define ProgramFilesFolder='ProgramFiles64Folder' ?>\n")
+ wxi.write("<?define Win64='yes' ?>\n")
+ wxi.write("<?define InstallerVersion='200' ?>\n")
+ wxi.write("<?define Platform='x64' ?>\n")
+ else:
+ wxi.write("<?define ProgramFilesFolder='ProgramFilesFolder' ?>\n")
+ wxi.write("<?define Win64='no' ?>\n")
+ wxi.write("<?define InstallerVersion='100' ?>\n")
+ wxi.write("<?define Platform='x86' ?>\n")
+ wxi.write("</Include>\n")
+
diff --git a/packaging/wix/wixenv.bat b/packaging/wix/wixenv.bat new file mode 100644 index 0000000..1068986 --- /dev/null +++ b/packaging/wix/wixenv.bat @@ -0,0 +1,9 @@ +@echo Setting environment variables for creating msi installer (adjust if necesssary!)
+
+IF "%WIX_PATH%"=="" set WIX_PATH=C:\Program Files (x86)\WiX Toolset v3.10\bin
+IF "%DEVLIBS_PATH%"=="" set DEVLIBS_PATH=c:\devlibs
+
+rem uncomment and adjust the line below if your Inkscape distribution files are in a non-standard location
+rem IF "%INKSCAPE_DIST_PATH%"=="" set INKSCAPE_DIST_PATH=..\..\build\inkscape
+
+set PATH=%DEVLIBS_PATH%\python;%WIX_PATH%;%PATH%
\ No newline at end of file |