summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkitfox2010-08-07 11:59:11 +0200
committerkitfox2010-08-07 11:59:11 +0200
commit2d39fa7f95efb645d2ae704524d91db7899274ef (patch)
tree1a5f269e68c4ac6b76dcbaa516753e905ff6c303
parentAdded versioning info for compiled jars. (diff)
downloadsvg-salamander-core-2d39fa7f95efb645d2ae704524d91db7899274ef.tar.gz
svg-salamander-core-2d39fa7f95efb645d2ae704524d91db7899274ef.tar.xz
svg-salamander-core-2d39fa7f95efb645d2ae704524d91db7899274ef.zip
Added support for inline images.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@79 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
-rwxr-xr-xnbproject/build-impl.xml246
-rwxr-xr-xnbproject/genfiles.properties4
-rw-r--r--src/main/java/com/kitfox/svg/ImageSVG.java19
-rw-r--r--src/main/java/com/kitfox/svg/SVGUniverse.java57
-rw-r--r--src/main/java/com/kitfox/svg/app/data/Handler.java76
-rw-r--r--src/main/java/com/kitfox/svg/app/data/HandlerFactory.java27
-rw-r--r--src/test/res/1C2EC147.pngbin0 -> 48520 bytes
-rw-r--r--src/test/res/1C2EC148.pngbin0 -> 48520 bytes
-rw-r--r--src/test/res/Monitor.svg84
-rw-r--r--src/test/res/data-uri-scheme-test-image.svg23
-rw-r--r--src/test/res/drawing.svg9361
-rw-r--r--src/test/res/missing.svg1090
12 files changed, 10893 insertions, 94 deletions
diff --git a/nbproject/build-impl.xml b/nbproject/build-impl.xml
index eae6ae1..10405b2 100755
--- a/nbproject/build-impl.xml
+++ b/nbproject/build-impl.xml
@@ -80,6 +80,7 @@ is divided into following sections:
</target>
<target depends="-pre-init,-init-private,-init-libraries,-init-user,-init-project,-init-macrodef-property" name="-do-init">
<available file="${manifest.file}" property="manifest.available"/>
+ <available file="${application.splash}" property="splashscreen.available"/>
<condition property="main.class.available">
<and>
<isset property="main.class"/>
@@ -108,23 +109,40 @@ is divided into following sections:
<isset property="do.mkdist"/>
</and>
</condition>
- <condition property="manifest.available+mkdist.available">
+ <condition property="manifest.available+main.class+mkdist.available+splashscreen.available">
<and>
- <istrue value="${manifest.available}"/>
- <isset property="do.mkdist"/>
+ <istrue value="${manifest.available+main.class+mkdist.available}"/>
+ <istrue value="${splashscreen.available}"/>
</and>
</condition>
- <condition property="manifest.available-mkdist.available">
- <or>
- <istrue value="${manifest.available}"/>
- <isset property="do.mkdist"/>
- </or>
+ <condition property="do.archive">
+ <not>
+ <istrue value="${jar.archive.disabled}"/>
+ </not>
</condition>
- <condition property="manifest.available+main.class-mkdist.available">
- <or>
+ <condition property="do.archive+manifest.available">
+ <and>
+ <isset property="manifest.available"/>
+ <istrue value="${do.archive}"/>
+ </and>
+ </condition>
+ <condition property="do.archive+manifest.available+main.class">
+ <and>
<istrue value="${manifest.available+main.class}"/>
- <isset property="do.mkdist"/>
- </or>
+ <istrue value="${do.archive}"/>
+ </and>
+ </condition>
+ <condition property="do.archive+manifest.available+main.class+mkdist.available">
+ <and>
+ <istrue value="${manifest.available+main.class+mkdist.available}"/>
+ <istrue value="${do.archive}"/>
+ </and>
+ </condition>
+ <condition property="do.archive+manifest.available+main.class+mkdist.available+splashscreen.available">
+ <and>
+ <istrue value="${manifest.available+main.class+mkdist.available+splashscreen.available}"/>
+ <istrue value="${do.archive}"/>
+ </and>
</condition>
<condition property="have.tests">
<or>
@@ -186,6 +204,8 @@ is divided into following sections:
<length length="0" string="${endorsed.classpath}" when="greater"/>
</condition>
<property name="javac.fork" value="false"/>
+ <property name="jar.index" value="false"/>
+ <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
</target>
<target name="-post-init">
<!-- Empty placeholder for easier customization. -->
@@ -217,11 +237,53 @@ is divided into following sections:
</sequential>
</macrodef>
</target>
- <target name="-init-macrodef-javac">
+ <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
+ <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
+ <attribute default="${src.www.dir}:${src.dir}:${src.java.dir}:${src.res.dir}:${res.dir}" name="srcdir"/>
+ <attribute default="${build.classes.dir}" name="destdir"/>
+ <attribute default="${javac.classpath}" name="classpath"/>
+ <attribute default="${javac.processorpath}" name="processorpath"/>
+ <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
+ <attribute default="${includes}" name="includes"/>
+ <attribute default="${excludes}" name="excludes"/>
+ <attribute default="${javac.debug}" name="debug"/>
+ <attribute default="${empty.dir}" name="sourcepath"/>
+ <attribute default="${empty.dir}" name="gensrcdir"/>
+ <element name="customize" optional="true"/>
+ <sequential>
+ <property location="${build.dir}/empty" name="empty.dir"/>
+ <mkdir dir="${empty.dir}"/>
+ <mkdir dir="@{apgeneratedsrcdir}"/>
+ <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
+ <src>
+ <dirset dir="@{gensrcdir}" erroronmissingdir="false">
+ <include name="*"/>
+ </dirset>
+ </src>
+ <classpath>
+ <path path="@{classpath}"/>
+ </classpath>
+ <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
+ <compilerarg line="${javac.compilerargs}"/>
+ <compilerarg value="-processorpath"/>
+ <compilerarg path="@{processorpath}:${empty.dir}"/>
+ <compilerarg line="${ap.processors.internal}"/>
+ <compilerarg line="${annotation.processing.processor.options}"/>
+ <compilerarg value="-s"/>
+ <compilerarg path="@{apgeneratedsrcdir}"/>
+ <compilerarg line="${ap.proc.none.internal}"/>
+ <customize/>
+ </javac>
+ </sequential>
+ </macrodef>
+ </target>
+ <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${src.www.dir}:${src.dir}:${src.java.dir}:${src.res.dir}:${res.dir}" name="srcdir"/>
<attribute default="${build.classes.dir}" name="destdir"/>
<attribute default="${javac.classpath}" name="classpath"/>
+ <attribute default="${javac.processorpath}" name="processorpath"/>
+ <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="${javac.debug}" name="debug"/>
@@ -246,6 +308,8 @@ is divided into following sections:
</javac>
</sequential>
</macrodef>
+ </target>
+ <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
<macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${src.www.dir}:${src.dir}:${src.java.dir}:${src.res.dir}:${res.dir}" name="srcdir"/>
<attribute default="${build.classes.dir}" name="destdir"/>
@@ -396,14 +460,65 @@ is divided into following sections:
</sequential>
</macrodef>
</target>
+ <target name="-init-macrodef-copylibs">
+ <macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
+ <element name="customize" optional="true"/>
+ <sequential>
+ <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
+ <pathconvert property="run.classpath.without.build.classes.dir">
+ <path path="${run.classpath}"/>
+ <map from="${build.classes.dir.resolved}" to=""/>
+ </pathconvert>
+ <pathconvert pathsep=" " property="jar.classpath">
+ <path path="${run.classpath.without.build.classes.dir}"/>
+ <chainedmapper>
+ <flattenmapper/>
+ <globmapper from="*" to="lib/*"/>
+ </chainedmapper>
+ </pathconvert>
+ <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
+ <copylibs compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
+ <fileset dir="${build.classes.dir}"/>
+ <manifest>
+ <attribute name="Class-Path" value="${jar.classpath}"/>
+ <customize/>
+ </manifest>
+ </copylibs>
+ </sequential>
+ </macrodef>
+ </target>
<target name="-init-presetdef-jar">
<presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
- <jar compress="${jar.compress}" jarfile="${dist.jar}">
+ <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}">
<j2seproject1:fileset dir="${build.classes.dir}"/>
</jar>
</presetdef>
</target>
- <target depends="-pre-init,-init-private,-init-libraries,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar" name="init"/>
+ <target name="-init-ap-cmdline-properties">
+ <property name="annotation.processing.enabled" value="true"/>
+ <property name="annotation.processing.processors.list" value=""/>
+ <property name="annotation.processing.processor.options" value=""/>
+ <property name="annotation.processing.run.all.processors" value="true"/>
+ <property name="javac.processorpath" value="${javac.classpath}"/>
+ <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
+ <condition property="ap.supported.internal" value="true">
+ <not>
+ <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
+ </not>
+ </condition>
+ </target>
+ <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
+ <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
+ <isfalse value="${annotation.processing.run.all.processors}"/>
+ </condition>
+ <condition else="" property="ap.proc.none.internal" value="-proc:none">
+ <isfalse value="${annotation.processing.enabled}"/>
+ </condition>
+ </target>
+ <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
+ <property name="ap.cmd.line.internal" value=""/>
+ </target>
+ <target depends="-pre-init,-init-private,-init-libraries,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar,-init-ap-cmdline" name="init"/>
<!--
===================
COMPILATION SECTION
@@ -447,7 +562,7 @@ is divided into following sections:
</pathconvert>
<j2seproject3:depend srcdir="${src.www.dir}:${src.dir}:${src.java.dir}:${src.res.dir}:${res.dir}:${build.generated.subdirs}"/>
</target>
- <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-compile-depend" if="have.sources" name="-do-compile">
+ <target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
<j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
<copy todir="${build.classes.dir}">
<fileset dir="${src.www.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
@@ -457,6 +572,12 @@ is divided into following sections:
<fileset dir="${res.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
</copy>
</target>
+ <target if="has.persistence.xml" name="-copy-persistence-xml">
+ <mkdir dir="${build.classes.dir}/META-INF"/>
+ <copy todir="${build.classes.dir}/META-INF">
+ <fileset dir="${meta.inf.dir}" includes="persistence.xml"/>
+ </copy>
+ </target>
<target name="-post-compile">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
@@ -489,13 +610,13 @@ is divided into following sections:
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
- <target depends="init,compile,-pre-pre-jar,-pre-jar" name="-do-jar-without-manifest" unless="manifest.available-mkdist.available">
+ <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive" name="-do-jar-without-manifest" unless="manifest.available">
<j2seproject1:jar/>
</target>
- <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class-mkdist.available">
+ <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class">
<j2seproject1:jar manifest="${manifest.file}"/>
</target>
- <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available">
+ <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available">
<j2seproject1:jar manifest="${manifest.file}">
<j2seproject1:manifest>
<j2seproject1:attribute name="Main-Class" value="${main.class}"/>
@@ -510,78 +631,35 @@ is divided into following sections:
</pathconvert>
<echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo>
</target>
- <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class+mkdist.available" name="-do-jar-with-libraries">
- <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
- <pathconvert property="run.classpath.without.build.classes.dir">
- <path path="${run.classpath}"/>
- <map from="${build.classes.dir.resolved}" to=""/>
- </pathconvert>
- <pathconvert pathsep=" " property="jar.classpath">
- <path path="${run.classpath.without.build.classes.dir}"/>
- <chainedmapper>
- <flattenmapper/>
- <globmapper from="*" to="lib/*"/>
- </chainedmapper>
- </pathconvert>
- <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
- <copylibs compress="${jar.compress}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
- <fileset dir="${build.classes.dir}"/>
- <manifest>
+ <target depends="init,compile,-pre-pre-jar,-pre-jar,-init-macrodef-copylibs" if="do.archive+manifest.available+main.class+mkdist.available+splashscreen.available" name="-do-jar-with-libraries-and-splashscreen">
+ <basename file="${application.splash}" property="splashscreen.basename"/>
+ <mkdir dir="${build.classes.dir}/META-INF"/>
+ <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
+ <j2seproject3:copylibs>
+ <customize>
<attribute name="Main-Class" value="${main.class}"/>
- <attribute name="Class-Path" value="${jar.classpath}"/>
- </manifest>
- </copylibs>
+ <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
+ </customize>
+ </j2seproject3:copylibs>
<echo>To run this application from the command line without Ant, try:</echo>
<property location="${dist.jar}" name="dist.jar.resolved"/>
<echo>java -jar "${dist.jar.resolved}"</echo>
</target>
- <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+mkdist.available" name="-do-jar-with-libraries-without-mainclass" unless="main.class.available">
- <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
- <pathconvert property="run.classpath.without.build.classes.dir">
- <path path="${run.classpath}"/>
- <map from="${build.classes.dir.resolved}" to=""/>
- </pathconvert>
- <pathconvert pathsep=" " property="jar.classpath">
- <path path="${run.classpath.without.build.classes.dir}"/>
- <chainedmapper>
- <flattenmapper/>
- <globmapper from="*" to="lib/*"/>
- </chainedmapper>
- </pathconvert>
- <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
- <copylibs compress="${jar.compress}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
- <fileset dir="${build.classes.dir}"/>
- <manifest>
- <attribute name="Class-Path" value="${jar.classpath}"/>
- </manifest>
- </copylibs>
- </target>
- <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.mkdist" name="-do-jar-with-libraries-without-manifest" unless="manifest.available">
- <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
- <pathconvert property="run.classpath.without.build.classes.dir">
- <path path="${run.classpath}"/>
- <map from="${build.classes.dir.resolved}" to=""/>
- </pathconvert>
- <pathconvert pathsep=" " property="jar.classpath">
- <path path="${run.classpath.without.build.classes.dir}"/>
- <chainedmapper>
- <flattenmapper/>
- <globmapper from="*" to="lib/*"/>
- </chainedmapper>
- </pathconvert>
- <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
- <copylibs compress="${jar.compress}" jarfile="${dist.jar}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
- <fileset dir="${build.classes.dir}"/>
- <manifest>
- <attribute name="Class-Path" value="${jar.classpath}"/>
- </manifest>
- </copylibs>
+ <target depends="init,compile,-pre-pre-jar,-pre-jar,-init-macrodef-copylibs" if="do.archive+manifest.available+main.class+mkdist.available" name="-do-jar-with-libraries" unless="splashscreen.available">
+ <j2seproject3:copylibs>
+ <customize>
+ <attribute name="Main-Class" value="${main.class}"/>
+ </customize>
+ </j2seproject3:copylibs>
+ <echo>To run this application from the command line without Ant, try:</echo>
+ <property location="${dist.jar}" name="dist.jar.resolved"/>
+ <echo>java -jar "${dist.jar.resolved}"</echo>
</target>
<target name="-post-jar">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
- <target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-do-jar-with-libraries-without-mainclass,-do-jar-with-libraries-without-manifest,-post-jar" description="Build JAR." name="jar"/>
+ <target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries-and-splashscreen,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/>
<!--
=================
EXECUTION SECTION
@@ -651,7 +729,7 @@ is divided into following sections:
JAVADOC SECTION
===============
-->
- <target depends="init" name="-javadoc-build">
+ <target depends="init" if="have.sources" name="-javadoc-build">
<mkdir dir="${dist.javadoc.dir}"/>
<javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
<classpath>
@@ -697,7 +775,7 @@ is divided into following sections:
<j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}:${test.res.dir}"/>
</target>
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
- <j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}:${test.res.dir}"/>
+ <j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" processorpath="${javac.test.processorpath}" srcdir="${test.src.dir}:${test.res.dir}"/>
<copy todir="${build.test.classes.dir}">
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
<fileset dir="${test.res.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
@@ -715,7 +793,7 @@ is divided into following sections:
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
<j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
- <j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" sourcepath="${test.src.dir}:${test.res.dir}" srcdir="${test.src.dir}:${test.res.dir}"/>
+ <j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" processorpath="${javac.test.processorpath}" sourcepath="${test.src.dir}:${test.res.dir}" srcdir="${test.src.dir}:${test.res.dir}"/>
<copy todir="${build.test.classes.dir}">
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
<fileset dir="${test.res.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
diff --git a/nbproject/genfiles.properties b/nbproject/genfiles.properties
index 7c6ac93..66110a4 100755
--- a/nbproject/genfiles.properties
+++ b/nbproject/genfiles.properties
@@ -4,5 +4,5 @@ build.xml.stylesheet.CRC32=be360661
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=478066e1
-nbproject/build-impl.xml.script.CRC32=659f9806
-nbproject/build-impl.xml.stylesheet.CRC32=576378a2@1.32.1.45
+nbproject/build-impl.xml.script.CRC32=371d3a48
+nbproject/build-impl.xml.stylesheet.CRC32=78c6a6ee@1.38.1.45
diff --git a/src/main/java/com/kitfox/svg/ImageSVG.java b/src/main/java/com/kitfox/svg/ImageSVG.java
index f8d3a54..e2fb168 100644
--- a/src/main/java/com/kitfox/svg/ImageSVG.java
+++ b/src/main/java/com/kitfox/svg/ImageSVG.java
@@ -27,6 +27,7 @@
package com.kitfox.svg;
+import com.kitfox.svg.app.data.Handler;
import com.kitfox.svg.xml.*;
import java.awt.*;
@@ -79,13 +80,20 @@ public class ImageSVG extends RenderableElement
if (getPres(sty.setName("xlink:href")))
{
URI src = sty.getURIValue(getXMLBase());
- try {
- imageSrc = src.toURL();
+ if ("data".equals(src.getScheme()))
+ {
+ imageSrc = new URL(null, src.toASCIIString(), new Handler());
}
- catch (Exception e)
+ else
{
- e.printStackTrace();
- imageSrc = null;
+ try {
+ imageSrc = src.toURL();
+ }
+ catch (Exception e)
+ {
+ e.printStackTrace();
+ imageSrc = null;
+ }
}
}
}
@@ -94,7 +102,6 @@ public class ImageSVG extends RenderableElement
throw new SVGException(e);
}
-
diagram.getUniverse().registerImage(imageSrc);
//Set widths if not set
diff --git a/src/main/java/com/kitfox/svg/SVGUniverse.java b/src/main/java/com/kitfox/svg/SVGUniverse.java
index 8fdf19d..f99279b 100644
--- a/src/main/java/com/kitfox/svg/SVGUniverse.java
+++ b/src/main/java/com/kitfox/svg/SVGUniverse.java
@@ -35,6 +35,7 @@ import java.beans.PropertyChangeSupport;
import java.io.BufferedInputStream;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
+import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
@@ -51,7 +52,6 @@ import java.util.HashMap;
import java.util.Iterator;
import java.util.zip.GZIPInputStream;
import javax.imageio.ImageIO;
-import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.EntityResolver;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
@@ -173,7 +173,60 @@ public class SVGUniverse implements Serializable
{
return (Font)loadedFonts.get(fontName);
}
-
+
+ URL registerImage(URI imageURI)
+ {
+ String scheme = imageURI.getScheme();
+ if (scheme.equals("data"))
+ {
+ String path = imageURI.getRawSchemeSpecificPart();
+ int idx = path.indexOf(';');
+ String mime = path.substring(0, idx);
+ String content = path.substring(idx + 1);
+
+ if (content.startsWith("base64"))
+ {
+ content = content.substring(6);
+ try {
+ byte[] buf = new sun.misc.BASE64Decoder().decodeBuffer(content);
+ ByteArrayInputStream bais = new ByteArrayInputStream(buf);
+ BufferedImage img = ImageIO.read(bais);
+
+ URL url;
+ int urlIdx = 0;
+ while (true)
+ {
+ url = new URL("inlineImage", "localhost", "img" + urlIdx);
+ if (!loadedImages.containsKey(url))
+ {
+ break;
+ }
+ urlIdx++;
+ }
+
+ SoftReference ref = new SoftReference(img);
+ loadedImages.put(url, ref);
+
+ return url;
+ } catch (IOException ex) {
+ ex.printStackTrace();
+ }
+ }
+ return null;
+ }
+ else
+ {
+ try {
+ URL url = imageURI.toURL();
+ registerImage(url);
+ return url;
+ } catch (MalformedURLException ex) {
+ ex.printStackTrace();
+ }
+ return null;
+ }
+ }
+
void registerImage(URL imageURL)
{
if (loadedImages.containsKey(imageURL)) return;
diff --git a/src/main/java/com/kitfox/svg/app/data/Handler.java b/src/main/java/com/kitfox/svg/app/data/Handler.java
new file mode 100644
index 0000000..9cd3525
--- /dev/null
+++ b/src/main/java/com/kitfox/svg/app/data/Handler.java
@@ -0,0 +1,76 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+
+package com.kitfox.svg.app.data;
+
+import java.io.ByteArrayInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.net.URL;
+import java.net.URLConnection;
+import java.net.URLStreamHandler;
+
+/**
+ *
+ * @author kitfox
+ */
+public class Handler extends URLStreamHandler
+{
+ class Connection extends URLConnection
+ {
+ String mime;
+ byte[] buf;
+
+ public Connection(URL url)
+ {
+ super(url);
+
+ String path = url.getPath();
+ int idx = path.indexOf(';');
+ mime = path.substring(0, idx);
+ String content = path.substring(idx + 1);
+
+ if (content.startsWith("base64,"))
+ {
+ content = content.substring(7);
+ try {
+ buf = new sun.misc.BASE64Decoder().decodeBuffer(content);
+ } catch (IOException ex) {
+ ex.printStackTrace();
+ }
+ }
+ }
+
+ public void connect() throws IOException
+ {
+ }
+
+ public String getHeaderField(String name)
+ {
+ if ("content-type".equals(name))
+ {
+ return mime;
+ }
+
+ return super.getHeaderField(name);
+ }
+
+ public InputStream getInputStream() throws IOException
+ {
+ return new ByteArrayInputStream(buf);
+ }
+
+// public Object getContent() throws IOException
+// {
+// BufferedImage img = ImageIO.read(getInputStream());
+// }
+ }
+
+ protected URLConnection openConnection(URL u) throws IOException
+ {
+ return new Connection(u);
+ }
+
+}
diff --git a/src/main/java/com/kitfox/svg/app/data/HandlerFactory.java b/src/main/java/com/kitfox/svg/app/data/HandlerFactory.java
new file mode 100644
index 0000000..e1ed1b5
--- /dev/null
+++ b/src/main/java/com/kitfox/svg/app/data/HandlerFactory.java
@@ -0,0 +1,27 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+
+package com.kitfox.svg.app.data;
+
+import java.net.URLStreamHandler;
+import java.net.URLStreamHandlerFactory;
+
+/**
+ *
+ * @author kitfox
+ */
+public class HandlerFactory implements URLStreamHandlerFactory
+{
+ static Handler handler = new Handler();
+
+ public URLStreamHandler createURLStreamHandler(String protocol)
+ {
+ if ("data".equals(protocol))
+ {
+ return handler;
+ }
+ return null;
+ }
+}
diff --git a/src/test/res/1C2EC147.png b/src/test/res/1C2EC147.png
new file mode 100644
index 0000000..e33dd29
--- /dev/null
+++ b/src/test/res/1C2EC147.png
Binary files differ
diff --git a/src/test/res/1C2EC148.png b/src/test/res/1C2EC148.png
new file mode 100644
index 0000000..e33dd29
--- /dev/null
+++ b/src/test/res/1C2EC148.png
Binary files differ
diff --git a/src/test/res/Monitor.svg b/src/test/res/Monitor.svg
new file mode 100644
index 0000000..9e07a3f
--- /dev/null
+++ b/src/test/res/Monitor.svg
@@ -0,0 +1,84 @@
+<?xml version="1.0" standalone="no"?>
+<!-- Created with Sketsa SVG Editor (http://www.kiyut.com) -->
+<svg contentScriptType="text/ecmascript" zoomAndPan="magnify" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" baseProfile="full"
+ contentStyleType="text/css" id="svg2" sodipodi:docname="Monitor1.svg" version="1.0" width="1024.0px"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:cc="http://creativecommons.org/ns#"
+ sodipodi:version="0.32" preserveAspectRatio="xMidYMid meet" inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:version="0.46" height="768.0px" xmlns="http://www.w3.org/2000/svg">
+ <defs id="defs29">
+ <linearGradient gradientTransform="scale(0.7389107,1.3533434)" id="linearGradient130"
+ gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="522.15487" y1="142.70233" x2="460.98582"
+ y2="257.30161" xlink:href="#aigrd1"
+ />
+ <radialGradient gradientUnits="userSpaceOnUse" style=
+ "stroke:#000000;stroke-opacity:0.986014;stroke-width:0.981612;" cx="218.9404" r="150.7063"
+ id="aigrd1" cy="219.7715" fx="218.9404" fy="219.7715">
+ <stop offset="0" style=
+ "stop-color:#73ffff;stroke:#000000;stroke-opacity:0.986014;stroke-width:0.981612;"
+ id="stop53"/>
+ <stop offset="0.2809" style=
+ "stop-color:#2EA6B9;stroke:#000000;stroke-opacity:0.986014;stroke-width:0.981612;"
+ id="stop54"/>
+ <stop offset="1" style=
+ "stop-color:#006b8b;stroke:#000000;stroke-opacity:0.986014;stroke-width:0.981612;"
+ id="stop55"/>
+ </radialGradient>
+ <radialGradient inkscape:collect="always" id="radialGradient2570" gradientUnits="userSpaceOnUse"
+ r="150.7063" cx="218.9404" fx="218.9404" cy="219.7715" fy="219.7715" xlink:href="#aigrd1"/>
+ </defs>
+ <rect x="10.0" y="10.0" fill="none" width="50.0" visibility="hidden" id="startButton" height="210.0" stroke="#000000"/>
+ <rect x="70.0" y="20.0" fill="none" width="175.0" visibility="hidden" id="dateLabel" height="30.0" stroke="#000000"/>
+ <rect x="255.0" y="20.0" fill="none" width="620.0" visibility="hidden" id="date" height="30.0" stroke="#000000"/>
+ <rect x="70.0" y="60.0" fill="none" width="175.0" visibility="hidden" height="30.0" id="bpLabel" stroke="#000000"/>
+ <rect x="255.0" y="60.0" fill="none" width="275.0" visibility="hidden" height="30.0" id="bpSystolic" stroke="#000000"/>
+ <rect x="540.0" y="60.0" fill="none" width="20.0" visibility="hidden" height="30.0" id="bpSlash" stroke="#000000"/>
+ <rect x="570.0" y="60.0" fill="none" width="275.0" visibility="hidden" height="30.0" id="bpDiastolic" stroke="#000000"/>
+ <rect x="855.0" y="60.0" fill="none" width="100.0" visibility="hidden" height="30.0" id="bpUnits" stroke="#000000"/>
+ <rect x="70.0" y="100.0" fill="none" width="175.0" visibility="hidden" height="30.0" id="hrLabel" stroke="#000000"/>
+ <rect x="255.0" y="100.0" fill="none" width="590.0" visibility="hidden" height="30.0" id="hr" stroke="#000000"/>
+ <rect x="855.0" y="100.0" fill="none" width="100.0" visibility="hidden" height="30.0" id="hrUnits" stroke="#000000"/>
+ <rect x="70.0" y="140.0" fill="none" width="175.0" visibility="hidden" height="30.0" id="glucoseLabel" stroke="#000000"/>
+ <rect x="255.0" y="140.0" fill="none" width="590.0" visibility="hidden" height="30.0" id="glucose" stroke="#000000"/>
+ <rect x="855.0" y="140.0" fill="none" width="100.0" visibility="hidden" height="30.0" id="glucoseUnits" stroke="#000000"/>
+ <rect x="70.0" y="180.0" fill="none" width="175.0" visibility="hidden" height="30.0" id="weightLabel" stroke="#000000"/>
+ <rect x="255.0" y="180.0" fill="none" width="590.0" visibility="hidden" height="30.0" id="weight" stroke="#000000"/>
+ <rect x="855.0" y="180.0" fill="none" width="100.0" visibility="hidden" height="30.0" id="weightUnits" stroke="#000000"/>
+ <rect x="964.0" y="10.0" fill="none" width="50.0" visibility="hidden" height="210.0" id="saveButton" stroke="#000000"/>
+ <rect x="10.0" y="230.0" fill="none" width="1004.0" visibility="hidden" height="528.0" id="monitorTable" stroke="#000000"/>
+ <g id="startIcon" transform="matrix(0.2753906,0,0,0.2026588,-41.527695,58.678462)">
+ <path d="M 338.593,175.32 L 435.492,261.836 L 339.257,355.345 L
+ 338.593,175.32 z" id="path126" style=
+ "font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#a4c9ee;stroke-width:10.82400036;stroke-linejoin:round;stroke-opacity:0.70196096"
+ transform="matrix(1.72603,0,0,1.94683,-397.314,-245.978)"/>
+ <path d="M 355.635,183.469 L 437.887,259.936 L 355.817,342.102 L
+ 355.635,183.469 z" id="path84" style=
+ "font-size:12px;fill:url(#linearGradient130);fill-opacity:0.99215698;fill-rule:evenodd;stroke:#0c6671;stroke-width:9.60303974;stroke-opacity:0.99215698"
+ transform="matrix(1.67014,0,0,1.75639,-395.375,-194.413)"/>
+ </g>
+ <g id="saveIcon" transform="matrix(0.1185088,0,0,0.1113635,957.3558,83.956138)">
+ <path id="path51" d="M 134.757,263.776 C 134.757,330.515 189.055,384.816 255.796,384.816 C
+ 322.535,384.816 376.835,330.515 376.835,263.776 C 376.835,197.035 322.535,142.737
+ 255.796,142.737 C 189.055,142.737 134.757,197.035 134.757,263.776 z" style=
+ "font-size:12px;fill:#a4c9ee;fill-opacity:0.7;stroke:none;stroke-width:0.97926801;stroke-opacity:0.98601403"
+ transform="matrix(1.89511,0,0,1.91236,-231.458,-247.971)"/>
+ <path id="path56" d="M 356.643,263.366 C 356.643,320.393 310.413,366.623 253.387,366.623 C
+ 196.36,366.623 150.131,320.394 150.131,263.366 C 150.131,206.339 196.36,160.11
+ 253.387,160.11 C 310.412,160.11 356.643,206.339 356.643,263.366 z" style=
+ "font-size:12px;fill:url(#radialGradient2570);fill-rule:evenodd;stroke:#1c6671;stroke-width:7.73106003;stroke-opacity:0.98823499"
+ transform="matrix(2.04451,0,0,2.04451,-264.353,-281.723)"/>
+ <path id="path59" d="M 305.753,281.376 C 305.753,281.376 286.895,262.52 277.899,253.525 C
+ 285.842,245.581 299.051,232.372 299.051,232.372 C 300.964,230.459 301.98,227.901
+ 301.98,225.299 C 301.98,224.01 301.731,222.711 301.218,221.474 C 299.67,217.738
+ 296.025,215.301 291.98,215.301 L 215.117,215.301 C 209.594,215.301 205.117,219.778
+ 205.117,225.301 L 205.117,302.168 C 205.117,306.213 207.554,309.859 211.29,311.407 C
+ 215.027,312.955 219.329,312.098 222.188,309.238 C 222.188,309.238 235.396,296.027
+ 243.34,288.083 C 252.336,297.079 271.192,315.937 271.192,315.937 C 273.067,317.813
+ 275.611,318.867 278.263,318.867 C 280.915,318.867 283.458,317.813 285.334,315.938 L
+ 305.754,295.518 C 307.629,293.642 308.683,291.099 308.683,288.447 C 308.683,285.795
+ 307.629,283.251 305.753,281.376 L 305.753,281.376 z" style=
+ "font-size:12px;opacity:1;fill:#ffffff;fill-opacity:0.98999999;stroke:#1c6772;stroke-width:4.99273014;stroke-opacity:0.98823499"
+ transform="matrix(-1.41204,-1.39804,1.39804,-1.41204,249.028,985.197)"/>
+ </g>
+</svg> \ No newline at end of file
diff --git a/src/test/res/data-uri-scheme-test-image.svg b/src/test/res/data-uri-scheme-test-image.svg
new file mode 100644
index 0000000..a6356be
--- /dev/null
+++ b/src/test/res/data-uri-scheme-test-image.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="144.96" height="32.4"
+ viewBox="0 0 144.96 32.4" overflow="visible" enable-background="new 0 0 144.96 32.4" xml:space="preserve">
+<g>
+ <g>
+ <defs>
+ <rect id="XMLID_4_" width="144.96" height="32.4"/>
+ </defs>
+ <clipPath id="XMLID_6_">
+ <use xlink:href="#XMLID_4_" />
+ </clipPath>
+ <g transform="matrix(1 0 0 1 0 0)" clip-path="url(#XMLID_6_)">
+
+ <image width="604" height="135" xlink:href="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/4QAWRXhpZgAATU0AKgAAAAgAAAAAAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCACgAKADASIAAhEBAxEB/8QAHQABAAEEAwEAAAAAAAAAAAAAAAgEBgcJAQMFAv/EAEcQAAEDAwEEBgQKCAMJAAAAAAEAAgMEBREGBxIhMQgTIkFRYTJxgZEJFBUWYnKSocHRIyRCUlOUo8IXhLEYMzRXc4OFotL/xAAbAQEBAAIDAQAAAAAAAAAAAAAAAQIFAwQGB//EACoRAQACAQIEBAYDAAAAAAAAAAABAhEDMQQFIUESE1FhFDJCcaHwYsHx/9oADAMBAAIRAxEAPwCZaIiAiIgIiICIiAiIgLx9W6p07pK1uumpbzRWqjBx1tTKGBx8AOZPkOK51lqK1aT0vcNR3qobT0FBC6aZ554HIDxJOAB3kha6Nu2uK7VtQNS6njMt0uuZLVbpHExWqgz2HbnIySc8n9nBx2hhjImna+kjsYuNxFBBramjkc7dDp4JYoyfrvaG/esq0FXS19HFWUNTDVU0zd6OaF4ex48QRwIWnXrC53FrDn6ICmV0MdeMotR2nTFK4x2u/U8rX0Rlc9tLXwNLnPjz6LJGNJLQT2sclcGUxkRFAREQF1CFrZhIwY4YIC7UQEREBERAREQEREBEWLukptEm0DoTq7MOu1NepBQWanbxcZn8DJjwbkH1lo70GEOlNryn1nrGo0pHNnRukj8av0jXYbWVY9CmyOeDwIHH0zzaFD/VV7rNRX6pu9c4GWd3otbhrWjgAB3ADuCvja/cILJSU+z22VQqRQvM95q2uz8brnenk94byGfDxCxmstuiHDKzh0KIn1HSB0w0lxZHJVSYzwGKWX8cLB+SSpEdAWm67bjSykZ6igqpfVlrWf3KSQ2GIiKKIiICIiAiIgIiICIiAiIg66maKnp5KieVkUMTC+R7zhrWgZJJ7gAoIbTtpfy9qK+bXZyfilGX2XRdNIMZfg9bVbp/dDs+t4H7IWbemjrue36cotm9jqGsvGpjuVDwcdRRg4e4+Adgj6rXqDu0q/wXW401rtbnNstnh+KUDP3mg5fKfpPcS4nzCsepK1p5ZJ5pJpXufJI4ue5xyXE8yV1rlEAd6lD8HZTiTavcpyM9VY5iD4EzQj81F7xUuPg46fOsNR1PfHa42falz/akibiIigIiICIiAiIgIiICIiAqS83GjtForLrcZ209HRwPnnldyYxoJcfcFVqN3Td1lJFZLZs3tlR1dXfHdfcHA8YqSM54/WcPcwjvQRX2t65rtTX+965rC+Orvcjqa3RE8aajb2eHh2QG8OZLj3rEa9jV1yZcrw91OC2khaIaZvhG3gPfxPtXkAE8gSrPoOEXJGChUHCml8G/TjOsqnHFsdFGD6+uP4KF3cpy/BywBumdWz976qlZ9ljz/cgleiIgIiICIiAiIgIiICIiDouNZTW+31FfWzNgpaaJ000jjgMY0EucfIAErWrtg1pVapvN91rVOLJb7O6mt8bjxho48NA8sgNB88nvUtemjq2a36Ho9D2ybcuWppupfuniylYQZD6j2W+Y3lAfXVwirLy6GkP6nStFPTjPDcbwz7Tk581Y9SXhxRPmnbFGC5zjgYUldl+yvTejNH/Pzac0dW5u9R29/pSEjIyO/Ph7T4K3+irs+o7tcKrWOomtZZLO3rnmQdl7hxA48wOZ9g5FXHBHeukHtVkD5JaTS9udxx6McQPnw33Y5nzPcu/w+jFYi8xmZ2h47nPMra+pbhtO3hpX57d+vaPedv8AMMEaxp3XK7V96tdokpLU+ZxjDWncjBPAZVtKUe2vV1vudNDsh2Z2eOalbII5HQs3jLID3ePHiXHmo+6/0bfdEXn5Jv8ATCnqtwSboeHcDyOQcLh4jS8M5jr6/dtOTcx87TjT1Iis/TGczNY7rfAyPUp7fB4U5Zs3v9V3S3NrfsxN/wDpQIaeI9a2E/B+R7uxevk733qX7oYV1W9SLREQEREBERAREQEREBDy4osV9KnW50Nsbu1ZTSllyuI+TqHBw7rJQQXDzawPcPMBBEPpB6+Op9eam1fBPvUlOfkaykHhujO9I319t+fp4WBKWN1TVxRDi57gF7WuKnqXUVijPYt8X6XH7U7+08+zg32FcbNBQO1pazc5WRUgqY+uc7kG7wyfcuSkeK0VcHE6vlaNtTG0TKRu1V50BsE09oegHV115aKit3eDiOGWn2nHqaq/V1W3Y10erdYaAdTqHUDN+d49NocBve4EN9hVt7StSWTW/SAsVPT18U1pp300AkzhhAILufmSqrbVU0muOkdZbA2rjmoKZ8FN2HgsxwL8Hl3lbi3ea/aP392fNdGvSldaOk51Le++PxGJj+T0tEU1u2KbJPn1doI59U3pn6m2UZMLCM5wfIgnxyByBUYta6mumq79Pd7tUyVFRK4kue7JWYumlqR1w2hixwS/qdribAyNp7LSAN7/ANiVgHK13FXxPl12h7DkXCZ0/i9Xre34j2/r2xD7ZzA81sU6BUXV7DHn9+7Tu/pxD8Frrj9JvrWyDoNM3NglI79+vqHfe0fguo9CzoiIgIiICIiAiIgIiIChH03NaR3bapSaeZIJLdpWkNVUsB4OqZAHBp8eHVDyJcpmamu9Jp/Ttxvte/cpLfSyVMx+ixpccefBaqdf6grL1PXXeufmvv1dJXVBzybvHdaPLeLvshWBaNTNJUVElRM4vkkeXvce8k5JXyxzmnLSQV8rkKDujqpo5A9r3BwOcgqogu1dBWtrYqiRtQ05bIHdoH1qgRWLTHdhbTpbeFVc7hV3KqdU1s75pXc3POSVSoiTMzOZWtYpEVrGIfcZ7bfWtlHQjZu9H61Ox6dTUE/bI/Ba1o/Tb61sv6FjcdHqxn96WoP9ZyjJmdERAREQEREBERAREQR76duq32fZVTaYo5d2t1HWNp8A4PUxkPeftdWPU4rXxeqltVcZHRnMLMRxfUaMD34z7VIfpvax+W9s9dRQy71Np2ibRRAHgZ38XkeY38f9tRrVBFyMFfUUb5ZGxxMc97jhrWjJJ9Sg+EVfFZ7pJTyztoZ+rhc1j3OZjDncWt48yRxwOKoXtcx5Y5pa5pwQRggoOEREH1F/vB61sz6GGP8AZ104QQcmo5f9Z61mwjMrB4uAWyvoSNA6OWn3DPalqj/XePwQZqREQEREBERAREQF5+prtS2DTlyvlc7dpbfSy1Ux+ixpcfuC9BYI6c+qDp/YTV0EUm5UXuqioW4PHc4yP9mGbp+sg166svFXfb7cLtXSF9TX1UlVOfF73FxP3leQrottpiqGxMfA+pnk9Bjck8eQAC9Ko0nJT/8AFWt1KR3VDuqPucQrgWNg4VzbMYG1GsqalkM7WzwVMLuphfI/D6eRuMMa9wHHi4MdujLt12MHrqrXQtcR19Mw/Rq4z+K8+ejp2A7tXGfU9p/0KYEhaimuT7rW0Et2sdN1EdNRSRRAtZCZoC5kRc5zYyOtmwHMJd1e8QQWtaLW1fsyttXVy3V98l+N1EzDLA1oOMymORwLg3O5jtNySDjLiA97cLuii7p2e4rjqo/47fcVMC6tqulaHSl8go6Geoc2WBsj4Kl0bpoXd4cWdkjOccuR5jBNnqpbDTEdqrAP1Cu+mo6V57VSHnuDeH+qYFPb2GSsgaBn9IMqVXQ32zassunq/SbNG3rVdtoN2WmbaqbfkpOsc4uD8Di1xyRnvB9kcLfBTxVbNyNoOefNT/6DVstlHsHoa2joqeGqrKuoNXMxgD5iyV7W7x5nDeA8EHrR7ZtQu9LYtr9v+SC+27Y78Rk7GdoA/wAiPzWXUQYj/wAY75/ya2g/yDfzQbY74eWxraF/ID81lxEGIztkvY57GtoX8gPzQbZLweexzaGP/HD81lxEBEyuMoOVYu2vZ9p3aFpJ1Ff6Spn+Jl09M6meGysfjHZyCDnwIV85VJdGzvhDYHuYSe0Rzwg1v1mzDVdvpS/q6uOUP33NdHz8ARjDh5Hh5L0HaI1tdZ4aaSTQdE17AesNroKdrfJxEW9ve8eanoLE0jDg7GV9yWGndypo2/a/MouWv6fYNrCqqSH6m2fDAyD8qwxg+5mPYqK57BtaUceWXnQ9Znup73TZH2sLYO7TkRPCFo9hXHzci/gt9yYgy1m1mzjVlMS2SgpnkEgmGohlB9W6Suh2g9T9nq7RNLnmBHj78YwtnHzdZ/CHuXPzeb/DVxVMy16bNtjlbfqtzdQ3J2n4g7AHyPPWyPHiBG3HvcFma09HrRlDV0c7L9dq+WEiUSt0rUM7TTwBB3m+fFpHDipTCwAHO4qiK1zMLcF2AfEqdFzKI1r2Am+7VI6urpalljdMRPDDSmiMgwQHAFoaw8shoA8ApiaK0xZNHabpdPaeom0dvpt7q4w4uOXOLnOJPEkkkk+apfkuUVYqIy5jxy3c8PevepDJ1DRMcv7zjmiO1ERAREQEREH/2Q==" transform="matrix(0.24 0 0 0.24 0 0)" />
+ </g>
+ </g>
+</g>
+</svg>
diff --git a/src/test/res/drawing.svg b/src/test/res/drawing.svg
new file mode 100644
index 0000000..afd2368
--- /dev/null
+++ b/src/test/res/drawing.svg
@@ -0,0 +1,9361 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd" [
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.1" baseProfile="tiny" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="642.2" height="429.1"
+ viewBox="0 0 642.2 429.1" xml:space="preserve">
+<font horiz-adv-x="1000">
+<!-- Copyright (c) 1992, 1994 Adobe Systems Incorporated. All Rights Reserved.Myriad is a trademark of Adobe Systems Incorporated may be registered in certain jurisdictions. -->
+<font-face font-family="Myriad-Roman" units-per-em="1000" underline-position="-100" underline-thickness="50"/>
+<missing-glyph horiz-adv-x="212"/>
+<glyph unicode="A" horiz-adv-x="612" d="M424,212l72,-212l93,0l-230,674l-105,0l-229,-674l90,0l70,212M203,280l66,195C282,516 293,558 302,597l3,0C315,558 325,518 339,474l67,-194z"/>
+<glyph unicode="B" horiz-adv-x="542" d="M76,2C105,-2 151,-6 211,-6C321,-6 397,14 443,57C478,90 501,134 501,192C501,292 426,345 362,360l0,3C432,388 476,445 476,511C476,564 454,604 419,630C378,664 322,679 235,679C175,679 114,673 76,664M163,606C177,609 200,612 240,612C328,612 387,580 387,502C387,437 333,388 242,388l-79,0M163,323l72,0C330,323 409,284 409,193C409,95 326,62 236,62C205,62 181,63 163,66z"/>
+<glyph unicode="C" horiz-adv-x="580" d="M529,91C494,74 440,63 386,63C223,63 128,168 128,334C128,511 233,612 391,612C447,612 494,600 526,584l22,71C525,667 471,685 388,685C179,685 36,543 36,331C36,109 178,-11 368,-11C450,-11 515,5 546,21z"/>
+<glyph unicode="D" horiz-adv-x="666" d="M75,2C120,-4 171,-6 234,-6C365,-6 469,28 533,91C595,153 630,243 630,353C630,462 595,541 534,596C475,651 386,679 261,679C192,679 129,673 75,665M163,601C186,606 220,610 265,610C449,610 539,511 538,350C538,168 437,63 251,64C217,64 185,64 163,68z"/>
+<glyph unicode="E" horiz-adv-x="492" d="M424,388l-261,0l0,213l277,0l0,73l-365,0l0,-674l380,0l0,73l-292,0l0,243l261,0z"/>
+<glyph unicode="F" horiz-adv-x="487" d="M75,0l88,0l0,305l254,0l0,72l-254,0l0,224l275,0l0,73l-363,0z"/>
+<glyph unicode="G" horiz-adv-x="646" d="M590,354l-222,0l0,-70l136,0l0,-201C484,73 445,65 388,65C230,65 128,166 128,337C128,506 235,608 399,608C467,608 512,596 548,579l22,71C541,664 479,681 401,681C175,681 36,534 36,333C36,228 72,138 130,82C196,19 280,-7 382,-7C473,-7 551,15 590,30z"/>
+<glyph unicode="H" horiz-adv-x="652" d="M75,674l0,-674l88,0l0,316l326,0l0,-316l88,0l0,674l-88,0l0,-282l-326,0l0,282z"/>
+<glyph unicode="I" horiz-adv-x="239" d="M75,674l0,-674l88,0l0,674z"/>
+<glyph unicode="J" horiz-adv-x="370" d="M213,230C213,98 168,63 90,63C60,63 34,69 16,76l-12,-71C25,-4 64,-11 97,-11C213,-11 301,44 301,223l0,451l-88,0z"/>
+<glyph unicode="K" horiz-adv-x="542" d="M76,0l87,0l0,257l65,74l221,-331l103,0l-263,388l244,286l-108,0l-206,-253C202,399 184,375 166,349l-3,0l0,325l-87,0z"/>
+<glyph unicode="L" horiz-adv-x="472" d="M75,0l376,0l0,73l-288,0l0,601l-88,0z"/>
+<glyph unicode="M" horiz-adv-x="804" d="M660,0l86,0l-42,674l-111,0l-120,-326C443,263 419,189 401,121l-2,0C381,191 359,265 331,348l-115,326l-111,0l-47,-674l83,0l18,289C165,391 170,503 172,587l2,0C193,507 219,421 251,325l110,-321l66,0l119,327C580,424 607,509 631,587l2,0C633,504 639,390 644,296z"/>
+<glyph unicode="N" horiz-adv-x="658" d="M158,0l0,288C158,400 157,481 152,566l3,1C188,494 233,417 280,342l214,-342l88,0l0,674l-82,0l0,-283C500,287 502,205 510,115l-3,-1C476,184 436,254 387,333l-215,341l-96,0l0,-674z"/>
+<glyph unicode="O" horiz-adv-x="689" d="M340,-11C511,-11 652,113 652,344C652,544 533,685 348,685C168,685 36,545 36,331C36,127 160,-11 339,-11M342,60C205,60 127,191 127,333C127,479 199,614 344,614C489,614 559,474 559,340C559,187 481,60 343,60z"/>
+<glyph unicode="&#xD8;" horiz-adv-x="689" d="M112,-43l63,86C223,8 282,-11 345,-11C507,-11 652,108 652,343C652,442 621,530 565,591l62,86l-53,36l-59,-81C467,667 409,685 347,685C170,685 36,546 36,333C36,232 69,144 125,83l-62,-87M176,158l-2,-1C144,208 125,263 125,337C125,479 199,615 345,615C396,615 438,597 472,568M513,515l3,0C551,457 563,397 563,340C563,188 484,59 344,59C289,59 251,76 218,107z"/>
+<glyph unicode="P" horiz-adv-x="532" d="M76,0l87,0l0,270C183,265 207,264 233,264C318,264 393,289 439,338C474,373 492,421 492,482C492,542 469,591 432,623C392,659 329,679 243,679C173,679 118,673 76,665M163,603C178,606 207,610 245,610C341,610 404,567 404,477C404,386 341,334 235,334C207,334 182,336 163,341z"/>
+<glyph unicode="Q" horiz-adv-x="689" d="M657,-26C600,-16 527,0 460,17l0,4C572,61 652,171 652,344C652,543 533,685 349,685C167,685 36,546 36,330C36,113 172,-5 333,-11C346,-11 359,-16 374,-21C452,-48 541,-75 632,-99M343,60C206,60 128,189 128,332C128,478 200,614 347,614C490,614 560,475 560,340C560,187 482,60 344,60z"/>
+<glyph unicode="R" horiz-adv-x="538" d="M76,0l87,0l0,292l82,0C324,289 361,254 381,161C399,77 414,19 425,0l90,0C502,26 486,91 464,185C447,255 416,303 365,321l0,3C435,348 492,407 492,495C492,548 472,594 439,623C397,661 336,679 243,679C184,679 120,673 76,664M163,603C178,607 207,611 249,611C341,611 404,573 404,486C404,409 345,358 252,358l-89,0z"/>
+<glyph unicode="S" horiz-adv-x="493" d="M42,33C78,9 149,-11 214,-11C373,-11 449,80 449,184C449,283 392,337 278,382C185,418 144,449 144,512C144,558 179,613 271,613C332,613 377,594 398,581l24,71C393,669 342,685 274,685C143,685 56,607 56,502C56,408 124,350 234,310C325,276 361,239 361,177C361,108 309,62 220,62C160,62 104,81 65,106z"/>
+<glyph unicode="T" horiz-adv-x="497" d="M204,0l88,0l0,600l206,0l0,74l-499,0l0,-74l205,0z"/>
+<glyph unicode="U" horiz-adv-x="647" d="M75,674l0,-397C75,67 179,-11 317,-11C463,-11 572,73 572,280l0,394l-88,0l0,-400C484,126 419,60 320,60C230,60 163,124 163,274l0,400z"/>
+<glyph unicode="V" horiz-adv-x="558" d="M320,0l241,674l-93,0l-114,-333C323,253 296,168 277,90l-2,0C256,168 231,251 203,342l-105,332l-95,0l221,-674z"/>
+<glyph unicode="Y" horiz-adv-x="541" d="M314,0l0,287l225,387l-98,0l-97,-186C318,437 294,393 276,349l-2,0C253,396 232,437 207,488l-95,186l-100,0l214,-388l0,-286z"/>
+<glyph unicode="Z" horiz-adv-x="553" d="M30,0l492,0l0,73l-377,0l0,3l372,545l0,53l-455,0l0,-73l342,0l0,-3l-374,-547z"/>
+<glyph unicode="a" horiz-adv-x="482" d="M414,297C414,394 378,495 229,495C168,495 109,478 69,453l20,-59C123,417 170,430 216,430C315,431 326,358 326,318l0,-10C139,309 35,245 35,128C35,58 85,-11 183,-11C252,-11 305,23 331,61l3,0l8,-61l79,0C416,33 414,74 414,116M328,163C328,154 327,144 324,135C310,94 269,54 205,54C161,54 123,80 123,138C123,232 232,249 328,247z"/>
+<glyph unicode="b" horiz-adv-x="569" d="M73,125C73,82 72,33 69,0l76,0l5,80l2,0C189,16 244,-11 314,-11C422,-11 532,75 532,249C532,395 448,495 328,495C250,495 194,461 163,407l-2,0l0,303l-88,0M161,281C161,295 163,307 166,318C183,384 239,426 299,426C393,426 443,343 443,245C443,134 389,59 296,59C233,59 181,101 164,162C162,172 161,183 161,194z"/>
+<glyph unicode="[" horiz-adv-x="284" d="M264,-112l0,55l-114,0l0,687l114,0l0,55l-183,0l0,-797z"/>
+<glyph unicode="]" horiz-adv-x="284" d="M20,685l0,-55l114,0l0,-687l-114,0l0,-55l183,0l0,797z"/>
+<glyph unicode="c" horiz-adv-x="448" d="M403,83C378,72 345,60 295,60C199,60 127,129 127,241C127,342 187,425 298,425C346,425 379,413 400,402l20,67C396,482 350,495 298,495C140,495 38,386 38,237C38,88 133,-11 279,-11C344,-11 395,6 418,17z"/>
+<glyph unicode=":" horiz-adv-x="207" d="M112,342C148,342 171,369 171,404C171,441 148,467 112,467C78,467 53,441 53,404C53,369 77,342 111,342M111,-11C147,-11 170,16 170,51C170,88 147,114 111,114C77,114 52,88 52,51C52,16 76,-11 110,-11z"/>
+<glyph unicode="," horiz-adv-x="207" d="M78,-117C106,-70 150,41 174,126l-98,-10C65,43 38,-64 16,-124z"/>
+<glyph unicode="d" horiz-adv-x="564" d="M403,710l0,-288l-2,0C380,460 330,495 255,495C138,495 37,397 38,235C38,88 129,-11 246,-11C325,-11 383,30 410,84l2,0l4,-84l79,0C492,33 491,82 491,125l0,585M403,203C403,189 402,177 399,165C383,100 329,60 270,60C176,60 127,141 127,240C127,346 181,426 272,426C338,426 386,380 399,325C402,313 403,299 403,287z"/>
+<glyph unicode="&#xB0;" horiz-adv-x="318" d="M162,685C88,685 29,627 29,551C29,481 82,422 160,422C229,422 294,475 294,555C294,623 245,685 163,685M162,638C219,638 241,591 241,554C241,505 208,469 162,469C117,469 84,505 84,551C84,593 110,638 161,638z"/>
+<glyph unicode="e" horiz-adv-x="501" d="M462,226C464,236 465,250 465,268C465,357 424,496 266,496C125,496 38,381 38,234C38,89 128,-10 276,-10C353,-10 407,7 438,21l-16,62C390,70 351,59 288,59C200,59 125,108 123,227M124,290C131,351 169,433 259,433C357,433 381,345 380,290z"/>
+<glyph unicode="8" horiz-adv-x="513" d="M262,661C148,661 61,591 61,488C61,432 92,376 165,342l0,-3C86,305 37,246 37,164C37,69 119,-11 255,-11C379,-11 476,64 476,178C476,256 426,314 345,346l0,3C425,386 453,446 453,501C453,583 389,661 263,661M257,53C175,53 125,111 128,176C128,238 169,289 245,311C333,286 388,247 388,169C388,102 337,53 258,53M261,598C339,598 370,544 370,492C370,433 327,393 271,374C196,394 146,429 147,494C147,550 187,598 260,598z"/>
+<glyph unicode="f" horiz-adv-x="292" d="M169,0l0,417l116,0l0,67l-117,0l0,26C168,584 188,650 262,650C288,650 305,645 319,639l11,68C313,714 287,721 255,721C215,721 171,708 138,676C97,637 81,575 81,507l0,-23l-67,0l0,-67l67,0l0,-417z"/>
+<glyph unicode="5" horiz-adv-x="513" d="M433,650l-311,0l-42,-310C104,344 133,347 171,347C300,347 357,288 357,202C358,114 286,60 204,60C144,60 91,80 64,96l-22,-67C74,9 133,-11 204,-11C345,-11 446,84 446,211C446,295 404,352 353,380C313,404 264,415 213,415C189,415 175,413 160,411l25,165l248,0z"/>
+<glyph unicode="4" horiz-adv-x="513" d="M400,0l0,177l91,0l0,68l-91,0l0,405l-95,0l-290,-416l0,-57l302,0l0,-177M104,245l0,2l159,221C281,499 297,527 317,565l3,0C318,531 317,497 317,463l0,-218z"/>
+<glyph unicode="g" horiz-adv-x="559" d="M487,352C487,411 488,450 491,484l-78,0l-3,-72l-2,0C386,452 341,495 257,495C145,495 38,403 38,239C38,104 124,2 244,2C319,2 372,38 398,83l2,0l0,-53C400,-93 334,-140 244,-140C184,-140 134,-122 102,-101l-22,-68C119,-195 183,-209 241,-209C302,-209 370,-194 418,-151C464,-108 487,-41 487,71M399,207C399,191 397,174 392,160C374,103 325,69 270,69C176,69 127,149 127,243C127,356 187,427 271,427C336,427 378,385 394,333C398,321 399,308 399,294z"/>
+<glyph unicode="h" horiz-adv-x="555" d="M73,0l88,0l0,292C161,309 162,322 167,334C184,382 228,422 285,422C368,422 397,357 397,278l0,-278l88,0l0,288C485,455 381,495 316,495C283,495 252,486 226,470C199,456 177,433 163,408l-2,0l0,302l-88,0z"/>
+<glyph unicode="-" horiz-adv-x="307" d="M30,302l0,-64l247,0l0,64z"/>
+<glyph unicode="i" horiz-adv-x="234" d="M161,0l0,484l-88,0l0,-484M116,573C151,573 173,599 173,630C173,661 151,686 117,686C83,686 60,661 60,630C60,599 82,573 115,573z"/>
+<glyph unicode="l" horiz-adv-x="234" d="M73,0l88,0l0,710l-88,0z"/>
+<glyph unicode="m" horiz-adv-x="834" d="M73,0l86,0l0,292C159,307 161,322 166,335C180,379 221,423 275,423C342,423 376,368 376,290l0,-290l86,0l0,300C462,315 465,331 469,344C485,386 523,423 574,423C644,423 679,368 679,274l0,-274l86,0l0,285C765,453 670,495 605,495C559,495 528,483 499,461C479,446 459,426 444,398l-2,0C421,455 371,495 306,495C225,495 180,452 153,406l-3,0l-4,78l-77,0C71,444 73,404 73,353z"/>
+<glyph unicode="n" horiz-adv-x="555" d="M73,0l88,0l0,292C161,306 163,322 167,333C183,382 228,423 285,423C368,423 397,357 397,279l0,-279l88,0l0,289C485,455 381,495 314,495C234,495 178,450 154,405l-2,0l-5,79l-78,0C72,444 73,404 73,353z"/>
+<glyph unicode="9" horiz-adv-x="513" d="M96,-11C116,-12 145,-10 177,-6C247,2 316,33 366,81C430,144 478,244 478,387C478,554 396,661 263,661C130,661 40,553 40,431C40,319 115,231 232,231C298,231 350,257 386,301l3,0C377,224 346,167 303,128C266,92 218,71 167,65C137,61 115,60 96,61M256,594C348,594 390,510 389,398C389,384 386,374 382,366C358,327 312,298 253,298C177,298 128,355 128,436C128,528 181,594 255,594z"/>
+<glyph unicode="o" horiz-adv-x="549" d="M271,-11C386,-11 511,67 511,247C511,394 417,495 278,495C145,495 38,400 38,238C38,85 140,-11 270,-11M272,55C187,55 127,135 127,241C127,333 172,429 275,429C379,429 420,326 420,244C420,134 357,55 273,55z"/>
+<glyph unicode="1" horiz-adv-x="513" d="M236,0l85,0l0,650l-75,0l-142,-76l17,-67l113,61l2,0z"/>
+<glyph unicode="p" horiz-adv-x="569" d="M73,-198l88,0l0,263l2,0C192,17 247,-11 312,-11C425,-11 532,75 532,249C532,396 444,495 326,495C248,495 190,461 155,401l-2,0l-5,83l-79,0C72,438 73,388 73,326M161,281C161,292 164,305 166,317C183,383 240,425 300,425C393,425 443,342 443,245C443,134 389,58 296,58C234,58 180,100 165,161C162,172 161,185 161,197z"/>
+<glyph unicode="(" horiz-adv-x="284" d="M195,694C132,610 65,481 64,285C64,90 132,-38 195,-121l68,0C193,-21 138,106 138,284C138,466 190,595 263,694z"/>
+<glyph unicode=")" horiz-adv-x="284" d="M88,-121C151,-36 218,91 219,287C219,483 151,612 88,694l-68,0C91,594 145,467 145,287C145,107 90,-22 20,-121z"/>
+<glyph unicode="." horiz-adv-x="207" d="M111,-11C147,-11 171,16 171,52C171,89 147,115 112,115C77,115 52,88 52,52C52,16 76,-11 110,-11z"/>
+<glyph unicode="+" horiz-adv-x="596" d="M266,532l0,-235l-226,0l0,-60l226,0l0,-237l64,0l0,237l226,0l0,60l-226,0l0,235z"/>
+<glyph unicode="&quot;" horiz-adv-x="337" d="M51,692l16,-240l54,0l16,240M200,692l16,-240l54,0l16,240z"/>
+<glyph unicode="r" horiz-adv-x="327" d="M73,0l88,0l0,258C161,273 162,287 164,300C176,365 220,412 282,412C294,412 303,411 313,410l0,82C305,494 298,495 289,495C230,495 176,454 154,389l-3,0l-4,95l-77,0C73,439 74,390 74,333z"/>
+<glyph unicode="s" horiz-adv-x="396" d="M40,23C74,3 123,-11 176,-11C289,-11 356,49 356,135C356,208 312,250 229,281C166,305 138,323 138,364C138,400 166,430 218,430C263,430 298,413 317,402l21,63C312,482 269,495 220,495C117,495 53,431 53,353C53,295 94,248 182,216C246,192 271,169 271,127C271,86 241,55 178,55C134,55 88,73 61,89z"/>
+<glyph unicode="7" horiz-adv-x="513" d="M57,650l0,-73l318,0l0,-2l-281,-575l90,0l283,592l0,58z"/>
+<glyph unicode="6" horiz-adv-x="513" d="M416,661C400,661 378,660 352,656C270,646 198,613 144,560C79,495 34,394 34,266C34,97 125,-11 263,-11C399,-11 480,99 480,219C480,345 399,429 284,429C212,429 157,395 126,353l-2,0C139,461 211,562 350,584C375,588 398,590 416,589M264,57C172,57 122,137 121,244C121,260 125,272 130,282C154,330 204,362 257,362C338,362 391,306 391,213C391,120 340,57 265,57z"/>
+<glyph unicode="/" horiz-adv-x="343" d="M66,-40l280,725l-69,0l-278,-725z"/>
+<glyph unicode=" " horiz-adv-x="212"/>
+<glyph unicode="t" horiz-adv-x="331" d="M93,573l0,-89l-75,0l0,-67l75,0l0,-264C93,96 103,53 127,26C148,3 181,-11 222,-11C256,-11 283,-5 300,1l-4,67C283,64 269,62 245,62C196,62 179,96 179,156l0,261l126,0l0,67l-126,0l0,116z"/>
+<glyph unicode="3" horiz-adv-x="513" d="M42,33C74,12 138,-11 211,-11C366,-11 448,80 448,184C448,275 383,335 303,350l0,2C382,381 423,438 423,506C423,585 365,661 237,661C167,661 101,636 66,611l24,-64C118,567 168,590 220,590C301,590 334,544 334,492C334,415 253,382 189,382l-49,0l0,-66l49,0C274,316 356,277 357,186C358,131 322,60 210,60C148,60 91,85 66,100z"/>
+<glyph unicode="2" horiz-adv-x="513" d="M460,0l0,73l-291,0l0,2l51,48C357,255 444,352 444,472C444,565 385,661 246,661C171,661 106,632 62,595l28,-62C120,558 169,588 228,588C325,588 356,527 356,461C356,363 280,279 114,121l-69,-67l0,-54z"/>
+<glyph unicode="u" horiz-adv-x="551" d="M478,484l-88,0l0,-296C390,171 387,155 382,143C366,103 325,62 266,62C187,62 158,125 158,217l0,267l-88,0l0,-283C70,32 161,-11 237,-11C323,-11 375,40 397,79l2,0l5,-79l78,0C479,38 478,82 478,132z"/>
+<glyph unicode="v" horiz-adv-x="481" d="M13,484l184,-484l84,0l190,484l-92,0l-94,-271C269,168 255,128 244,88l-3,0C231,128 218,168 202,213l-95,271z"/>
+<glyph unicode="w" horiz-adv-x="736" d="M18,484l146,-484l80,0l78,230C339,282 354,333 366,391l2,0C380,334 394,286 411,231l74,-231l80,0l156,484l-87,0l-69,-243C549,184 536,133 528,84l-3,0C514,133 500,185 482,242l-75,242l-74,0l-79,-246C238,185 222,133 211,84l-3,0C199,134 186,185 173,239l-65,245z"/>
+<glyph unicode="x" horiz-adv-x="463" d="M16,484l164,-237l-172,-247l97,0l70,109C193,138 210,164 226,193l2,0C245,164 261,137 280,109l71,-109l100,0l-169,250l165,234l-96,0l-67,-103C267,355 251,330 235,302l-3,0C216,329 201,353 183,381l-69,103z"/>
+<glyph unicode="y" horiz-adv-x="471" d="M9,484l178,-447C192,27 194,20 194,15C194,9 191,3 187,-6C166,-51 137,-85 113,-104C87,-127 58,-141 36,-147l22,-74C80,-217 122,-202 166,-165C226,-112 269,-27 332,139l132,345l-93,0l-96,-284C263,165 253,128 244,99l-2,0C234,128 222,166 210,198l-105,286z"/>
+<glyph unicode="0" horiz-adv-x="513" d="M253,-11C395,-11 478,111 478,332C478,539 399,661 263,661C131,661 36,542 36,323C38,108 125,-11 252,-11M255,57C174,57 122,159 124,328C124,491 176,593 256,593C348,593 388,488 388,328C388,162 345,57 256,57z"/>
+</font>
+
+ <g id="XSEC_x5F_DATUMS">
+</g>
+<g id="SURFACES">
+</g>
+<g id="SFIN">
+</g>
+<g id="REPERES">
+</g>
+<g id="REFDIM">
+</g>
+<g id="POINTS">
+</g>
+<g id="PLANS">
+</g>
+<g id="PLAN">
+</g>
+<g id="PART_x5F_REFDIM">
+</g>
+<g id="PARAMETER_x5F_DIM">
+</g>
+<g id="NOTES">
+</g>
+<g id="GTOL">
+</g>
+<g id="DRIVEN_x5F_DIM">
+</g>
+<g id="DIM">
+</g>
+<g id="COURBES">
+</g>
+<g id="COSM_x5F_SKETCH">
+</g>
+<g id="COSMETIQUES">
+</g>
+<g id="AXES">
+</g>
+<g id="_x30_7_x5F__x5F_ASM_x5F_ALL_x5F_SKELETONS">
+</g>
+<g id="_x30_6_x5F__x5F__x5F_PRT_x5F_ALL_x5F_SURFS">
+</g>
+<g id="_x30_6_x5F__x5F_ASM_x5F_ALL_x5F_SURFS">
+</g>
+<g id="_x30_6_x5F_ALL_x5F_SURFS">
+</g>
+<g id="_x30_5_x5F__x5F__x5F_PRT_x5F_DEF_x5F_DTM_x5F_CSYS">
+</g>
+<g id="_x30_5_x5F__x5F__x5F_PRT_x5F_ALL_x5F_DTM_x5F_CSYS">
+</g>
+<g id="_x30_5_x5F__x5F_ASM_x5F_DEF_x5F_DTM_x5F_CSYS">
+</g>
+<g id="_x30_5_x5F__x5F_ASM_x5F_ALL_x5F_DTM_x5F_CSYS">
+</g>
+<g id="_x30_5_x5F_ALL_x5F_DTM_x5F_CSYS">
+</g>
+<g id="_x30_4_x5F__x5F__x5F_PRT_x5F_ALL_x5F_DTM_x5F_PNT">
+</g>
+<g id="_x30_4_x5F__x5F_ASM_x5F_ALL_x5F_DTM_x5F_PNT">
+</g>
+<g id="_x30_4_x5F_ALL_x5F_DTM_x5F_PNT">
+</g>
+<g id="_x30_3_x5F__x5F__x5F_PRT_x5F_ALL_x5F_CURVES">
+</g>
+<g id="_x30_3_x5F__x5F_ASM_x5F_ALL_x5F_CURVES">
+</g>
+<g id="_x30_3_x5F_ALL_x5F_CURVES">
+</g>
+<g id="_x30_2_x5F__x5F__x5F_PRT_x5F_ALL_x5F_AXES">
+</g>
+<g id="_x30_2_x5F__x5F_ASM_x5F_ALL_x5F_AXES">
+</g>
+<g id="_x30_2_x5F_ALL_x5F_AXES">
+</g>
+<g id="_x30_1_x5F__x5F__x5F_PRT_x5F_DEF_x5F_DTM_x5F_PLN">
+</g>
+<g id="_x30_1_x5F__x5F__x5F_PRT_x5F_ALL_x5F_DTM_x5F_PLN">
+</g>
+<g id="_x30_1_x5F__x5F_ASM_x5F_DEF_x5F_DTM_x5F_PLN">
+</g>
+<g id="_x30_1_x5F__x5F_ASM_x5F_ALL_x5F_DTM_x5F_PLN">
+</g>
+<g id="_x30_1_x5F_ALL_x5F_DTM_x5F_PLN">
+</g>
+<g id="_x5F_BLACK_x5F_HOLE">
+</g>
+<g id="DEFAULT_x5F_3">
+</g>
+<g id="DEFAULT_x5F_2">
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1633" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" points="
+ 405.6,87.1 405.7,87.1 405.8,87.1 405.8,87.1 405.9,87.1 406,87 406.1,87 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" points="
+ 405.5,89.8 405.4,89.7 405.2,89.6 405.1,89.4 405,89.3 405,89.1 404.9,88.9 404.9,88.7 405,88.5 405,88.4 405.1,88.2 405.2,88.1
+ 405.4,88 405.5,87.9 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1633" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" points="
+ 406.1,90.6 406,90.6 405.9,90.6 405.9,90.6 405.8,90.6 405.7,90.5 405.6,90.5 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" points="
+ 406.1,87 406.4,87.1 406.7,87.2 406.9,87.3 407.1,87.6 407.3,87.8 407.5,88.1 407.5,88.5 407.6,88.8 407.5,89.2 407.5,89.5
+ 407.3,89.8 407.1,90.1 406.9,90.3 406.7,90.5 406.4,90.6 406.1,90.6 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" x1="223.1" y1="304.3" x2="212.4" y2="307.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" x1="225.8" y1="304.8" x2="225.2" y2="305"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" x1="224.9" y1="303.9" x2="223.1" y2="304.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" x1="222.6" y1="295.5" x2="220.9" y2="296"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" x1="223" y1="294.2" x2="222.3" y2="294.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" x1="220.9" y1="296" x2="210.2" y2="298.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" x1="209.1" y1="300.7" x2="210.6" y2="306.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" x1="222.3" y1="294.4" x2="225.2" y2="305"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" x1="223" y1="294.2" x2="225.8" y2="304.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" d="
+ M210.6,306.2c0.2,0.8,1,1.3,1.8,1.1c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="0.8195 0.8195" d="
+ M210.2,298.8c-0.8,0.2-1.3,1-1.1,1.8c0,0,0,0,0,0"/>
+</g>
+<g id="DEFAULT_x5F_1">
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="221.4" y1="186.7" x2="226.5" y2="186.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="229.7" y1="186.7" x2="238.9" y2="186.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="163.3" y1="36.5" x2="163.3" y2="218.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="496" y1="188.1" x2="511.3" y2="188.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="381.8" y1="177.6" x2="374.9" y2="177.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="371.1" y1="177.6" x2="364.2" y2="177.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="388.7" y1="139.3" x2="374.4" y2="139.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="442.2" y1="31.2" x2="442.2" y2="217.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="207" y1="359.5" x2="193.3" y2="359.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="119.7" y1="359.5" x2="106" y2="359.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="119.7" y1="359.5" x2="133.4" y2="359.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="207" y1="359.5" x2="220.7" y2="359.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="119.7" y1="272.2" x2="119.7" y2="285.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="119.7" y1="359.5" x2="119.7" y2="373.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="119.7" y1="359.5" x2="119.7" y2="345.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="119.7" y1="272.2" x2="119.7" y2="258.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="208.2" y1="303.9" x2="230.6" y2="297.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="163.3" y1="315.9" x2="97.3" y2="315.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="163.3" y1="315.9" x2="229.4" y2="315.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="222.3" y1="331.7" x2="238.7" y2="336.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="111.9" y1="282.5" x2="103.2" y2="276.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="163.3" y1="315.9" x2="163.3" y2="388.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="163.3" y1="315.9" x2="163.3" y2="237.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="148.1" y1="372.9" x2="145.6" y2="382.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="207" y1="272.2" x2="193.3" y2="272.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="119.7" y1="272.2" x2="106" y2="272.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="119.7" y1="272.2" x2="133.4" y2="272.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="207" y1="272.2" x2="220.7" y2="272.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="207" y1="272.2" x2="207" y2="285.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="207" y1="359.5" x2="207" y2="373.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="207" y1="359.5" x2="207" y2="345.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="207" y1="272.2" x2="207" y2="258.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" stroke-dasharray="3.073 0.6146 0.6146 0.6146" x1="479.6" y1="305.9" x2="479.6" y2="328.6"/>
+</g>
+<g id="_x30_">
+ <text transform="matrix(0.8312 0 0 1 483.3643 371.375)" font-family="'Myriad-Roman'" font-size="2.802">A</text>
+ <text transform="matrix(0.8312 0 0 1 484.7891 371.375)" font-family="'Myriad-Roman'" font-size="2.802">P</text>
+ <text transform="matrix(0.8312 0 0 1 486.0283 371.375)" font-family="'Myriad-Roman'" font-size="2.802">P</text>
+ <text transform="matrix(0.8312 0 0 1 487.2676 371.375)" font-family="'Myriad-Roman'" font-size="2.802">R</text>
+ <text transform="matrix(0.8312 0 0 1 488.5273 371.375)" font-family="'Myriad-Roman'" font-size="2.802">O</text>
+ <text transform="matrix(0.8312 0 0 1 490.1318 371.375)" font-family="'Myriad-Roman'" font-size="2.802">B</text>
+ <text transform="matrix(0.8312 0 0 1 491.3916 371.375)" font-family="'Myriad-Roman'" font-size="2.802">A</text>
+ <text transform="matrix(0.8312 0 0 1 492.6328 371.375)" font-family="'Myriad-Roman'" font-size="2.802">T</text>
+ <text transform="matrix(0.8312 0 0 1 493.791 371.375)" font-family="'Myriad-Roman'" font-size="2.802">I</text>
+ <text transform="matrix(0.8312 0 0 1 494.3477 371.375)" font-family="'Myriad-Roman'" font-size="2.802">O</text>
+ <text transform="matrix(0.8312 0 0 1 495.9521 371.375)" font-family="'Myriad-Roman'" font-size="2.802">N</text>
+ <text transform="matrix(0.8036 0 0 1 443.71 376.2021)" font-family="'Myriad-Roman'" font-size="2.802">M</text>
+ <text transform="matrix(0.8036 0 0 1 445.5205 376.2021)" font-family="'Myriad-Roman'" font-size="2.802">A</text>
+ <text transform="matrix(0.8036 0 0 1 446.7207 376.2021)" font-family="'Myriad-Roman'" font-size="2.802">T</text>
+ <text transform="matrix(0.8036 0 0 1 447.8389 376.2021)" font-family="'Myriad-Roman'" font-size="2.802">I</text>
+ <text transform="matrix(0.8036 0 0 1 448.377 376.2021)" font-family="'Myriad-Roman'" font-size="2.802">E</text>
+ <text transform="matrix(0.8036 0 0 1 449.4854 376.2021)" font-family="'Myriad-Roman'" font-size="2.802">R</text>
+ <text transform="matrix(0.8036 0 0 1 450.6963 376.2021)" font-family="'Myriad-Roman'" font-size="2.802">E</text>
+ <text transform="matrix(0.8036 0 0 1 451.8047 376.2021)" font-family="'Myriad-Roman'" font-size="2.802">:</text>
+ <text transform="matrix(0.7619 0 0 1 450.6172 371.4609)" font-family="'Myriad-Roman'" font-size="2.802">P</text>
+ <text transform="matrix(0.7619 0 0 1 451.5586 371.4609)" font-family="'Myriad-Roman'" font-size="2.802">A</text>
+ <text transform="matrix(0.7619 0 0 1 452.8652 371.4609)" font-family="'Myriad-Roman'" font-size="2.802">R</text>
+ <text transform="matrix(0.7857 0 0 1 465.4639 371.502)" font-family="'Myriad-Roman'" font-size="2.802">D</text>
+ <text transform="matrix(0.7857 0 0 1 466.9297 371.502)" font-family="'Myriad-Roman'" font-size="2.802">A</text>
+ <text transform="matrix(0.7857 0 0 1 468.1035 371.502)" font-family="'Myriad-Roman'" font-size="2.802">T</text>
+ <text transform="matrix(0.7857 0 0 1 469.1973 371.502)" font-family="'Myriad-Roman'" font-size="2.802">E</text>
+ <text transform="matrix(0.6786 0 0 1 473.415 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">T</text>
+ <text transform="matrix(0.6786 0 0 1 474.2383 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">o</text>
+ <text transform="matrix(0.6786 0 0 1 475.2822 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">l</text>
+ <text transform="matrix(0.6786 0 0 1 475.7266 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">.</text>
+ <text transform="matrix(0.6786 0 0 1 476.1201 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">g</text>
+ <text transform="matrix(0.6786 0 0 1 477.1836 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">e</text>
+ <text transform="matrix(0.6786 0 0 1 478.1357 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">n</text>
+ <text transform="matrix(0.6786 0 0 1 479.1914 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">:</text>
+ <text transform="matrix(0.6905 0 0 1 443.2979 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">E</text>
+ <text transform="matrix(0.6905 0 0 1 444.2363 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">c</text>
+ <text transform="matrix(0.6905 0 0 1 445.1025 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">h</text>
+ <text transform="matrix(0.6905 0 0 1 446.1768 381.2646)" font-family="'Myriad-Roman'" font-size="2.802">:</text>
+ <text transform="matrix(0.7143 0 0 1 443.71 371.4736)" font-family="'Myriad-Roman'" font-size="2.802">IND</text>
+ <text transform="matrix(0.8352 0 0 1 511.4336 371.375)" font-family="'Myriad-Roman'" font-size="2.802">M</text>
+ <text transform="matrix(0.8352 0 0 1 513.3154 371.375)" font-family="'Myriad-Roman'" font-size="2.802">O</text>
+ <text transform="matrix(0.8352 0 0 1 514.9277 371.375)" font-family="'Myriad-Roman'" font-size="2.802">D</text>
+ <text transform="matrix(0.8352 0 0 1 516.4854 371.375)" font-family="'Myriad-Roman'" font-size="2.802">I</text>
+ <text transform="matrix(0.8352 0 0 1 517.0449 371.375)" font-family="'Myriad-Roman'" font-size="2.802">F</text>
+ <text transform="matrix(0.8352 0 0 1 518.1846 371.375)" font-family="'Myriad-Roman'" font-size="2.802">I</text>
+ <text transform="matrix(0.8352 0 0 1 518.7441 371.375)" font-family="'Myriad-Roman'" font-size="2.802">C</text>
+ <text transform="matrix(0.8352 0 0 1 520.1104 371.375)" font-family="'Myriad-Roman'" font-size="2.802">A</text>
+ <text transform="matrix(0.8352 0 0 1 521.3574 371.375)" font-family="'Myriad-Roman'" font-size="2.802">T</text>
+ <text transform="matrix(0.8352 0 0 1 522.5205 371.375)" font-family="'Myriad-Roman'" font-size="2.802">I</text>
+ <text transform="matrix(0.8352 0 0 1 523.0801 371.375)" font-family="'Myriad-Roman'" font-size="2.802">O</text>
+ <text transform="matrix(0.8352 0 0 1 524.6924 371.375)" font-family="'Myriad-Roman'" font-size="2.802">N</text>
+ <text transform="matrix(0.8352 0 0 1 526.2324 371.375)" font-family="'Myriad-Roman'" font-size="2.802">S</text>
+ <rect x="443.1" y="401.8" fill="none" width="159.2" height="11.8"/>
+ <text transform="matrix(0.675 0 0 1 443.0635 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">C</text>
+ <text transform="matrix(0.675 0 0 1 443.7568 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 444.3691 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 444.6279 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 445.3232 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">l</text>
+ <text transform="matrix(0.675 0 0 1 445.6094 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 446.1982 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 446.876 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 447.1348 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 447.7471 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 448.2305 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 448.6348 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 448.8936 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">l</text>
+ <text transform="matrix(0.675 0 0 1 449.1797 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 449.7686 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 450.0273 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 450.7227 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 451.1143 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 451.7852 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 452.4805 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 452.8848 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 453.1709 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 453.7832 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 454.1807 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 454.793 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 455.0518 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">d</text>
+ <text transform="matrix(0.675 0 0 1 455.7402 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 456.3525 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 456.6113 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">D</text>
+ <text transform="matrix(0.675 0 0 1 457.4219 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 458.0107 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 458.6885 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">f</text>
+ <text transform="matrix(0.675 0 0 1 459.0303 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 459.7012 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 460.1846 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 460.668 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 460.9268 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">C</text>
+ <text transform="matrix(0.675 0 0 1 461.6191 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 462.29 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">m</text>
+ <text transform="matrix(0.675 0 0 1 463.3086 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">m</text>
+ <text transform="matrix(0.675 0 0 1 464.3271 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 464.9395 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 465.332 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">c</text>
+ <text transform="matrix(0.675 0 0 1 465.8789 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 466.165 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 466.7539 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">l</text>
+ <text transform="matrix(0.675 0 0 1 467.04 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 467.2988 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">C</text>
+ <text transform="matrix(0.675 0 0 1 467.9902 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 468.6611 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">m</text>
+ <text transform="matrix(0.675 0 0 1 469.6797 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 470.375 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 470.7666 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 471.3789 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 471.8623 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 472.3457 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 473.0166 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 473.416 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 473.8818 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">,</text>
+ <text transform="matrix(0.675 0 0 1 474.0498 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 474.3086 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 474.7061 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 475.377 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">u</text>
+ <text transform="matrix(0.675 0 0 1 476.0498 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 476.4463 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 477.0586 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 477.3174 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">c</text>
+ <text transform="matrix(0.675 0 0 1 477.8574 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 478.5283 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 479.2236 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 479.5098 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 480.1221 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 480.3809 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 481.0518 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">u</text>
+ <text transform="matrix(0.675 0 0 1 481.7246 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 481.9834 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">c</text>
+ <text transform="matrix(0.675 0 0 1 482.5225 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 483.1934 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">m</text>
+ <text transform="matrix(0.675 0 0 1 484.2119 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">m</text>
+ <text transform="matrix(0.675 0 0 1 485.2305 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">u</text>
+ <text transform="matrix(0.675 0 0 1 485.9033 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 486.5811 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 486.8672 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">c</text>
+ <text transform="matrix(0.675 0 0 1 487.416 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 488 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 488.4043 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 488.6904 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 489.3613 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 490.0391 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 490.2979 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 490.8867 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 491.1455 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">d</text>
+ <text transform="matrix(0.675 0 0 1 491.834 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 492.4463 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 492.9297 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 493.1885 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 493.5928 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 493.8789 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 494.4912 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 494.8906 403.0352)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 443.0635 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 443.6758 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 444.1592 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 444.5635 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 444.8223 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 445.1084 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 445.7813 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 446.1777 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 446.79 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 447.1826 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">d</text>
+ <text transform="matrix(0.675 0 0 1 447.8711 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 448.1572 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 448.5537 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 449.166 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 449.4248 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 449.9082 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 450.4971 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 451.1748 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 451.6582 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 451.917 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 452.5059 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">u</text>
+ <text transform="matrix(0.675 0 0 1 453.1787 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 453.5762 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 454.2471 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 454.6514 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 454.9375 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 455.4209 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 456.0049 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 456.4092 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 456.6953 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 457.3662 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 458.0439 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">.</text>
+ <text transform="matrix(0.675 0 0 1 458.2061 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 458.415 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">T</text>
+ <text transform="matrix(0.675 0 0 1 459.0137 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">h</text>
+ <text transform="matrix(0.675 0 0 1 459.6914 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 459.9775 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 460.4609 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 460.7197 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">d</text>
+ <text transform="matrix(0.675 0 0 1 461.4082 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 461.8008 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 462.3799 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">w</text>
+ <text transform="matrix(0.675 0 0 1 463.2793 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 463.5654 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 464.2432 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">g</text>
+ <text transform="matrix(0.675 0 0 1 464.9258 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 465.1846 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 465.4707 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 465.9541 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 466.2129 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 466.9082 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 467.2998 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 467.9707 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 468.666 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 469.0703 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 469.3564 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 469.9688 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 470.373 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 470.9619 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 471.3906 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">y</text>
+ <text transform="matrix(0.675 0 0 1 471.9658 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 472.2246 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 472.8135 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 473.4912 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">d</text>
+ <text transform="matrix(0.675 0 0 1 474.1797 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 474.4385 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 474.9219 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">h</text>
+ <text transform="matrix(0.675 0 0 1 475.5996 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 476.1885 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">l</text>
+ <text transform="matrix(0.675 0 0 1 476.4746 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">l</text>
+ <text transform="matrix(0.675 0 0 1 476.7607 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 477.0195 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 477.6973 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 478.3682 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 478.7725 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 479.0313 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">b</text>
+ <text transform="matrix(0.675 0 0 1 479.7285 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 480.3408 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 480.5996 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">c</text>
+ <text transform="matrix(0.675 0 0 1 481.1387 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 481.8096 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 482.5049 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 482.791 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 483.4033 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">d</text>
+ <text transform="matrix(0.675 0 0 1 484.0918 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 484.3506 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 485.0215 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 485.4209 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 485.6797 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 485.9658 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 486.3701 405.2217)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 443.0635 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">c</text>
+ <text transform="matrix(0.675 0 0 1 443.6025 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 444.2734 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 444.9463 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 445.3438 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 445.9561 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 446.6289 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 447.0332 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 447.5166 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 447.7754 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">d</text>
+ <text transform="matrix(0.675 0 0 1 448.4639 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 448.75 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 449.2334 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">c</text>
+ <text transform="matrix(0.675 0 0 1 449.7803 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">l</text>
+ <text transform="matrix(0.675 0 0 1 450.0664 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 450.7373 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 451.2207 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 451.833 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">d</text>
+ <text transform="matrix(0.675 0 0 1 452.5215 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 452.7803 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 453.1768 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 453.8477 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 454.1064 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 454.7773 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">u</text>
+ <text transform="matrix(0.675 0 0 1 455.4502 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 455.8545 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 456.3379 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 456.624 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">d</text>
+ <text transform="matrix(0.675 0 0 1 457.3125 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 457.9248 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 458.1836 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 458.8789 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 459.4678 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 459.8965 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 460.3008 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 460.5869 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 461.1992 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 461.6826 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 461.9414 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">w</text>
+ <text transform="matrix(0.675 0 0 1 462.8408 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 463.127 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 463.5313 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">h</text>
+ <text transform="matrix(0.675 0 0 1 464.209 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 464.8799 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">u</text>
+ <text transform="matrix(0.675 0 0 1 465.5527 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 465.957 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 466.2158 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 466.6201 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">h</text>
+ <text transform="matrix(0.675 0 0 1 467.2979 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 467.9102 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 468.1689 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">w</text>
+ <text transform="matrix(0.675 0 0 1 469.0684 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 469.4727 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 469.7588 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 470.1631 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 470.5605 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 471.1729 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 471.8506 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 472.1094 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">c</text>
+ <text transform="matrix(0.675 0 0 1 472.6484 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 473.3193 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 473.9971 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 474.4805 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 475.0928 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 475.7656 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">t</text>
+ <text transform="matrix(0.675 0 0 1 476.1699 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 476.4287 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 477.0996 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">f</text>
+ <text transform="matrix(0.675 0 0 1 477.4561 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 477.7148 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">D</text>
+ <text transform="matrix(0.675 0 0 1 478.5264 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 479.1152 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">n</text>
+ <text transform="matrix(0.675 0 0 1 479.793 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">f</text>
+ <text transform="matrix(0.675 0 0 1 480.1348 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 480.8057 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 481.2891 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 481.7725 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 482.0313 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">C</text>
+ <text transform="matrix(0.675 0 0 1 482.7236 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 483.3945 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">m</text>
+ <text transform="matrix(0.675 0 0 1 484.4131 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">m</text>
+ <text transform="matrix(0.675 0 0 1 485.4316 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 486.0439 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 486.4355 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">c</text>
+ <text transform="matrix(0.675 0 0 1 486.9824 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">i</text>
+ <text transform="matrix(0.675 0 0 1 487.2686 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">a</text>
+ <text transform="matrix(0.675 0 0 1 487.8574 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">l</text>
+ <text transform="matrix(0.675 0 0 1 488.1436 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096"> </text>
+ <text transform="matrix(0.675 0 0 1 488.4023 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">C</text>
+ <text transform="matrix(0.675 0 0 1 489.0947 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 489.7656 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">m</text>
+ <text transform="matrix(0.675 0 0 1 490.7842 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">p</text>
+ <text transform="matrix(0.675 0 0 1 491.4795 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 491.8711 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">e</text>
+ <text transform="matrix(0.675 0 0 1 492.4834 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 492.9668 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.675 0 0 1 493.4502 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">o</text>
+ <text transform="matrix(0.675 0 0 1 494.1211 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">r</text>
+ <text transform="matrix(0.675 0 0 1 494.5205 407.4082)" font-family="'Myriad-Roman'" font-size="1.8096">s</text>
+ <text transform="matrix(0.9583 0 0 1 469.9346 382.627)" font-family="'Myriad-Roman'" font-size="1.4287">3D</text>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="531.6" y1="379.3" x2="536.8" y2="378.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="508.5" y1="379.3" x2="513.8" y2="378.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="538.8" y1="380.4" x2="523.6" y2="380.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="506.5" y1="380.4" x2="521.8" y2="380.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="508.5" y1="381.5" x2="513.8" y2="382.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="531.6" y1="381.5" x2="536.8" y2="382.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="508.5" y1="379.3" x2="508.5" y2="381.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="513.8" y1="378.2" x2="513.8" y2="382.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="517.4" y1="378" x2="517.4" y2="382.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="527.9" y1="378" x2="527.9" y2="382.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="531.6" y1="379.3" x2="531.6" y2="381.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="536.8" y1="378.2" x2="536.8" y2="382.6"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="517.4" cy="380.4" r="1.1"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="517.4" cy="380.4" r="2.2"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="527.9" cy="380.4" r="1.1"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="527.9" cy="380.4" r="2.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="377.8" x2="522.7" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="522.7" y1="377.8" x2="540" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="531.6" y1="379.3" x2="536.8" y2="378.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="508.5" y1="379.3" x2="513.8" y2="378.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="538.8" y1="380.4" x2="523.6" y2="380.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="506.5" y1="380.4" x2="521.8" y2="380.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="508.5" y1="381.5" x2="513.8" y2="382.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="531.6" y1="381.5" x2="536.8" y2="382.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="508.5" y1="379.3" x2="508.5" y2="381.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="513.8" y1="378.2" x2="513.8" y2="382.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="517.4" y1="378" x2="517.4" y2="382.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="527.9" y1="378" x2="527.9" y2="382.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="531.6" y1="379.3" x2="531.6" y2="381.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="536.8" y1="378.2" x2="536.8" y2="382.6"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="517.4" cy="380.4" r="1.1"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="517.4" cy="380.4" r="2.2"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="527.9" cy="380.4" r="1.1"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="527.9" cy="380.4" r="2.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="582.3" y1="407.3" x2="442.7" y2="407.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="377.8" x2="522.7" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="522.7" y1="377.8" x2="540" y2="383"/>
+ </g>
+ <g>
+
+ <text transform="matrix(1 0 0 1 31.9482 89.4746)" fill="#FF00FF" stroke="#000000" font-family="'Myriad-Roman'" font-size="3.8098">518</text>
+
+ <text transform="matrix(1 0 0 1 34.7822 93.7266)" fill="#FF00FF" stroke="#000000" font-family="'Myriad-Roman'" font-size="3.8098">20.40</text>
+
+ <text transform="matrix(1 0 0 1 31.9482 93.7266)" fill="#FF00FF" stroke="#000000" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+
+ <text transform="matrix(1 0 0 1 48.9561 93.7266)" fill="#FF00FF" stroke="#000000" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="109.3" y1="221.9" x2="41.8" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="163.3" y1="38.3" x2="41.8" y2="38.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="41.9" y1="221.9" x2="41.9" y2="95.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="41.9" y1="38.3" x2="41.9" y2="85.2"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="41.9" y1="221.9" x2="42.3" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="42.3" y1="219.8" x2="41.4" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="41.4" y1="219.8" x2="41.9" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="41.9" y1="219.8" x2="41.9" y2="221.9"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="41.9" y1="38.3" x2="41.4" y2="40.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="41.4" y1="40.4" x2="42.3" y2="40.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="42.3" y1="40.4" x2="41.9" y2="38.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="41.9" y1="40.4" x2="41.9" y2="38.3"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 236.3726 204.7578)" font-family="'Myriad-Roman'" font-size="3.8098">99</text>
+ <text transform="matrix(1 0 0 1 239.207 209.0098)" font-family="'Myriad-Roman'" font-size="3.8098">3.91</text>
+ <text transform="matrix(1 0 0 1 236.3726 209.0098)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 250.5459 209.0098)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="217.2" y1="221.9" x2="245" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="239" y1="186.7" x2="245" y2="186.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="244.9" y1="221.9" x2="244.9" y2="210.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="244.9" y1="186.7" x2="244.9" y2="200.5"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="244.9" y1="221.9" x2="245.3" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="245.3" y1="219.8" x2="244.5" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="244.5" y1="219.8" x2="244.9" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="244.9" y1="219.8" x2="244.9" y2="221.9"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="244.9" y1="186.7" x2="244.5" y2="188.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="244.5" y1="188.8" x2="245.3" y2="188.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="245.3" y1="188.8" x2="244.9" y2="186.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="244.9" y1="188.8" x2="244.9" y2="186.7"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 512.4268 205.0376)" font-family="'Myriad-Roman'" font-size="3.8098">95</text>
+ <text transform="matrix(1 0 0 1 515.2607 209.2896)" font-family="'Myriad-Roman'" font-size="3.8098">3.75</text>
+ <text transform="matrix(1 0 0 1 512.4268 209.2896)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 526.5996 209.2896)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="497" y1="221.9" x2="521" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="511.3" y1="188.1" x2="521" y2="188.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="520.9" y1="221.9" x2="520.9" y2="210.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="520.9" y1="188.1" x2="520.9" y2="200.8"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="520.9" y1="221.9" x2="521.4" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="521.4" y1="219.8" x2="520.5" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="520.5" y1="219.8" x2="520.9" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="520.9" y1="219.8" x2="520.9" y2="221.9"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="520.9" y1="188.1" x2="520.5" y2="190.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="520.5" y1="190.2" x2="521.4" y2="190.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="521.4" y1="190.2" x2="520.9" y2="188.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="520.9" y1="190.2" x2="520.9" y2="188.1"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 327.1484 193.5342)" font-family="'Myriad-Roman'" font-size="3.8098">125</text>
+ <text transform="matrix(1 0 0 1 329.9834 197.7861)" font-family="'Myriad-Roman'" font-size="3.8098">4.92</text>
+ <text transform="matrix(1 0 0 1 327.1484 197.7861)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 341.3213 197.7861)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="388.4" y1="221.9" x2="335.6" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="362.6" y1="177.6" x2="335.6" y2="177.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="335.7" y1="221.9" x2="335.7" y2="199.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="335.7" y1="177.6" x2="335.7" y2="189.3"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="335.7" y1="221.9" x2="336.1" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="336.1" y1="219.8" x2="335.2" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="335.2" y1="219.8" x2="335.7" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="335.7" y1="219.8" x2="335.7" y2="221.9"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="335.7" y1="177.6" x2="335.2" y2="179.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="335.2" y1="179.7" x2="336.1" y2="179.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="336.1" y1="179.7" x2="335.7" y2="177.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="335.7" y1="179.7" x2="335.7" y2="177.6"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 309.2676 166.4941)" font-family="'Myriad-Roman'" font-size="3.8098">233</text>
+ <text transform="matrix(1 0 0 1 312.1025 170.7461)" font-family="'Myriad-Roman'" font-size="3.8098">9.18</text>
+ <text transform="matrix(1 0 0 1 309.2676 170.7461)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 323.4414 170.7461)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="388.1" y1="221.9" x2="317.7" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="372.6" y1="139.3" x2="352.1" y2="139.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="347" y1="139.3" x2="317.7" y2="139.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="317.8" y1="221.9" x2="317.8" y2="172.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="317.8" y1="139.3" x2="317.8" y2="162.2"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="317.8" y1="221.9" x2="318.2" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="318.2" y1="219.8" x2="317.3" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="317.3" y1="219.8" x2="317.8" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="317.8" y1="219.8" x2="317.8" y2="221.9"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="317.8" y1="139.3" x2="317.3" y2="141.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="317.3" y1="141.4" x2="318.2" y2="141.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="318.2" y1="141.4" x2="317.8" y2="139.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="317.8" y1="141.4" x2="317.8" y2="139.3"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 255.4346 312.8174)" font-family="'Myriad-Roman'" font-size="3.8098">246</text>
+ <text transform="matrix(1 0 0 1 258.269 317.0693)" font-family="'Myriad-Roman'" font-size="3.8098">9.70</text>
+ <text transform="matrix(1 0 0 1 255.4346 317.0693)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 269.6079 317.0693)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="220.7" y1="272.2" x2="227.8" y2="272.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="231.7" y1="272.2" x2="264" y2="272.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="220.7" y1="359.5" x2="264" y2="359.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="263.9" y1="272.2" x2="263.9" y2="308.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="263.9" y1="359.5" x2="263.9" y2="318.5"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="263.9" y1="272.2" x2="263.5" y2="274.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="263.5" y1="274.3" x2="264.4" y2="274.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="264.4" y1="274.3" x2="263.9" y2="272.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="263.9" y1="274.3" x2="263.9" y2="272.2"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="263.9" y1="359.5" x2="264.4" y2="357.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="264.4" y1="357.4" x2="263.5" y2="357.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="263.5" y1="357.4" x2="263.9" y2="359.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="263.9" y1="357.4" x2="263.9" y2="359.5"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 157.2852 398.5781)" font-family="'Myriad-Roman'" font-size="3.8098">246</text>
+ <text transform="matrix(1 0 0 1 160.1196 402.8301)" font-family="'Myriad-Roman'" font-size="3.8098">9.70</text>
+ <text transform="matrix(1 0 0 1 157.2852 402.8301)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 171.458 402.8301)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="119.7" y1="371.3" x2="119.7" y2="397.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="207" y1="371.8" x2="207" y2="397.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="119.7" y1="397.2" x2="155.9" y2="397.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="207" y1="397.2" x2="175.7" y2="397.2"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="119.7" y1="397.2" x2="121.8" y2="397.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="121.8" y1="397.6" x2="121.8" y2="396.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="121.8" y1="396.7" x2="119.7" y2="397.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="121.8" y1="397.2" x2="119.7" y2="397.2"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="207" y1="397.2" x2="204.9" y2="396.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="204.9" y1="396.7" x2="204.9" y2="397.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="204.9" y1="397.6" x2="207" y2="397.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="204.9" y1="397.2" x2="207" y2="397.2"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 393.8643 31.3711)" font-family="'Myriad-Roman'" font-size="3.8098">210</text>
+ <text transform="matrix(1 0 0 1 396.6982 35.623)" font-family="'Myriad-Roman'" font-size="3.8098">8.28</text>
+ <text transform="matrix(1 0 0 1 393.8643 35.623)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 408.0371 35.623)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.2" y1="31.1" x2="442.2" y2="29.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="367.7" y1="133.7" x2="367.7" y2="29.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.2" y1="30" x2="412.3" y2="30"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="367.7" y1="30" x2="392.4" y2="30"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.2" y1="30" x2="440.1" y2="29.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.1" y1="29.5" x2="440.1" y2="30.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.1" y1="30.4" x2="442.2" y2="30"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.1" y1="30" x2="442.2" y2="30"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="367.7" y1="30" x2="369.8" y2="30.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="369.8" y1="30.4" x2="369.8" y2="29.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="369.8" y1="29.5" x2="367.7" y2="30"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="369.8" y1="30" x2="367.7" y2="30"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 383.8535 169.6094)" font-family="'Myriad-Roman'" font-size="3.8098">209</text>
+ <text transform="matrix(1 0 0 1 386.6885 173.8613)" font-family="'Myriad-Roman'" font-size="3.8098">8.24</text>
+ <text transform="matrix(1 0 0 1 383.8535 173.8613)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 398.0264 173.8613)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="368" y1="172.5" x2="368" y2="168.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.2" y1="171.5" x2="442.2" y2="168.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="368" y1="168.2" x2="382.4" y2="168.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.2" y1="168.2" x2="402.3" y2="168.2"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="368" y1="168.2" x2="370.2" y2="168.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.2" y1="168.6" x2="370.2" y2="167.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.2" y1="167.8" x2="368" y2="168.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.2" y1="168.2" x2="368" y2="168.2"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.2" y1="168.2" x2="440.1" y2="167.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.1" y1="167.8" x2="440.1" y2="168.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.1" y1="168.6" x2="442.2" y2="168.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.1" y1="168.2" x2="442.2" y2="168.2"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 188.5161 336.8037)" font-family="'Myriad-Roman'" font-size="3.8098">205</text>
+ <text transform="matrix(1 0 0 1 191.3506 341.0557)" font-family="'Myriad-Roman'" font-size="3.8098">8.07</text>
+ <text transform="matrix(1 0 0 1 188.5161 341.0557)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 202.6895 341.0557)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="232.8" y1="337.3" x2="230.9" y2="344.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="163.3" y1="315.9" x2="160.7" y2="325.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="230.9" y1="344.5" x2="206.9" y2="338"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="325.7" x2="187.1" y2="332.7"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="230.9" y1="344.5" x2="228.9" y2="343.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="228.9" y1="343.5" x2="228.7" y2="344.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="228.7" y1="344.3" x2="230.9" y2="344.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="228.8" y1="343.9" x2="230.9" y2="344.5"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="325.7" x2="162.7" y2="326.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="162.7" y1="326.6" x2="162.9" y2="325.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="162.9" y1="325.8" x2="160.7" y2="325.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="162.8" y1="326.2" x2="160.7" y2="325.7"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 55.1807 194.3384)" font-family="'Myriad-Roman'" font-size="3.8098">155</text>
+ <text transform="matrix(1 0 0 1 58.0151 198.5903)" font-family="'Myriad-Roman'" font-size="3.8098">6.10</text>
+ <text transform="matrix(1 0 0 1 55.1807 198.5903)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 69.3535 198.5903)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="109.5" y1="221.9" x2="63.6" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="88.2" y1="166.9" x2="63.6" y2="166.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.7" y1="221.9" x2="63.7" y2="200"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.7" y1="166.9" x2="63.7" y2="190.1"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.7" y1="221.9" x2="64.1" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="64.1" y1="219.8" x2="63.3" y2="219.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.3" y1="219.8" x2="63.7" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.7" y1="219.8" x2="63.7" y2="221.9"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.7" y1="166.9" x2="63.3" y2="169.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.3" y1="169.1" x2="64.1" y2="169.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="64.1" y1="169.1" x2="63.7" y2="166.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.7" y1="169.1" x2="63.7" y2="166.9"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 55.2637 145.9775)" font-family="'Myriad-Roman'" font-size="3.8098">117</text>
+ <text transform="matrix(1 0 0 1 58.0986 150.2295)" font-family="'Myriad-Roman'" font-size="3.8098">4.61</text>
+ <text transform="matrix(1 0 0 1 55.2637 150.2295)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 69.437 150.2295)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="88.2" y1="166.9" x2="63.7" y2="166.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="88.2" y1="125.5" x2="63.7" y2="125.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.8" y1="166.9" x2="63.8" y2="151.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.8" y1="125.5" x2="63.8" y2="141.7"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.8" y1="166.9" x2="64.2" y2="164.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="64.2" y1="164.8" x2="63.3" y2="164.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.3" y1="164.8" x2="63.8" y2="166.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.8" y1="164.8" x2="63.8" y2="166.9"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.8" y1="125.5" x2="63.3" y2="127.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.3" y1="127.6" x2="64.2" y2="127.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="64.2" y1="127.6" x2="63.8" y2="125.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="63.8" y1="127.6" x2="63.8" y2="125.5"/>
+ </g>
+ </g>
+ <g>
+
+ <text transform="matrix(1.3333 0 0 1 150.7568 27.4189)" fill="#FF00FF" stroke="#000000" font-family="'Myriad-Roman'" font-size="3.8098">Ø</text>
+
+ <text transform="matrix(1 0 0 1 154.5361 27.4189)" fill="#FF00FF" stroke="#000000" font-family="'Myriad-Roman'" font-size="3.8098">352</text>
+
+ <text transform="matrix(1 0 0 1 157.3711 31.6709)" fill="#FF00FF" stroke="#000000" font-family="'Myriad-Roman'" font-size="3.8098">13.85</text>
+
+ <text transform="matrix(1 0 0 1 154.5361 31.6709)" fill="#FF00FF" stroke="#000000" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+
+ <text transform="matrix(1 0 0 1 171.5439 31.6709)" fill="#FF00FF" stroke="#000000" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.7" y1="63.9" x2="225.7" y2="25.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101" y1="63.9" x2="101" y2="39.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101" y1="37.2" x2="101" y2="25.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.7" y1="26" x2="175.8" y2="26"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101" y1="26" x2="149.3" y2="26"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.7" y1="26" x2="223.5" y2="25.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="223.5" y1="25.6" x2="223.5" y2="26.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="223.5" y1="26.4" x2="225.7" y2="26"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="223.5" y1="26" x2="225.7" y2="26"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101" y1="26" x2="103.1" y2="26.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="103.1" y1="26.4" x2="103.1" y2="25.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="103.1" y1="25.6" x2="101" y2="26"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="103.1" y1="26" x2="101" y2="26"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 438.3916 227.1738)" font-family="'Myriad-Roman'" font-size="3.8098">98</text>
+ <text transform="matrix(1 0 0 1 441.2256 231.4258)" font-family="'Myriad-Roman'" font-size="3.8098">3.84</text>
+ <text transform="matrix(1 0 0 1 438.3916 231.4258)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 452.5645 231.4258)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="161.4" x2="427.8" y2="166"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="170.3" x2="427.8" y2="225.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.4" y1="161.4" x2="462.4" y2="225.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="225.8" x2="437" y2="225.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.4" y1="225.8" x2="456.8" y2="225.8"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="225.8" x2="429.9" y2="226.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="429.9" y1="226.2" x2="429.9" y2="225.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="429.9" y1="225.3" x2="427.8" y2="225.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="429.9" y1="225.8" x2="427.8" y2="225.8"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.4" y1="225.8" x2="460.2" y2="225.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="460.2" y1="225.3" x2="460.2" y2="226.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="460.2" y1="226.2" x2="462.4" y2="225.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="460.2" y1="225.8" x2="462.4" y2="225.8"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 110.1055 238.5605)" font-family="'Myriad-Roman'" font-size="3.8098">232</text>
+ <text transform="matrix(1 0 0 1 112.9404 242.8125)" font-family="'Myriad-Roman'" font-size="3.8098">9.12</text>
+ <text transform="matrix(1 0 0 1 110.1055 242.8125)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 124.2793 242.8125)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.2" y1="309.3" x2="81.2" y2="237.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="163.3" y1="238.4" x2="163.3" y2="237.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.2" y1="237.1" x2="108.7" y2="237.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="163.3" y1="237.1" x2="128.5" y2="237.1"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.2" y1="237.1" x2="83.4" y2="237.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="83.4" y1="237.6" x2="83.4" y2="236.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="83.4" y1="236.7" x2="81.2" y2="237.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="83.4" y1="237.1" x2="81.2" y2="237.1"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="163.3" y1="237.1" x2="161.2" y2="236.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="161.2" y1="236.7" x2="161.2" y2="237.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="161.2" y1="237.6" x2="163.3" y2="237.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="161.2" y1="237.1" x2="163.3" y2="237.1"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.8889 0 0 1 149.8799 389.376)" font-family="'Myriad-Roman'" font-size="3.8098">15°</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="145.6" y1="381.9" x2="144.5" y2="386.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="163.3" y1="388" x2="163.3" y2="388.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M144.5,386.1c1.3,0.3,2.6,0.7,3.9,0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M158.9,388.5c1.5,0.1,3,0.1,4.5,0.1"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 146.7,386.2 144.5,386.1 146.5,387.1 146.7,386.2 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 161.2,389 163.3,388.6 161.2,388.1 161.2,389 "/>
+ </g>
+ <g>
+ <text transform="matrix(0.8889 0 0 1 238.0322 326.9238)" font-family="'Myriad-Roman'" font-size="3.8098">15°</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="238.9" y1="336.1" x2="239.8" y2="336.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="230.9" y1="315.9" x2="242.5" y2="315.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M239.7,336.3c0.7-2.6,1.3-5.3,1.7-8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M242.1,322.7c0.2-2.3,0.3-4.5,0.3-6.8"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 239.8,334.2 239.7,336.3 240.6,334.4 239.8,334.2 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 242.8,318 242.4,315.9 241.9,318 242.8,318 "/>
+ </g>
+ <g>
+ <text transform="matrix(0.8889 0 0 1 238.0273 306.4697)" font-family="'Myriad-Roman'" font-size="3.8098">15°</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="237.7" y1="315.9" x2="242.6" y2="315.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="231.3" y1="297.7" x2="239.9" y2="295.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M242.6,315.9c0-2.7-0.1-5.3-0.4-8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M241.4,302.2c-0.4-2.3-0.9-4.6-1.5-6.8"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 242.1,313.8 242.6,315.9 242.9,313.8 242.1,313.8 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 240.8,297.3 239.9,295.4 240,297.5 240.8,297.3 "/>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 506.5596 348.7217)" font-family="'Myriad-Roman'" font-size="3.8098">19</text>
+ <text transform="matrix(1 0 0 1 509.3936 352.9736)" font-family="'Myriad-Roman'" font-size="3.8098">.75</text>
+ <text transform="matrix(1 0 0 1 506.5596 352.9736)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 517.8975 352.9736)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="499.9" y1="334.5" x2="503.1" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="500.9" y1="321" x2="503.1" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503" y1="334.5" x2="503" y2="347.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503" y1="347.3" x2="505.1" y2="347.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503" y1="321" x2="503" y2="320.6"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503" y1="334.5" x2="502.6" y2="336.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="502.6" y1="336.6" x2="503.4" y2="336.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503.4" y1="336.6" x2="503" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503" y1="336.6" x2="503" y2="334.5"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503" y1="321" x2="503.4" y2="318.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503.4" y1="318.8" x2="502.6" y2="318.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="502.6" y1="318.8" x2="503" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503" y1="318.8" x2="503" y2="321"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 519.1025 340.0234)" font-family="'Myriad-Roman'" font-size="3.8098">30</text>
+ <text transform="matrix(1 0 0 1 521.9375 344.2754)" font-family="'Myriad-Roman'" font-size="3.8098">1.19</text>
+ <text transform="matrix(1 0 0 1 519.1025 344.2754)" font-family="'Myriad-Roman'" font-size="3.8098">[</text>
+ <text transform="matrix(1 0 0 1 533.2764 344.2754)" font-family="'Myriad-Roman'" font-size="3.8098">]</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="495.4" y1="313" x2="514.1" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="499.9" y1="334.5" x2="514.1" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="514" y1="313" x2="514" y2="312.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="514" y1="334.5" x2="514" y2="338.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="514" y1="338.6" x2="517.7" y2="338.6"/>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="514" y1="313" x2="514.4" y2="310.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="514.4" y1="310.9" x2="513.6" y2="310.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="513.6" y1="310.9" x2="514" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="514" y1="310.9" x2="514" y2="313"/>
+ </g>
+ <g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="514" y1="334.5" x2="513.6" y2="336.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="513.6" y1="336.6" x2="514.4" y2="336.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="514.4" y1="336.6" x2="514" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="514" y1="336.6" x2="514" y2="334.5"/>
+ </g>
+ </g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="541.1" y1="398.4" x2="581.2" y2="398.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="541.1" y1="398.4" x2="541.1" y2="406.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="541.1" y1="406.1" x2="581.2" y2="406.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="581.2" y1="398.4" x2="581.2" y2="406.1"/>
+ <text transform="matrix(0.6857 0 0 1 551.2314 404.7314)" font-family="'Myriad-Roman'" font-size="6.6671">8504010</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="534.5" y1="401.9" x2="539.8" y2="401.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="534.5" y1="401.9" x2="534.5" y2="407.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="534.5" y1="407.1" x2="539.8" y2="407.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="539.8" y1="401.9" x2="539.8" y2="407.1"/>
+ <text transform="matrix(0.9 0 0 1 535.4639 405.9092)" font-family="'Myriad-Roman'" font-size="3.8098">A1</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="377.8" x2="472.2" y2="377.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="377.8" x2="442.7" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="383" x2="472.2" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.2" y1="377.8" x2="472.2" y2="383"/>
+ <text transform="matrix(0.835 0 0 1 451.0879 381.4346)" font-family="'Myriad-Roman'" font-size="2.8573">1/2</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="372.5" x2="505.3" y2="372.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="372.5" x2="442.7" y2="377.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="377.8" x2="505.3" y2="377.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="372.5" x2="505.3" y2="377.8"/>
+ <text transform="matrix(0.835 0 0 1 457.7334 376.2031)" font-family="'Myriad-Roman'" font-size="2.8573">-</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="372.5" x2="582.3" y2="372.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="372.5" x2="540" y2="397.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="397.5" x2="582.3" y2="397.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="582.3" y1="372.5" x2="582.3" y2="397.5"/>
+ <g>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M565.5,378.3c-2.7,0.1,0.9,0-1.8,0c-7.2,0.5,2.4-0.2-4.8,0.3c-4.4,0.4,1.4-0.2-2.9,0.3c-3.8,0.5,1.3-0.2-2.6,0.4
+ c-2.6,0.4,0.9-0.1-1.7,0.3c-0.6,0.1,0.2,0-0.4,0"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="551.4" y1="379.7" x2="551.2" y2="380"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M551.2,380c0.9-0.1-0.3,0,0.6-0.1c2.5-0.3-0.8,0.1,1.6-0.2c3-0.3-1,0.1,2-0.2c2.7-0.2-0.9,0.1,1.8-0.1c2.9-0.2-1,0.1,1.9-0.1
+ c1.5-0.1-0.5,0,1-0.1c2.1-0.1-0.7,0,1.4,0c2.8-0.1-0.9,0,1.9,0c3.2,0-1.1-0.1,2.2,0"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="565.7" y1="379.1" x2="565" y2="378.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="565" y1="378.7" x2="565.5" y2="378.3"/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.8,378.3 565.5,378.3 561.4,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,378.5 565.5,378.3 559,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.5,378.3 565,378.7 559,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.5,378.8 559,378.7 565,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.5,378.8 565,378.7 556.1,379 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.1,379 565,378.7 563.5,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.5,379.1 565,378.7 564.6,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565,378.7 565.7,379.1 564.6,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.6,379.1 554.8,379.1 563.5,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.8,379.1 556.1,379 563.5,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.6,379.1 560.2,379.2 554.8,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.2,379.2 553.5,379.3 560.2,379.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.5,379.3 554.8,379.1 560.2,379.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.2,379.2 557.3,379.3 553.5,379.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.5,379.5 552.7,379.5 557.3,379.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.7,379.5 553.5,379.3 557.3,379.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.7,379.5 555.5,379.5 551.8,379.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.8,379.6 555.5,379.5 551.4,379.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.5,379.5 553.5,379.7 551.4,379.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.8,379.9 551.2,380 553.5,379.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.2,380 551.4,379.7 553.5,379.7 "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M545.9,375.2c1.7-0.5-0.6,0.2,1.1-0.3c2.6-0.6-0.9,0.1,1.8-0.3c2.6-0.1-0.9,0,1.7,0c1.7,0.2-0.5-0.2,1.1,0.2
+ c1.3,0.9-0.3-0.4,0.8,0.6c0.7,1.7,0-0.6,0.3,1.2c-0.6,1.9,0.4-0.6-0.5,1.2c-1.3,1.8,0.5-0.5-0.9,1.1c-1.8,1.5,0.7-0.4-1.3,1
+ c-2.9,1.7,1-0.4-1.9,1.1c-2.5,0.7,0.9,0-1.7,0.3c-1.4-0.3,0.4,0.3-0.9-0.3c-0.2-0.4,0,0.1-0.1-0.2c0.5-1.2-0.4,0.3,0.4-0.7
+ c1-0.7-0.4,0.2,0.7-0.4c2.2-1-0.8,0.3,1.5-0.7c2.3-0.8-0.8,0.2,1.6-0.5c2.1-0.4-0.7,0.1,1.4-0.2c0.5,0-0.1,0.1,0.3,0
+ c0.4-0.4-0.1,0.2,0.2-0.3c0.7-1.3-0.2,0.4,0.4-0.9c0-1.5,0.2,0.5-0.1-1c-0.8-0.8,0.4,0.2-0.6-0.5c-1.2-0.3,0.4,0-0.8-0.2
+ c-2.9,0.1,1-0.2-2,0.1c-2.4,0.5,0.8-0.3-1.6,0.4c-1.7,0.8,0.6-0.3-1.1,0.6c-1.4,0.7,0.5-0.2-0.9,0.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="545.9" y1="375.2" x2="545" y2="376.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="552.5" y1="374.1" x2="548.4" y2="380.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="551.3" y1="374.2" x2="548.1" y2="380"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="551.3" y1="374.2" x2="552.5" y2="374.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M548.4,380.1c-0.3,0.2,0.1,0-0.2,0.1c-0.2,0,0,0-0.1,0c-0.1-0.3,0,0.1,0-0.2"/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.3,374.2 552.5,374.1 548.1,380 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380 552.5,374.1 548.1,380 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380 552.5,374.1 548.1,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.1 552.5,374.1 548.1,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.1 552.5,374.1 548.1,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,374.1 548.4,380.1 548.1,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.1 548.1,380.1 548.4,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.4,380.1 548.4,380.1 548.1,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.1 548.1,380.1 548.4,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.4,380.1 548.4,380.1 548.1,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.2 548.1,380.1 548.4,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.4,380.1 548.4,380.2 548.1,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.2 548.1,380.2 548.4,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.4,380.2 548.4,380.2 548.1,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.2 548.1,380.2 548.4,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.4,380.2 548.4,380.2 548.1,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.2 548.1,380.2 548.4,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.4,380.2 548.3,380.2 548.1,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.2 548.1,380.2 548.3,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.3,380.2 548.3,380.2 548.1,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.2 548.1,380.2 548.3,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.3,380.2 548.3,380.2 548.1,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.2 548.1,380.2 548.3,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.3,380.2 548.3,380.2 548.1,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,380.2 548.1,380.2 548.3,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.3,380.2 548.3,380.2 548.1,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.2,380.2 548.1,380.2 548.3,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.3,380.2 548.3,380.2 548.2,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.2,380.2 548.2,380.2 548.3,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.3,380.2 548.2,380.2 548.2,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.2,380.2 548.2,380.2 548.2,380.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.2,380.2 548.2,380.2 548.2,380.2 "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M554.6,377.2c-0.1-0.2,0.1,0-0.1-0.1c-0.4-0.1,0.2,0-0.3-0.1c-0.5,0.1,0.2,0-0.4,0.1c-0.5,0.3,0.2-0.1-0.4,0.2
+ c-0.5,0.4,0.2-0.1-0.3,0.3c-0.4,0.4,0.1-0.1-0.3,0.3c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.1,0.4,0-0.1-0.1,0.3
+ c0,0.3,0-0.1,0,0.2c0.1,0.4,0-0.1,0,0.2c0.2,0.2-0.1,0,0.1,0.1c0.3,0-0.1,0,0.2,0c0.4,0-0.1,0,0.3,0c0.4-0.2-0.1,0.1,0.3-0.1
+ c0.3-0.2-0.1,0,0.2-0.1c0.3-0.2-0.1,0.1,0.2-0.1c0.1-0.1,0,0,0.1-0.1c0.2,0.1-0.1-0.1,0.1,0.1c0.2,0.1-0.1,0,0.2,0.1
+ c0.4,0-0.1,0.1,0.3,0c0.5-0.3-0.2,0.1,0.3-0.2c0.4-0.3-0.1,0.1,0.2-0.2c0.3-0.2-0.1,0.1,0.2-0.1c0.1,0,0,0,0.1,0
+ c-0.1,0.2,0.1-0.1-0.1,0.2c-0.1,0.2,0-0.1-0.1,0.1c-0.2,0.3,0-0.1-0.1,0.2c0.2,0-0.1,0,0.2,0c0.3,0-0.1,0,0.2,0
+ c0.5,0-0.1,0.1,0.3,0c0.2-0.3,0,0.1,0.1-0.2c0.5-0.7-0.2,0.2,0.3-0.4c0.7-0.7-0.2,0.2,0.5-0.5c0.3-0.4-0.1,0.2,0.2-0.3
+ c0.3-0.2-0.1,0,0.2-0.1c0,0.2,0-0.1,0,0.2c-0.3,0.3,0.1-0.1-0.2,0.2c-0.3,0.4,0.1-0.2-0.2,0.3c-0.2,0.3,0-0.1-0.1,0.2
+ c-0.1,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2c0.1,0.2-0.1,0,0.1,0.1c0.4,0.1-0.2,0.1,0.3,0c0.5-0.3-0.1,0.1,0.3-0.2
+ c0.4-0.2-0.1,0.1,0.3-0.1c0.6-0.5-0.2,0.1,0.4-0.3c0.1,0,0,0,0.1,0"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="558.1" y1="378" x2="556.7" y2="380.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M554.7,377C554.7,377.2,554.7,377,554.7,377c-0.2,0.2,0.1,0.1-0.2,0.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="556.7" y1="380.4" x2="557.4" y2="380.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="559.4" y1="376.7" x2="557.4" y2="380.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="559.4" y1="376.7" x2="560" y2="376.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M560,376.7c-0.6,0.6,0.2-0.2-0.4,0.4c-0.4,0.7,0.1-0.3-0.2,0.5c0,0.9-0.1-0.3,0.1,0.6c0.6,0.3-0.3,0,0.4,0.2
+ c0.8-0.2-0.2,0.1,0.5-0.1c0.7-0.5-0.2,0.2,0.4-0.4c0.5-0.6-0.1,0.3,0.3-0.4c0.4-0.7-0.2,0.1,0.3-0.4c0.2,0-0.1,0,0.1,0
+ c0.6-0.1-0.2,0.1,0.4-0.1c0.7-0.3-0.2,0.2,0.4-0.2c0.6-0.5-0.1,0,0.4-0.3c0.1,0.4,0.1-0.1,0,0.2c-0.3,0.1,0.1,0-0.2,0.1
+ c-1.1,0.5,0.3-0.3-0.7,0.4c-0.5,0.5,0.1-0.2-0.3,0.4c-0.1,0.7-0.1-0.2,0,0.5c0.4,0.4-0.2-0.1,0.3,0.2c1-0.1-0.3,0.2,0.6-0.1
+ c0.7-0.5-0.2,0.2,0.4-0.4c0.3-0.6-0.1,0.2,0.2-0.4c0-0.4,0,0.2,0-0.3c0-0.4,0,0.1,0-0.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="563.2" y1="376.7" x2="564.4" y2="376.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="564.4" y1="376.2" x2="564.4" y2="376.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M564.4,376.5c-0.6,0.3,0.2-0.1-0.4,0.2c-0.7,0.4,0.2-0.2-0.5,0.3c-0.4,0.5,0.1-0.2-0.3,0.4c-0.1,0.6-0.1-0.2,0,0.4
+ c0.2,0.3-0.1-0.1,0.2,0.2c0.5,0.1-0.2,0,0.3,0c0.6-0.1-0.2,0.1,0.4-0.1c0.8-0.5-0.2,0.3,0.5-0.4c0.2-0.5,0,0.2,0.1-0.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="564.8" y1="377.2" x2="564.8" y2="376"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M564.8,376c0.2-0.2-0.1,0.1,0.1-0.2c0.4-0.6-0.1,0.2,0.3-0.4c0.1-0.6,0.1,0.2,0-0.4c-0.4-0.2,0.2,0-0.3-0.1
+ c-0.3,0.2,0.1-0.1-0.2,0.1c-0.4,0.5,0.1-0.2-0.2,0.4c-0.1,0.3,0-0.1,0,0.2c0,0.4,0-0.1,0,0.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="564.5" y1="376" x2="563.1" y2="376.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="563.1" y1="376.5" x2="563.1" y2="376.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M563.1,376.1c0.2-0.3-0.1,0.1,0.2-0.2c0.5-0.5-0.1,0.2,0.3-0.4c0-0.6,0.1,0.2,0-0.4c-0.4-0.1,0.2-0.1-0.3,0
+ c-0.5,0.3,0.1-0.2-0.3,0.3c-0.2,0.6,0-0.2-0.1,0.4c0,0.4,0-0.1,0,0.3c-0.2,0.1,0.1,0-0.1,0.1c-0.1,0.1,0,0-0.1,0.1
+ c-0.5,0.4,0.2-0.1-0.4,0.3c-0.7,0.4,0.3-0.1-0.5,0.3c-0.3,0.1,0.1,0-0.2,0c0-0.3-0.1,0.1,0.1-0.2c0.1-0.5,0,0.1,0.1-0.3
+ c-0.2-0.4,0.1,0.1-0.1-0.2c-0.4-0.1,0.1,0-0.2,0c-0.3,0.3,0.1-0.2-0.2,0.2c-0.2,0.5,0-0.2-0.1,0.3c0,0.4,0-0.1,0,0.2
+ c0.1,0.2,0-0.1,0.1,0.2c0,0.1,0,0,0,0.1c-0.3,0.4,0.1-0.1-0.2,0.3c-0.3,0.3,0.1-0.1-0.2,0.2c-0.5,0.5,0.2-0.1-0.3,0.3
+ c-0.4,0.2,0.1,0-0.3,0.1c-0.2-0.3,0,0.2-0.1-0.2c0.1-0.7-0.1,0.2,0.1-0.4c0.3-0.5-0.1,0.1,0.2-0.3c0.4-0.3-0.1,0.1,0.3-0.2
+ c0.4-0.4-0.1,0.1,0.2-0.2c0.2-0.2-0.1,0.1,0.1-0.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="561" y1="376.3" x2="558.3" y2="376.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="558.3" y1="376.5" x2="558.1" y2="377"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="558.1" y1="377" x2="558.6" y2="376.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M558.6,376.9c-0.2,0.4,0.1-0.1-0.2,0.3c-0.5,0.5,0.2-0.1-0.3,0.3c-0.7,0.6,0.2-0.2-0.5,0.4c-0.4,0.3,0.2,0-0.3,0.2
+ c-0.1,0,0,0-0.1,0c0-0.3-0.1,0.1,0.1-0.2c0.6-0.8-0.2,0.2,0.4-0.5c0.3-0.6,0,0.2,0.2-0.4c-0.1-0.5,0.1,0.1-0.1-0.3
+ c-0.4-0.2,0.1,0-0.3-0.1c-0.3,0.1,0.1-0.1-0.2,0.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="557.4" y1="376.7" x2="556.6" y2="377.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M556.6,377.3C556.5,377.4,556.7,377.3,556.6,377.3C556.5,377.3,556.6,377.4,556.6,377.3c0-0.3-0.1,0.1,0-0.2
+ c0.2-0.2-0.1,0.1,0.1-0.2c0.2-0.2,0,0.1,0.1-0.2c0-0.1,0,0,0-0.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="556.9" y1="376.7" x2="556.2" y2="376.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M556.2,376.8c-0.3,0.5,0.1-0.2-0.2,0.3c-0.8,1,0.3-0.3-0.6,0.7c-0.7,0.6,0.2-0.2-0.5,0.4c-0.4,0.4,0.2,0-0.3,0.2
+ c-0.2-0.1,0,0-0.1-0.1c0-0.1,0,0,0-0.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="554.6" y1="378.3" x2="555.4" y2="377"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="555.4" y1="377" x2="554.7" y2="377"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M554.2,377.3c-0.7,0.2,0.2-0.2-0.4,0.2c-0.7,0.8,0.2-0.3-0.4,0.6c-0.2,0.6,0-0.2-0.1,0.4c0.2,0.3-0.1-0.1,0.2,0.2
+ c0.7-0.3-0.2,0.3,0.4-0.3c0.5-0.5-0.1,0.2,0.3-0.4c0.3-0.6-0.1,0.2,0.2-0.4c0.1-0.4,0,0.1,0-0.3
+ C554.1,377.3,554.4,377.5,554.2,377.3z"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M564.3,376.8c-0.3,0.1,0.1-0.1-0.2,0.1c-0.4,0.2,0.1-0.1-0.2,0.2c-0.3,0.3,0.1-0.1-0.2,0.2c-0.1,0.3,0-0.1,0,0.2
+ c0.3,0.1-0.1,0,0.2,0c0.5-0.3-0.1,0.1,0.3-0.2c0.3-0.3-0.1,0.1,0.2-0.2C564.4,376.7,564.4,377.2,564.3,376.8z"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M562.6,376.9c-0.5,0.1,0.2-0.2-0.3,0.2c-0.5,0.5,0.1-0.2-0.3,0.3c0,0.3,0-0.1,0,0.2c0.4,0-0.2,0.1,0.3-0.1
+ c0.4-0.4-0.1,0.1,0.3-0.3C562.7,376.8,562.6,377.4,562.6,376.9z"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M559.5,376.5c0.2-0.2-0.1,0.1,0.1-0.1c0.2-0.3-0.1,0.1,0.1-0.2c0.9-0.8-0.3,0.2,0.6-0.5c0.9-0.8-0.3,0.3,0.6-0.6
+ c1.3-1.4-0.3,0.5,0.8-0.9c0.3-0.8-0.1,0.3,0.2-0.5c0.1-0.5,0.1,0.1,0-0.3c-0.5-0.1,0.2,0-0.3,0c-1,0.6,0.2-0.3-0.6,0.5
+ c-1.2,1.3,0.4-0.4-0.8,0.9c-1.4,1.8,0.4-0.6-0.9,1.2c-0.6,1.1,0.2-0.4-0.4,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M550.9,378.5c-1.2,0.2,0.4-0.2-0.8,0.2c-1.3,0.3,0.4-0.1-0.8,0.2c-1.4,0.5,0.5-0.2-0.9,0.3c-1.4,0.6,0.4-0.3-0.9,0.4
+ c-0.6,0.5,0.2-0.2-0.4,0.4c-0.3,0.4,0.1-0.2-0.2,0.3c-0.1,0.2,0-0.1,0,0.1c0.4,0.4-0.2,0,0.3,0.2c0.2,0-0.1,0,0.1,0
+ c0.8,0-0.3,0,0.6,0c1.2-0.3-0.4,0.2,0.8-0.2c1.4-0.7-0.4,0.3,0.9-0.5c1.4-0.9-0.4,0.3,0.9-0.6c0.6-0.6-0.3,0.2,0.4-0.4
+ c0.5-0.5,0,0.1,0.3-0.3C550.8,378.5,551.3,378.6,550.9,378.5z"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M560,375.6c0.1-0.6-0.3,0.3,0.2-0.4c0.7-1.1-0.2,0.3,0.4-0.7c0.8-0.8-0.3,0.3,0.5-0.6c0.2-0.2-0.1,0.1,0.1-0.1c0.1,0,0,0,0,0
+ c0,0.1,0,0,0,0c0,0.3,0-0.1,0,0.2c-0.1,0.4,0.1-0.1-0.1,0.3c-0.2,0.3,0.1-0.1-0.1,0.2c-0.5,0.7,0.2-0.2-0.3,0.4
+ c-0.5,0.5,0.2-0.2-0.3,0.4c-0.3,0.2,0.1-0.1-0.2,0.2C559.9,375.7,560.5,375.4,560,375.6z"/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549.4,374.5 550,374.5 550.6,374.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.6,374.5 551,374.5 549.4,374.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.8,374.5 549.4,374.5 551,374.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551,374.5 551.3,374.5 548.8,374.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.3,374.6 548.8,374.5 551.3,374.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.3,374.5 551.7,374.6 548.3,374.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.7,374.7 548.3,374.6 551.7,374.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.7,374.6 552,374.8 547.7,374.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.1,374.9 547.7,374.7 552,374.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552,374.8 552.3,375 547.1,374.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.5,375 547.1,374.9 552.3,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.5,375 552.3,375 545.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.3,375 552.5,375.3 545.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550,375.4 552.5,375.3 550.6,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.6,375.4 552.5,375.3 550.9,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.9,375.4 552.5,375.3 551.2,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.2,375.5 552.5,375.3 551.4,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,375.3 552.7,375.6 551.4,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.7,375.7 551.4,375.5 552.7,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.7,375.7 552.7,375.6 551.9,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.7,375.6 552.8,375.9 551.9,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552,376 551.9,375.8 552.8,375.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.8,375.9 552.9,376.2 552,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.1,376.3 552,376 552.9,376.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.9,376.2 552.9,376.5 552.1,376.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.2,376.5 552.1,376.3 552.9,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.2,376.5 552.9,376.5 552.2,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.9,376.5 552.8,376.8 552.2,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.4,376.7 545,376.9 545.9,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.9,376.5 545,376.9 546.3,376.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.3,376.3 545,376.9 546.7,376.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,375.3 550,375.4 545.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550,375.4 549.3,375.4 545.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549.3,375.4 548.7,375.5 545.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.7,375.5 548.1,375.6 545.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.1,375.6 547.6,375.7 545.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.6,375.7 547,375.9 545.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547,375.9 546.7,376.1 545.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545,376.9 545.9,375.2 546.7,376.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.1,377 552.2,376.8 552.8,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.8,376.8 552.7,377.1 552.1,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552,377.3 552.1,377 552.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.7,377.1 552.5,377.4 552,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.9,377.6 552,377.3 552.5,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,377.4 552.4,377.7 551.9,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.7,377.9 551.9,377.6 552.4,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.7,377.9 552.4,377.7 551.6,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.6,378 552.4,377.7 551.6,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.4,377.7 552.1,378.1 551.6,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.5,378.1 551.6,378.1 552.1,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.5,378.1 552.1,378.1 551.3,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.2,378.2 551.3,378.2 550.7,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.3,378.2 552.1,378.1 550.7,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.7,378.2 552.1,378.1 550.2,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.2,378.3 552.1,378.1 549.8,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.1,378.1 551.8,378.5 549.8,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.5,378.6 549,378.6 550.6,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.6,378.6 549,378.6 550.8,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.8,378.5 550.8,378.5 549.8,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549,378.6 549.8,378.4 550.8,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.5,378.6 550.3,378.7 549,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.8,378.5 551.8,378.5 550.9,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.9,378.5 551.8,378.5 551,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551,378.6 551.8,378.5 551.1,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.1,378.6 551.8,378.5 551.2,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.2,378.6 551.8,378.5 551.2,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.2,378.6 551.8,378.5 551.2,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.2,378.7 551.8,378.5 551.2,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.2,378.7 551.8,378.5 551.1,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.1,378.8 551.8,378.5 551.1,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.8,378.5 551.5,378.9 551.1,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549.6,378.9 548.2,378.9 549.9,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549.9,378.8 548.2,378.9 550.2,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.2,378.7 548.2,378.9 550.3,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.2,378.9 549,378.6 550.3,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.9,378.9 551.1,378.8 551.5,378.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549.6,378.9 549.3,379 548.2,378.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.9,378.9 551.5,378.9 550.8,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.8,379.1 551.5,378.9 550.7,379.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.5,378.9 551.1,379.2 550.7,379.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.7,379.2 547.5,379.2 549,379 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549,379 547.5,379.2 549.3,379 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.5,379.2 548.2,378.9 549.3,379 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.6,379.3 550.7,379.2 551.1,379.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.7,379.2 548.4,379.3 547.5,379.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.6,379.3 551.1,379.2 550.5,379.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.5,379.4 551.1,379.2 550.3,379.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 551.1,379.2 550.7,379.5 550.3,379.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.7,379.6 546.7,379.6 547.9,379.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.9,379.5 546.7,379.6 548.2,379.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.2,379.4 546.7,379.6 548.4,379.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.7,379.6 547.5,379.2 548.4,379.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.1,379.7 550.3,379.5 550.7,379.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.7,379.6 547.5,379.7 546.7,379.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.5,379.7 546.7,379.6 547.5,379.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.5,379.7 547.3,379.8 546.5,379.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.3,379.8 546.5,379.7 547.3,379.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.1,379.7 550.7,379.5 549.8,379.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.7,379.5 550.2,379.9 549.8,379.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.3,379.8 547.2,379.9 546.3,379.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549.6,380 549.8,379.8 550.2,379.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546,380 546.3,379.8 547.2,379.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.2,379.9 547.1,380 546,380 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.9,380.1 546,380 547.1,380 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.1,380 547,380.1 545.9,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549.6,380 550.2,379.9 549.3,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 550.2,379.9 549.6,380.3 549.3,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.9,380.2 545.8,380.3 547,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.8,380.3 545.9,380.1 547,380.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549,380.3 549.3,380.1 549.6,380.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.9,380.2 546.9,380.3 545.8,380.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.8,380.4 545.7,380.4 546.9,380.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.7,380.4 545.8,380.3 546.9,380.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.8,380.4 546.8,380.5 545.7,380.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.9,380.5 545.6,380.6 546.8,380.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.6,380.6 545.7,380.4 546.8,380.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.9,380.5 546.9,380.6 545.6,380.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549,380.3 549.6,380.3 548.7,380.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.7,380.4 549.6,380.3 548.4,380.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.4,380.5 549.6,380.3 548.2,380.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549.6,380.3 549,380.6 548.2,380.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.9,380.7 548.2,380.6 549,380.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.6,380.7 545.6,380.7 547.3,380.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.3,380.7 545.6,380.7 547.2,380.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.2,380.7 545.6,380.7 547.2,380.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.2,380.7 545.6,380.7 547.1,380.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.1,380.7 545.6,380.7 547,380.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547,380.6 545.6,380.7 546.9,380.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.6,380.7 545.6,380.6 546.9,380.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.9,380.7 549,380.6 547.6,380.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.6,380.7 547.6,380.7 545.7,380.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.6,380.7 549,380.6 545.7,380.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 549,380.6 548.3,380.9 545.7,380.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.8,381 545.7,380.9 548.3,380.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 548.3,380.9 547.9,381.1 545.8,381 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 545.9,381.1 545.8,381 547.9,381.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.9,381.1 547.5,381.2 545.9,381.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546,381.2 545.9,381.1 547.5,381.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546,381.2 547.5,381.2 546.2,381.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.5,381.2 547.1,381.2 546.2,381.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 546.4,381.3 546.2,381.2 547.1,381.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 547.1,381.2 546.6,381.3 546.4,381.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565,375 565.1,375 565,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565,375 565,375 565.1,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.1,375 565.1,375 565,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.9,375 565,375 565.1,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.1,375 565.2,375 564.9,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.9,375 564.9,375 565.2,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.2,375 565.2,375 564.9,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.2,375 564.8,375.1 565.2,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.8,375.1 564.9,375 565.2,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.2,375 565.3,375.1 564.8,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.8,375.1 564.8,375.1 565.3,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,375.1 563.4,375.1 563.5,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.3,375.1 565.3,375.1 564.8,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,375.1 563.5,375.1 563.3,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.5,375.1 563.6,375.1 563.3,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.7,375.1 564.8,375.1 565.3,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.3,375.1 565.3,375.2 564.7,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,375.2 563.1,375.2 563.6,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.1,375.2 563.3,375.1 563.6,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.7,375.2 564.7,375.1 565.3,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.3,375.2 565.3,375.2 564.7,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,375.2 563.6,375.2 563.1,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.3,375.2 564.6,375.3 565.3,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.6,375.3 564.7,375.2 565.3,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563,375.3 563.1,375.2 563.6,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.3,375.2 565.3,375.3 564.6,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,375.2 563.6,375.3 563,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.3,375.3 564.6,375.3 565.3,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.6,375.3 564.6,375.3 565.3,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.3,375.3 565.2,375.4 564.6,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563,375.4 563,375.3 563.6,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,375.3 563.6,375.4 563,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.6,375.4 564.6,375.3 565.2,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.2,375.4 565.2,375.4 564.6,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.9,375.5 563,375.4 563.6,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.2,375.5 564.5,375.5 565.2,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.5,375.5 564.6,375.4 565.2,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,375.4 563.6,375.5 562.9,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.2,375.5 565.2,375.5 564.5,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.5,375.6 564.5,375.5 565.2,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.2,375.5 565.1,375.6 564.5,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.9,375.6 562.9,375.5 563.6,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,375.5 563.5,375.6 562.9,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.1,375.7 564.5,375.7 565.1,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.5,375.7 564.5,375.6 565.1,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565.1,375.7 565,375.7 564.5,375.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.5,375.7 562.9,375.8 563.5,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.9,375.8 562.9,375.6 563.5,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.5,375.8 564.5,375.7 565,375.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 565,375.7 565,375.8 564.5,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.5,375.7 563.4,375.8 562.9,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.9,375.8 562.9,375.8 563.4,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.4,375.8 563.3,375.9 562.9,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.9,375.8 564.5,375.9 565,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.5,375.9 564.5,375.8 565,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.9,375.9 562.9,375.8 563.3,375.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.9,375.8 564.9,375.9 564.5,375.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,375.9 563.2,376 562.9,375.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.9,376 562.9,375.9 563.2,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,376 561.4,376 561.5,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.5,376 564.5,375.9 564.9,375.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.5,376 561.6,376 561.4,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.9,375.9 564.8,376 564.5,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,376 561.4,376 561.6,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.9,376 563.2,376 562.9,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.9,376 563.2,376 562.8,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.2,376 563.1,376.1 562.8,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.6,376 561.7,376.1 561.3,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.1 562.8,376 563.1,376.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,376.1 561.3,376 561.7,376.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,376.1 561.7,376.1 561.3,376.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,376.1 561.3,376.1 561.7,376.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,376.1 561.7,376.1 561.2,376.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,376.1 561.8,376.2 561.2,376.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,376.3 561.1,376.3 561.8,376.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,376.3 561.2,376.2 561.8,376.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,376.3 561.8,376.4 561.1,376.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,376.4 561.1,376.4 561.8,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,376.4 561.1,376.3 561.8,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,376.5 562.3,376.5 562.7,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.7,376.4 562.3,376.5 562.7,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.4 562.7,376.4 562.5,376.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.3,376.5 562.5,376.3 562.7,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.1 563.1,376.1 562.8,376.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.1 563.1,376.1 562.7,376.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.7,376.1 563.1,376.1 562.6,376.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,376.2 563.1,376.1 562.5,376.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,376.3 563.1,376.1 562.8,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.4 563.1,376.1 562.8,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.4 563.1,376.1 562.8,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.4 563.1,376.1 562.8,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.1,376.1 563.1,376.5 562.8,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.4,376.2 563.1,376.5 564.8,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.1,376.5 564.5,376 564.8,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,376.5 562.5,376.5 562.3,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,376.4 561.7,376.5 561.1,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,376.5 562.3,376.5 562.5,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.3,376.5 561,376.3 560.8,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.8,376.4 560.7,376.6 558.3,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,376.6 561.1,376.4 561.7,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.6 562.8,376.5 563.1,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,376.5 561.7,376.6 561,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.5,376.6 557.6,376.6 557.6,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,376.5 562.5,376.6 562.2,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.6,376.6 557.7,376.6 557.5,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,376.6 562.2,376.5 562.5,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.5,376.6 557.5,376.6 557.7,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.7,376.6 557.8,376.6 557.5,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.4,376.6 557.5,376.6 557.8,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,376.6 561,376.6 561.7,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,376.6 561.6,376.7 561,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,376.6 562.5,376.6 562,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,376.6 562.4,376.7 562,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.7,376.6 560.6,376.7 560,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.8,376.6 557.8,376.7 557.4,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.4,376.7 557.4,376.6 557.8,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.9,376.7 562,376.7 562.4,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,376.7 562.3,376.7 561.9,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.8,376.7 557.9,376.7 557.4,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.6,376.7 561,376.7 561.6,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,376.7 561,376.6 561.6,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,376.7 561.9,376.7 562.3,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.6,376.7 561.6,376.7 561,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.6 563.1,376.5 562.8,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.1,376.5 564.4,376.2 562.8,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,376.6 564.4,376.2 562.7,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.7,376.7 564.4,376.2 562.7,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,376.7 562.6,376.7 563.2,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,376.7 562.7,376.7 563.2,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.4,376.2 563.2,376.7 562.7,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,376.8 562.6,376.7 563.2,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,376.7 562.3,376.7 561.8,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,376.7 562.3,376.7 561.7,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,376.8 561.7,376.8 562.2,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.3,376.7 562.2,376.8 561.7,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.5,376.8 559.8,376.8 560.6,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.8,376.8 560,376.7 560.6,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,376.8 561.1,376.8 562.2,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,376.8 561.1,376.8 561.7,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,376.8 561.1,376.8 561.6,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.6,376.7 561.1,376.8 561.6,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,376.8 561,376.7 561.6,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.9,376.8 556.2,376.8 556.9,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.2,376.8 556.9,376.7 556.9,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.9,376.8 556.8,376.8 556.2,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,376.8 562.1,376.8 561.1,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.8 563.8,376.8 564.3,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.8,376.8 563.9,376.8 564.3,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.8 564.2,376.8 563.8,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,376.8 563.2,376.7 562.3,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.2,376.7 563.1,376.9 562.3,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,376.9 561.1,376.8 562.1,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,376.8 561.9,376.9 561.1,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.5,376.8 560.3,376.9 559.8,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,376.9 562.3,376.8 563.1,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,376.9 561.1,376.9 561.9,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.9,376.9 561.9,376.9 561.1,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.1,376.9 563.7,376.9 564.2,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,376.9 563.7,376.9 564.2,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,376.9 563.7,376.9 564.2,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,376.9 563.7,376.9 564.2,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,376.9 563.8,376.8 564.2,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.7,376.9 559.8,376.8 560.3,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.1,376.9 564.1,377 563.7,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,377 561.1,377 561.9,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,377 561.1,376.9 561.9,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.6,376.9 558.1,377 559.4,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,376.7 559.4,376.7 560.7,376.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.7,376.6 559.4,376.7 558.3,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.1,377 558.3,376.5 559.4,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,376.9 563.1,376.9 562.6,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,376.9 563.1,376.9 562.6,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,376.9 563.1,376.9 562.6,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,376.9 563.1,376.9 562.6,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,376.9 563.1,376.9 562.6,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.1,376.9 563.1,377 562.6,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,377 562.6,377 563.1,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,377 561.8,377 561.5,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,377 561.7,377 561.5,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.5,377 561.5,377 561.7,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.7,377 556.1,377 556.8,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,376.9 556.1,377 556.8,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,376.9 556.1,377 556.8,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,376.9 556.1,377 556.8,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,376.9 556.1,377 556.8,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.1,377 556.2,376.8 556.8,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,377 562,377 562.5,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,377 562,377 562.5,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,377 562,377 562.5,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,376.9 562,377 562.5,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,376.9 562,377 562.6,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377 562.1,376.9 562.6,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,377 561.6,377 561.5,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.3,376.9 560.3,377 559.7,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,377 561.1,377 561.5,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,377 561.1,377 561.5,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,377 562.4,377 562,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564,377 563.6,377 564,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564,377 563.6,377 564.1,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,377 563.7,376.9 564.1,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,377 561.4,377 561.1,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554,377 554.2,377 554.3,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.3,377 554.4,377 554,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564,377 563.9,377 563.6,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,377 561.1,377 561.4,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.7,377 556.7,377.1 556.1,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.6,377.1 559.7,376.9 560.3,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.8,377.1 554,377 554.4,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.4,377 554.5,377.1 553.8,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,377 561.3,377.1 561.1,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.9,377.1 563.5,377.1 563.9,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.5,377.1 563.6,377 563.9,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.9,377.1 563.9,377.1 563.5,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.3,377.1 561.9,377.1 562.4,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,377 561.9,377.1 562.4,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.9,377.1 562,377 562.4,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.3,377 560.2,377.1 559.6,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.3,377.1 562.3,377.1 561.9,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,377.1 561.1,377 561.3,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.5,377.1 553.7,377.1 554.5,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.7,377.1 553.8,377.1 554.5,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,377 563.1,377 562.6,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,377 563.1,377 562.6,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,377 563.1,377 562.6,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,377.1 563.1,377 562.6,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.1,377 563.1,377.1 562.6,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,377.1 561.3,377.1 561.1,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.8,377.1 563.4,377.1 563.9,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.4,377.1 563.5,377.1 563.9,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,377.1 562.6,377.1 563.1,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.1 556,377.2 556.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556,377.2 556.1,377 556.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.1 556.6,377.2 556,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.8,377.1 563.8,377.2 563.4,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.5,377.1 554.6,377.2 553.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,377.2 561.8,377.2 562.2,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,377.1 561.8,377.2 562.3,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,377.2 561.9,377.1 562.3,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,377.2 561.1,377.1 561.3,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.6,377.2 553.7,377.1 554.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,377.2 562.1,377.2 561.8,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.1,377.2 557.9,377.1 557.1,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,377.1 557.9,377.2 557.1,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.5,377.2 559.6,377.1 560.2,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,377.2 563.4,377.2 563.8,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.4,377.2 563.4,377.1 563.8,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.2,377.1 560.1,377.2 559.5,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.4,376.2 564.8,376 564.4,376.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,376.6 564.4,376.5 564,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564,376.7 564.4,376.5 563.9,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.9,376.8 564.4,376.5 564.3,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.4,376.5 564.8,376 564.3,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.8 564.8,376 564.3,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.8 564.8,376 564.3,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.8 564.8,376 564.3,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.9 564.8,376 564.3,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.9 564.8,376 564.3,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.9 564.8,376 564.3,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.9 564.8,376 564.3,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,376.9 564.8,376 564.3,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,377 564.8,376 564.3,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,377 564.8,376 564.3,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,377.1 564.8,376 564.3,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,377.1 564.8,376 564.3,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,377.2 564.2,377.2 564.8,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,377.2 564.3,377.2 564.8,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,377.2 564.3,377.1 564.8,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.8,376 564.8,377.2 564.3,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,377.2 563.7,377.2 563.4,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.1,377.2 557.1,377.2 557.9,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,377.2 564.2,377.2 564.8,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,377.2 561.3,377.1 561,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,377.1 561.2,377.3 561,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,377.3 561.7,377.3 562.1,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,377.2 561.7,377.3 562.1,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,377.3 561.8,377.2 562.1,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,377.1 563.1,377.1 562.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,377.2 563.1,377.1 562.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.6,377.2 563.1,377.1 562.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.1,377.1 563.1,377.3 562.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,377.2 557.8,377.3 557.1,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,377.3 563.3,377.3 563.7,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,377.3 563.4,377.2 563.7,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,377.3 562,377.3 561.7,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557,377.3 556.6,377.3 557,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557,377.2 556.6,377.3 557.1,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,377.1 557.1,377.2 557.9,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,377.1 557.1,377.2 557.9,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.1,377.2 556.6,377.3 557.9,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,377 556.6,377.3 557.9,376.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,376.9 556.6,377.3 557.9,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,376.8 556.6,377.3 557.9,376.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,376.8 556.6,377.3 557.9,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 557.4,376.7 557.9,376.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.1,377.3 557.1,377.2 557.8,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.9,377.3 561,377.2 561.2,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,377.3 562.6,377.3 563.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 557,377.3 556.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557,377.3 556.9,377.3 556.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,377.3 563.7,377.3 563.3,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 556.6,377.3 556.9,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 555.9,377.3 556.5,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.5,377.3 555.9,377.3 556.5,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.5,377.3 555.9,377.3 556.5,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.5,377.3 555.9,377.3 556.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.2 555.9,377.3 556.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.2 555.9,377.3 556.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.2 555.9,377.3 556.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.2 555.9,377.3 556.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.9,377.3 556,377.2 556.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,377.2 564.8,377.2 564.2,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,377.3 564.8,377.2 564.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.1,377.3 564.8,377.2 564.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.8,377.2 564.8,377.3 564.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 556.6,377.3 555.9,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.1,377.3 564.1,377.3 564.8,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.8,377.3 557.8,377.3 557.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.3 561.6,377.4 562,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.6,377.4 561.7,377.3 562,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.1,377.4 557.1,377.3 557.8,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.3 562,377.4 561.6,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,377.4 563.3,377.4 563.7,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,377.4 563.3,377.3 563.7,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,377.3 559.4,377.4 560.1,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.4,377.4 559.5,377.2 560.1,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,377.4 563.6,377.4 563.3,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,377.3 561.2,377.4 560.9,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 556.9,377.3 556.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 556.9,377.3 556.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 556.9,377.3 556.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 556.9,377.3 556.6,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.9,377.3 556.8,377.4 556.6,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.8,377.3 557.7,377.4 557.1,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.8,377.4 560.9,377.3 561.2,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,377.3 560,377.4 559.4,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,377.3 563.1,377.3 562.5,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,377.3 563.1,377.3 562.5,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,377.4 563.1,377.3 562.5,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.1,377.3 563.1,377.4 562.5,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.1,377.4 557.1,377.4 557.7,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,377.4 562.5,377.4 563.1,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.1,377.3 564.8,377.3 564.1,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.1,377.4 564.8,377.3 564,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564,377.4 564.8,377.3 564,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.8,377.3 564.7,377.4 564,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564,377.5 564,377.4 564.7,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,377.4 563.3,377.5 563.6,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,377.4 563.3,377.5 563.6,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,377.5 563.3,377.4 563.6,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,377.4 563.6,377.5 563.3,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.5 561.6,377.5 562,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.4 561.6,377.5 562,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.6,377.5 561.6,377.4 562,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.5 562,377.5 561.6,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,377.5 555.7,377.5 556.8,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,377.4 555.7,377.5 556.6,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.4 555.7,377.5 556.6,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.4 555.7,377.5 556.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 555.7,377.5 556.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,377.3 555.7,377.5 556.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.7,377.5 555.9,377.3 556.6,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,377.4 561.1,377.5 560.8,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.7,377.5 560.8,377.4 561.1,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.1,377.4 557.7,377.4 557,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.7,377.4 557.6,377.5 557,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557,377.5 557,377.5 557.6,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.8,377.5 553.1,377.5 553.9,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.9,377.5 553.1,377.5 553.9,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.9,377.4 553.1,377.5 554,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554,377.4 553.1,377.5 554,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554,377.4 553.1,377.5 554.1,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.1,377.3 554.1,377.4 553.5,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.1,377.5 553.5,377.3 554.1,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,377.5 563.3,377.5 563.7,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,377.5 563.3,377.5 563.7,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,377.5 563.3,377.5 563.7,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,377.5 563.3,377.5 563.6,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,377.5 563.3,377.5 563.6,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,377.5 563.3,377.5 563.6,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,377.5 563.3,377.5 563.6,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,377.5 563.3,377.5 563.6,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,377.4 563.1,377.4 562.4,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,377.5 563.1,377.4 562.3,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.3,377.5 563.1,377.4 562.3,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.3,377.5 563.1,377.4 562.3,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.1,377.4 563,377.5 562.3,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564,377.5 564.7,377.4 563.9,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.9,377.5 564.7,377.4 563.9,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.9,377.5 564.7,377.4 563.9,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.9,377.5 564.7,377.4 563.8,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.8,377.5 564.7,377.4 563.8,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,377.5 563.7,377.5 564.7,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,377.5 563.8,377.5 564.7,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.7,377.4 564.7,377.5 563.8,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,377.5 559.3,377.6 560,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.3,377.6 559.4,377.4 560,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.6 561.5,377.6 562,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.5 561.5,377.6 562,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.5 561.5,377.6 562,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.5,377.6 561.6,377.5 562,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.8,377.5 553.8,377.6 553.1,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.6 562,377.6 561.5,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,377.6 562.3,377.5 563,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,377.5 556.7,377.6 555.7,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,377.5 561,377.6 560.7,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,377.6 563.3,377.5 564.7,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.6,377.6 560.7,377.5 561,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,377.5 560,377.6 559.3,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557,377.5 557.6,377.5 556.9,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.6,377.5 557.6,377.6 556.9,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.7,377.5 564.6,377.7 563.3,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553,377.7 553.1,377.5 553.8,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,377.6 561.5,377.7 562,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.6 561.5,377.7 562,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.6 561.5,377.7 562,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,377.6 561.5,377.7 562,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.5,377.7 561.5,377.6 562,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.3,377.7 559.3,377.6 560,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,377.7 556.9,377.6 557.6,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.6,377.7 555.7,377.5 556.7,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,377.6 563,377.5 562.2,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,377.6 563,377.5 562.1,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,377.6 563,377.5 562.1,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,377.6 562.1,377.6 561.5,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.1,377.6 563,377.5 561.5,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563,377.5 562.9,377.7 561.5,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.8,377.6 553.7,377.7 553,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.6,377.6 557.5,377.7 556.8,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,377.6 560,377.7 559.3,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,377.7 563.3,377.6 564.6,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,377.6 560.9,377.7 560.6,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.5,377.7 560.6,377.6 560.9,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.6,377.7 564.5,377.7 563.3,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.7,377.6 556.5,377.7 555.6,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.5,377.8 561.5,377.7 562.9,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.5,377.8 556.8,377.8 557.5,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,377.8 556.8,377.7 557.5,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.3,377.8 559.3,377.7 560,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,377.7 560,377.8 559.3,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.6,377.8 552.8,377.8 553.7,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.8,377.8 553,377.7 553.7,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,377.8 563.3,377.7 564.5,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.9,377.7 560.8,377.8 560.5,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.9,377.7 562.8,377.8 561.5,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.4,377.8 555.6,377.7 556.5,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.4,377.8 560.5,377.7 560.8,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.5,377.7 564.4,377.8 563.3,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.5,377.8 557.4,377.8 556.8,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.5,377.9 561.5,377.8 562.8,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.3,377.9 563.3,377.8 564.4,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.7,377.9 556.8,377.8 557.4,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,377.9 559.3,377.9 560.1,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,377.8 559.3,377.9 560,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.3,377.9 559.3,377.8 560,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.6,377.8 553.5,377.9 552.8,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.4,377.8 564.3,377.9 563.3,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,377.9 560.2,377.9 559.3,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.8,377.9 552.8,377.8 553.5,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.4,377.8 556.5,377.7 555.3,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.5,377.7 556.4,377.9 555.3,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.4,377.8 557.4,377.9 556.7,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.4,377.9 563.3,377.9 564.3,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.8,377.8 562.7,377.9 561.5,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.4,377.8 560.8,377.8 560.3,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.3,377.9 560.8,377.8 560.2,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.2,377.9 560.8,377.8 560.2,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.8,377.8 560.7,377.9 560.2,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.5,377.9 561.5,377.9 562.7,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.3,377.9 564.2,378 563.4,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.4,378 563.4,377.9 564.2,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.3,378 555.3,377.9 556.4,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378 556.6,378 557.4,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,378 556.7,377.9 557.4,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378 557.3,378 556.6,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.2,378 564.1,378 563.4,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.7,377.9 559.3,378 560.2,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.3,378 559.3,377.9 560.2,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558,378 557.6,378 558.1,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.6,378 557.7,378 558.1,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.5,377.9 553.4,378 552.8,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.5,378 563.4,378 564.1,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558,378 557.9,378 557.6,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564.1,378 564,378 563.5,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.7,378 552.8,377.9 553.4,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.5,378 563.5,378 564,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 564,378 563.9,378 563.5,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.6,378 557.6,378 557.9,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.5,377.9 562.7,377.9 561.6,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.7,377.9 562.5,378 561.6,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.8,378 563.6,378 563.9,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.6,378 563.5,378 563.9,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.8,378 563.7,378 563.6,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 563.7,378 563.6,378 563.7,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.7,377.9 560.5,378.1 559.3,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,378 557.8,378.1 557.6,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.5,378.1 557.6,378 557.8,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.3,378 556.4,377.9 555.2,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.4,377.9 556.2,378.1 555.2,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378.1 556.6,378.1 557.3,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378 556.6,378.1 557.3,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378 556.6,378.1 557.3,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,378.1 556.6,378 557.3,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,378.1 561.6,378 562.5,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.4,378.1 559.3,378 560.5,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378.1 557.3,378.1 556.6,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.5,378 562.4,378.1 561.7,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,378.1 561.7,378.1 562.4,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.4,378 553.3,378.1 552.7,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.1,378.1 555.2,378 556.2,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.5,378.1 557.8,378.1 557.5,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.5,378.1 557.8,378.1 557.4,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.4,378.1 557.8,378.1 557.4,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.8,378.1 557.8,378.1 557.4,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.4,378.1 562.2,378.1 561.8,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.9,378.2 561.8,378.1 562.2,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.4,378.1 560.5,378.1 559.4,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.5,378.1 560.4,378.2 559.4,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562.2,378.1 562.1,378.2 561.9,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,378.2 561.9,378.2 562.1,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.8,378.1 556.6,378.2 557.4,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.4,378.1 556.6,378.2 557.4,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.4,378.1 556.6,378.2 557.3,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378.1 556.6,378.2 557.3,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378.1 556.6,378.2 557.3,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378.1 556.6,378.2 557.3,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,378.2 556.6,378.1 557.3,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.8,378.1 557.7,378.2 556.6,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.2,378.1 556.1,378.2 555.1,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.5,378.2 559.4,378.2 560.4,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555,378.2 555.1,378.1 556.1,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.4,378.2 560.3,378.2 559.5,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.3,378.2 552.6,378.3 553.3,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.3,378.2 552.6,378.3 553.3,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.6,378.3 552.7,378 553.3,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.6,378.3 559.5,378.2 560.3,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.3,378.2 553.2,378.3 552.6,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.3,378.2 560.1,378.3 559.6,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.6,378.3 556.6,378.3 557.7,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,378.3 556.6,378.2 557.7,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.7,378.3 559.6,378.3 560.1,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,378.3 560,378.3 559.7,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.8,378.3 559.7,378.3 560,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,378.3 559.9,378.3 559.8,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377 555.4,377 554.7,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377 555.4,377 554.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377.1 555.4,377 554.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377.1 555.4,377 554.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377.1 555.4,377 554.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377.1 555.4,377 554.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377.1 555.4,377 554.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377.1 555.4,377 554.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377.1 555.4,377 554.7,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,377.1 555.4,377 554.6,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,377.1 555.4,377 554.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,377.2 555.4,377 554.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,377.2 555.4,377 554.6,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.6,377.2 554.6,377.2 553.5,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.5,377.3 554.6,377.2 554.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,377.2 554.6,377.2 554.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,377.2 554.6,377.2 554.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,377.2 554.6,377.2 554.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,377.2 555.4,377 554.1,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.1,377.3 555.4,377 554.2,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.2,377.3 555.4,377 554.2,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.2,377.4 555.4,377 554.3,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.3,377.4 555.4,377 554.3,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.3,377.4 555.4,377 554.3,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.3,377.4 555.4,377 554.3,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.3,377.4 555.4,377 554.4,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.4,377.5 555.4,377 554.4,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.4,377.5 555.4,377 554.4,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.4,377.6 555.4,377 554.4,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.4,377.6 555.4,377 554.3,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.3,377.6 555.4,377 554.3,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.3,377.7 555.4,377 554.3,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.3,377.8 555.4,377 554.2,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.2,377.9 555.4,377 554.2,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.2,378 555.4,377 554.1,378.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.1,378.1 555.4,377 554,378.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554,378.2 555.4,377 554,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.4,377 554.6,378.3 554,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.6,378.3 557.5,378.3 556.6,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.9,378.3 554,378.3 554.6,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,378.3 554.6,378.3 553.9,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.3 554.9,378.4 555.2,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.3 554.9,378.4 555.2,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.3 554.9,378.4 555.3,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.9,378.4 554.9,378.3 555.3,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555,378.2 556.1,378.2 554.9,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.9,378.3 556.1,378.2 554.9,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.9,378.3 556.1,378.2 555.3,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.3,378.3 556.1,378.2 555.3,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.3,378.3 556.1,378.2 555.3,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.1,378.2 555.9,378.4 555.3,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.3 555.1,378.4 554.9,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.4,378.4 556.6,378.4 557.5,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,378.4 556.6,378.3 557.5,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.2,378.4 552.5,378.4 553.2,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.2,378.3 552.5,378.4 553.2,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,378.4 552.6,378.3 553.2,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.3,378.4 555.3,378.3 555.9,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.8,378.4 554.9,378.4 555.1,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.4,378.4 557.3,378.4 556.6,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.1,378.4 555.1,378.4 554.8,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.8,378.4 554.8,378.4 555.1,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.2,378.4 553.2,378.4 552.5,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,378.4 553.8,378.4 554.6,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,378.4 553.8,378.4 554.6,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,378.4 553.8,378.4 554.6,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,378.4 553.8,378.4 554.6,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.8,378.4 553.9,378.3 554.6,378.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,378.4 554.6,378.4 553.8,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.6,378.5 556.6,378.4 557.3,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.3,378.4 557.2,378.5 556.6,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.8,378.4 555.1,378.4 554.8,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.8,378.4 555.1,378.4 554.7,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,378.5 554.7,378.5 555,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.1,378.4 555,378.5 554.7,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555,378.5 553.8,378.5 554.7,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.7,378.5 553.8,378.5 554.6,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,378.4 553.8,378.5 554.6,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.8,378.5 553.8,378.4 554.6,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.2,378.5 552.5,378.5 553.2,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,378.5 552.5,378.4 553.2,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.7,378.5 556.6,378.5 557.2,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.3,378.4 555.9,378.4 555.2,378.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.4 555.9,378.4 555.2,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.9,378.4 555.8,378.5 555.2,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.2,378.5 553.2,378.5 552.5,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.2,378.5 557.1,378.5 556.7,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.5 555.2,378.5 555.8,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.8,378.5 555,378.5 553.7,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555,378.5 554.9,378.6 553.7,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.7,378.6 556.7,378.5 557.1,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.1,378.5 557,378.6 556.7,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.8,378.5 555.8,378.6 555.2,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.7,378.6 553.7,378.5 554.9,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.6 555.2,378.5 555.8,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,378.6 556.7,378.6 557,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557,378.6 556.9,378.6 556.8,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.8,378.6 556.8,378.6 556.9,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.2,378.6 552.5,378.6 553.2,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,378.6 552.5,378.5 553.2,378.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.2,378.6 553.3,378.6 552.5,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.7,378.6 554.9,378.6 553.6,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.9,378.6 554.8,378.7 553.6,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.6 555.8,378.6 555.1,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.8,378.6 555.8,378.7 555.1,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.6,378.7 553.6,378.6 554.8,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.1,378.7 555.1,378.6 555.8,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.5,378.7 553.6,378.7 553.9,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.9,378.7 553.8,378.7 553.5,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.5,378.7 553.5,378.7 553.8,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.8,378.7 555.7,378.7 555.1,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.4,378.7 552.5,378.7 553.4,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.4,378.7 552.5,378.7 553.3,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.3,378.7 552.5,378.7 553.3,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.3,378.7 552.5,378.7 553.3,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,378.7 552.5,378.6 553.3,378.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.1,378.7 555.1,378.7 555.7,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.5,378.7 553.8,378.7 553.4,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.4,378.7 553.8,378.7 552.5,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.8,378.7 553.8,378.7 552.5,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.1,378.7 555.7,378.7 555.3,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.3,378.7 555.7,378.7 555.4,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.7,378.7 555.7,378.7 555.4,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.5,378.7 555.4,378.7 555.7,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.7,378.7 555.6,378.7 555.5,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.7 555,378.7 555.2,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.3,378.7 555.2,378.7 555.1,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555,378.7 555.1,378.7 555.2,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.6,378.7 554.8,378.7 553.9,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.9,378.7 554.8,378.7 553.9,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.9,378.7 554.8,378.7 553.9,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.8,378.7 554.6,378.8 553.9,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.2,378.7 555.1,378.8 555,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 555.1,378.8 555,378.7 555.1,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554,378.8 553.9,378.7 554.6,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,378.8 552.5,378.7 553.8,378.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.8,378.7 553.7,378.8 552.5,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.6,378.8 554.4,378.8 554,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.1,378.9 554,378.8 554.4,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.4,378.8 554.3,378.9 554.1,378.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.1,378.9 554.1,378.9 554.3,378.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 554.3,378.9 554.2,378.9 554.1,378.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.6,378.9 552.5,378.9 553.7,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,378.9 552.5,378.8 553.7,378.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.5,378.9 553.6,378.9 552.6,379 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.6,378.9 553.4,379 552.6,379 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.6,379 552.6,379 553.4,379 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.4,379 553.3,379 552.6,379 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.7,379.1 552.6,379 553.3,379 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.3,379 553.3,379.1 552.7,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.7,379.1 552.7,379.1 553.3,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.7,379.1 553.3,379.1 552.9,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.3,379.1 553.2,379.1 552.9,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553,379.1 552.9,379.1 553.2,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.8,379.1 552.8,379.1 552.9,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 552.8,379.1 552.7,379.1 552.9,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 553.2,379.1 553.1,379.1 553,379.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.6,376.9 559.4,376.7 558.6,377 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.6,377 559.4,376.7 558.5,377.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.5,377.1 559.4,376.7 558.5,377.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.5,377.2 559.4,376.7 558.4,377.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.4,377.3 559.4,376.7 558.3,377.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.3,377.4 559.4,376.7 558.1,377.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.1,377.5 559.4,376.7 558,377.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558,377.6 559.4,376.7 557.9,377.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.9,377.7 559.4,376.7 557.8,377.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.8,377.8 559.4,376.7 557.7,377.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.7,377.9 559.4,376.7 557.7,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 557.7,378 559.4,376.7 558.1,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.4,376.7 557.4,380.4 558.1,378 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 556.7,380.4 558.1,378 557.4,380.4 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="558.9" y1="376.5" x2="559.5" y2="376.5"/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.9,373.2 561.9,373.2 561.8,373.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,373.2 561.8,373.2 561.9,373.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.9,373.2 562,373.3 561.7,373.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,373.3 561.5,373.3 562,373.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.5,373.3 561.7,373.2 562,373.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,373.3 562,373.3 561.5,373.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,373.4 561.5,373.3 562,373.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,373.3 562,373.4 561.4,373.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,373.4 561.3,373.4 562,373.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,373.4 561.4,373.4 562,373.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,373.4 562,373.5 561.3,373.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,373.5 561.3,373.4 562,373.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,373.5 562,373.6 561.2,373.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,373.6 561.2,373.5 562,373.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,373.6 562,373.6 561,373.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,373.7 562,373.6 561.3,373.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,373.8 562,373.6 561.4,373.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,373.8 562,373.6 561.4,373.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 562,373.6 561.9,373.8 561.4,373.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,373.8 561.4,373.8 561.9,373.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,373.8 561.9,373.8 561.4,373.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,373.8 561.9,373.8 561.4,373.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,373.9 561.9,373.8 561.4,374 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.9,373.8 561.9,374 561.4,374 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,374 561.4,374 561.9,374 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,373.9 560.8,374 561.2,373.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,373.9 560.8,374 561.2,373.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,373.9 560.8,374 561.3,373.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,373.8 560.8,374 561.3,373.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,373.8 561.3,373.8 561,373.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.8,374 561,373.7 561.3,373.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,373.9 561.1,374 560.8,374 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,374 561.9,374 561.4,374.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.9,374 561.8,374.1 561.4,374.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,374.2 561.4,374.1 561.8,374.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.9,374.2 560.5,374.3 561,374.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,374.1 560.5,374.3 561.1,374 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.5,374.3 560.8,374 561.1,374 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,374.2 561.8,374.1 561.3,374.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.8,374.1 561.7,374.3 561.3,374.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.9,374.2 560.8,374.3 560.5,374.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,374.4 561.3,374.3 561.7,374.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.2,374.4 561.7,374.3 561.2,374.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.7,374.3 561.6,374.5 561.2,374.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.5,374.6 560.2,374.6 560.6,374.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.6,374.5 560.2,374.6 560.7,374.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.7,374.4 560.2,374.6 560.8,374.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.2,374.6 560.5,374.3 560.8,374.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,374.6 561.2,374.5 561.6,374.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.6,374.5 561.4,374.6 561.1,374.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.5,374.6 560.5,374.7 560.2,374.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,374.8 561.1,374.6 561.4,374.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.4,374.6 561.3,374.8 561,374.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.4,374.9 560,374.9 560.4,374.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.4,374.8 560,374.9 560.5,374.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,374.9 560.2,374.6 560.5,374.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.9,374.9 561,374.8 561.3,374.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.3,374.8 561.1,374.9 560.9,374.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.4,374.9 560.3,374.9 560,374.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.7,375 560.9,374.9 561.1,374.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561.1,374.9 561,375.1 560.7,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.6,375.2 560.7,375 561,375.1 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.2,375.1 559.7,375.2 560.3,375 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.3,375 559.7,375.2 560.3,374.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.7,375.2 560,374.9 560.3,374.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 561,375.1 560.9,375.2 560.6,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.5,375.3 560.6,375.2 560.9,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.2,375.1 560.1,375.3 559.7,375.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.5,375.3 560.9,375.2 560.4,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.4,375.3 560.9,375.2 560.4,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.9,375.2 560.7,375.4 560.4,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.3,375.4 560.4,375.4 560.7,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,375.5 559.5,375.5 560,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,375.4 559.5,375.5 560.1,375.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,375.4 559.5,375.5 560.1,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,375.3 559.5,375.5 560.1,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.5,375.5 559.7,375.2 560.1,375.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,375.5 560,375.5 559.5,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.3,375.4 560.7,375.4 560.2,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.2,375.5 560.7,375.4 560.2,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.7,375.4 560.6,375.5 560.2,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,375.5 560.2,375.5 560.6,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,375.5 560.6,375.5 560.1,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,375.6 560.6,375.5 560.1,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.1,375.6 560.6,375.5 560,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.6,375.5 560.4,375.7 560,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.3,375.8 559.3,375.8 560.4,375.7 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.4,375.7 559.3,375.8 560,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,375.6 559.3,375.8 560,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,375.6 559.3,375.8 560,375.6 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,375.6 559.3,375.8 560,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,375.5 559.3,375.8 560,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.3,375.8 559.5,375.5 560,375.5 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560.3,375.8 560.1,375.8 559.3,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.8,376.2 559.1,376.2 559.9,376 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.9,376 559.1,376.2 560,375.9 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 560,375.9 559.1,376.2 560.1,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.1,376.2 559.3,375.8 560.1,375.8 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.8,376.2 559.7,376.3 559.1,376.2 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.5,376.4 558.9,376.5 559.6,376.4 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.6,376.4 558.9,376.5 559.7,376.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 558.9,376.5 559.1,376.2 559.7,376.3 "/>
+
+ <polygon fill="#FF0000" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 559.5,376.4 559.5,376.5 558.9,376.5 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="554.9" y1="391.1" x2="555.3" y2="390.8"/>
+ </g>
+ <rect x="545.6" y="382.3" fill="none" width="43.7" height="46.8"/>
+ <text transform="matrix(1 0 0 1 545.6143 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">D</text>
+ <text transform="matrix(1 0 0 1 546.8789 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">a</text>
+ <text transform="matrix(1 0 0 1 547.7969 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">n</text>
+ <text transform="matrix(1 0 0 1 548.8545 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">f</text>
+ <text transform="matrix(1 0 0 1 549.3887 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">o</text>
+ <text transform="matrix(1 0 0 1 550.4346 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">s</text>
+ <text transform="matrix(1 0 0 1 551.1885 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">s</text>
+ <text transform="matrix(1 0 0 1 551.9424 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 552.3457 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">C</text>
+ <text transform="matrix(1 0 0 1 553.4248 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">o</text>
+ <text transform="matrix(1 0 0 1 554.4707 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">m</text>
+ <text transform="matrix(1 0 0 1 556.0596 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">m</text>
+ <text transform="matrix(1 0 0 1 557.6484 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">e</text>
+ <text transform="matrix(1 0 0 1 558.6025 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">r</text>
+ <text transform="matrix(1 0 0 1 559.2148 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">c</text>
+ <text transform="matrix(1 0 0 1 560.0684 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">i</text>
+ <text transform="matrix(1 0 0 1 560.5137 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">a</text>
+ <text transform="matrix(1 0 0 1 561.4316 383.6406)" font-family="'Myriad-Roman'" font-size="1.9049">l</text>
+ <text transform="matrix(1 0 0 1 545.6143 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">C</text>
+ <text transform="matrix(1 0 0 1 546.6943 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">o</text>
+ <text transform="matrix(1 0 0 1 547.7402 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">m</text>
+ <text transform="matrix(1 0 0 1 549.3291 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">p</text>
+ <text transform="matrix(1 0 0 1 550.4131 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">r</text>
+ <text transform="matrix(1 0 0 1 551.0244 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">e</text>
+ <text transform="matrix(1 0 0 1 551.9785 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">s</text>
+ <text transform="matrix(1 0 0 1 552.7324 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">s</text>
+ <text transform="matrix(1 0 0 1 553.4863 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">o</text>
+ <text transform="matrix(1 0 0 1 554.5322 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">r</text>
+ <text transform="matrix(1 0 0 1 555.1553 385.9424)" font-family="'Myriad-Roman'" font-size="1.9049">s</text>
+ <text transform="matrix(1 0 0 1 545.6143 388.2441)" font-family="'Myriad-Roman'" font-size="1.9049">B</text>
+ <text transform="matrix(1 0 0 1 546.6143 388.2441)" font-family="'Myriad-Roman'" font-size="1.9049">.</text>
+ <text transform="matrix(1 0 0 1 547.0088 388.2441)" font-family="'Myriad-Roman'" font-size="1.9049">P</text>
+ <text transform="matrix(1 0 0 1 547.7559 388.2441)" font-family="'Myriad-Roman'" font-size="1.9049">.</text>
+ <text transform="matrix(1 0 0 1 548.1504 388.2441)" font-family="'Myriad-Roman'" font-size="1.9049">3</text>
+ <text transform="matrix(1 0 0 1 549.1279 388.2441)" font-family="'Myriad-Roman'" font-size="1.9049">3</text>
+ <text transform="matrix(1 0 0 1 550.1055 388.2441)" font-family="'Myriad-Roman'" font-size="1.9049">1</text>
+ <text transform="matrix(1 0 0 1 545.6143 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">F</text>
+ <text transform="matrix(1 0 0 1 546.542 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">-</text>
+ <text transform="matrix(1 0 0 1 547.127 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">0</text>
+ <text transform="matrix(1 0 0 1 548.1045 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">1</text>
+ <text transform="matrix(1 0 0 1 549.082 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">6</text>
+ <text transform="matrix(1 0 0 1 550.0596 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">0</text>
+ <text transform="matrix(1 0 0 1 551.0371 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">3</text>
+ <text transform="matrix(1 0 0 1 552.0146 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 552.3408 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">T</text>
+ <text transform="matrix(1 0 0 1 553.2012 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">r</text>
+ <text transform="matrix(1 0 0 1 553.8135 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">e</text>
+ <text transform="matrix(1 0 0 1 554.7637 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">v</text>
+ <text transform="matrix(1 0 0 1 555.6582 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">o</text>
+ <text transform="matrix(1 0 0 1 556.7041 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">u</text>
+ <text transform="matrix(1 0 0 1 557.7539 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">x</text>
+ <text transform="matrix(1 0 0 1 558.6357 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 559.0391 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">F</text>
+ <text transform="matrix(1 0 0 1 559.918 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">r</text>
+ <text transform="matrix(1 0 0 1 560.5293 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">a</text>
+ <text transform="matrix(1 0 0 1 561.4473 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">n</text>
+ <text transform="matrix(1 0 0 1 562.5049 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">c</text>
+ <text transform="matrix(1 0 0 1 563.3467 390.5459)" font-family="'Myriad-Roman'" font-size="1.9049">e</text>
+ <text transform="matrix(1 0 0 1 545.6143 392.8477)" font-family="'Myriad-Roman'" font-size="1.9049">T</text>
+ <text transform="matrix(1 0 0 1 546.4385 392.8477)" font-family="'Myriad-Roman'" font-size="1.9049">e</text>
+ <text transform="matrix(1 0 0 1 547.3926 392.8477)" font-family="'Myriad-Roman'" font-size="1.9049">l</text>
+ <text transform="matrix(1 0 0 1 547.8379 392.8477)" font-family="'Myriad-Roman'" font-size="1.9049">.</text>
+ <text transform="matrix(1 0 0 1 548.0918 392.8477)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 548.4961 392.8477)" font-family="'Myriad-Roman'" font-size="1.9049">:</text>
+ <text transform="matrix(1 0 0 1 545.6143 395.1494)" font-family="'Myriad-Roman'" font-size="1.9049">F</text>
+ <text transform="matrix(1 0 0 1 546.4541 395.1494)" font-family="'Myriad-Roman'" font-size="1.9049">a</text>
+ <text transform="matrix(1 0 0 1 547.3721 395.1494)" font-family="'Myriad-Roman'" font-size="1.9049">x</text>
+ <text transform="matrix(1 0 0 1 548.2539 395.1494)" font-family="'Myriad-Roman'" font-size="1.9049">:</text>
+ <text transform="matrix(1 0 0 1 545.6143 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">+</text>
+ <text transform="matrix(1 0 0 1 546.75 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">3</text>
+ <text transform="matrix(1 0 0 1 547.7275 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">3</text>
+ <text transform="matrix(1 0 0 1 548.7051 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 549.1084 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">(</text>
+ <text transform="matrix(1 0 0 1 549.6494 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">0</text>
+ <text transform="matrix(1 0 0 1 550.627 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">)</text>
+ <text transform="matrix(1 0 0 1 551.168 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 551.5713 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">4</text>
+ <text transform="matrix(1 0 0 1 552.5488 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 552.9521 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">7</text>
+ <text transform="matrix(1 0 0 1 553.9297 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">4</text>
+ <text transform="matrix(1 0 0 1 554.9072 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 555.3115 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">0</text>
+ <text transform="matrix(1 0 0 1 556.2891 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">0</text>
+ <text transform="matrix(1 0 0 1 557.2666 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 557.6709 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">2</text>
+ <text transform="matrix(1 0 0 1 558.6484 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">8</text>
+ <text transform="matrix(1 0 0 1 559.626 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 560.0303 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">2</text>
+ <text transform="matrix(1 0 0 1 561.0078 397.4512)" font-family="'Myriad-Roman'" font-size="1.9049">9</text>
+ <text transform="matrix(1 0 0 1 545.6143 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">+</text>
+ <text transform="matrix(1 0 0 1 546.75 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">3</text>
+ <text transform="matrix(1 0 0 1 547.7275 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">3</text>
+ <text transform="matrix(1 0 0 1 548.7051 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 549.1084 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">(</text>
+ <text transform="matrix(1 0 0 1 549.6494 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">0</text>
+ <text transform="matrix(1 0 0 1 550.627 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">)</text>
+ <text transform="matrix(1 0 0 1 551.168 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 551.5713 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">4</text>
+ <text transform="matrix(1 0 0 1 552.5488 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 552.9521 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">7</text>
+ <text transform="matrix(1 0 0 1 553.9297 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">4</text>
+ <text transform="matrix(1 0 0 1 554.9072 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 555.3115 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">0</text>
+ <text transform="matrix(1 0 0 1 556.2891 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">0</text>
+ <text transform="matrix(1 0 0 1 557.2666 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 557.6709 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">5</text>
+ <text transform="matrix(1 0 0 1 558.6484 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">2</text>
+ <text transform="matrix(1 0 0 1 559.626 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049"> </text>
+ <text transform="matrix(1 0 0 1 560.0303 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">4</text>
+ <text transform="matrix(1 0 0 1 561.0078 399.7529)" font-family="'Myriad-Roman'" font-size="1.9049">4</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="377.8" x2="540" y2="377.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="377.8" x2="505.3" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="383" x2="540" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="522.7" y1="377.8" x2="522.7" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="377.8" x2="540" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="383" x2="540" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="383" x2="442.7" y2="392.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="392.3" x2="540" y2="392.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="383" x2="540" y2="392.3"/>
+ <text transform="matrix(0.8344 0 0 1 456.3652 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">4</text>
+ <text transform="matrix(0.8344 0 0 1 458.4033 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.8344 0 0 1 459.2461 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">C</text>
+ <text transform="matrix(0.8344 0 0 1 461.5508 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">Y</text>
+ <text transform="matrix(0.8344 0 0 1 463.7002 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">L</text>
+ <text transform="matrix(0.8344 0 0 1 465.5752 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">I</text>
+ <text transform="matrix(0.8344 0 0 1 466.5254 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">N</text>
+ <text transform="matrix(0.8344 0 0 1 469.1396 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">D</text>
+ <text transform="matrix(0.8344 0 0 1 471.7861 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">R</text>
+ <text transform="matrix(0.8344 0 0 1 473.9238 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">E</text>
+ <text transform="matrix(0.8344 0 0 1 475.8779 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">S</text>
+ <text transform="matrix(0.8344 0 0 1 477.8369 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.8344 0 0 1 478.6797 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(0.8344 0 0 1 480.042 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.8344 0 0 1 480.7422 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">V</text>
+ <text transform="matrix(0.8344 0 0 1 482.959 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">E</text>
+ <text transform="matrix(0.8344 0 0 1 484.9141 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.8344 0 0 1 485.7559 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(0.8344 0 0 1 487.1191 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.8344 0 0 1 487.9609 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">B</text>
+ <text transform="matrix(0.8344 0 0 1 490.1113 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">A</text>
+ <text transform="matrix(0.8344 0 0 1 492.543 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">S</text>
+ <text transform="matrix(0.8344 0 0 1 494.502 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">S</text>
+ <text transform="matrix(0.8344 0 0 1 496.4609 389.4395)" font-family="'Myriad-Roman'" font-size="4.7622">E</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="392.3" x2="540" y2="392.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="392.3" x2="442.7" y2="401.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="401.7" x2="540" y2="401.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="392.3" x2="540" y2="401.7"/>
+ <text transform="matrix(0.7543 0 0 1 463.5107 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">4</text>
+ <text transform="matrix(0.7543 0 0 1 465.3535 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.7543 0 0 1 466.1152 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">C</text>
+ <text transform="matrix(0.7543 0 0 1 468.126 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">y</text>
+ <text transform="matrix(0.7543 0 0 1 469.8184 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">l</text>
+ <text transform="matrix(0.7543 0 0 1 470.6582 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">i</text>
+ <text transform="matrix(0.7543 0 0 1 471.499 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">n</text>
+ <text transform="matrix(0.7543 0 0 1 473.4922 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">d</text>
+ <text transform="matrix(0.7543 0 0 1 475.5186 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">e</text>
+ <text transform="matrix(0.7543 0 0 1 477.3174 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">r</text>
+ <text transform="matrix(0.7543 0 0 1 478.4922 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">s</text>
+ <text transform="matrix(0.7543 0 0 1 479.915 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.7543 0 0 1 480.6758 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(0.7543 0 0 1 481.9082 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.7543 0 0 1 482.54 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">V</text>
+ <text transform="matrix(0.7543 0 0 1 484.5449 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">E</text>
+ <text transform="matrix(0.7543 0 0 1 486.3115 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.7543 0 0 1 487.0732 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(0.7543 0 0 1 488.3057 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(0.7543 0 0 1 489.0664 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">L</text>
+ <text transform="matrix(0.7543 0 0 1 490.7119 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">o</text>
+ <text transform="matrix(0.7543 0 0 1 492.6582 398.8027)" font-family="'Myriad-Roman'" font-size="4.7622">w</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.2" y1="377.8" x2="505.3" y2="377.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.2" y1="377.8" x2="472.2" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.2" y1="383" x2="505.3" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="377.8" x2="505.3" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="372.5" x2="582.3" y2="372.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="372.5" x2="442.7" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="368.4" x2="582.3" y2="368.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="364.2" x2="582.3" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="449.7" y1="372.5" x2="449.7" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.6" y1="372.5" x2="456.6" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="481" y1="372.5" x2="481" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="372.5" x2="505.3" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="582.3" y1="372.5" x2="582.3" y2="364.2"/>
+ <text transform="matrix(0.7143 0 0 1 445.6826 367.3125)" font-family="'Myriad-Roman'" font-size="2.802">E</text>
+ <text transform="matrix(0.7619 0 0 1 451.0107 367.3125)" font-family="'Myriad-Roman'" font-size="2.802">ADA</text>
+ <text transform="matrix(0.7857 0 0 1 462.791 367.3125)" font-family="'Myriad-Roman'" font-size="2.802">23/06/05</text>
+ <text transform="matrix(0.8312 0 0 1 489.415 367.3125)" font-family="'Myriad-Roman'" font-size="2.802">J</text>
+ <text transform="matrix(0.8312 0 0 1 490.2764 367.3125)" font-family="'Myriad-Roman'" font-size="2.802">B</text>
+ <text transform="matrix(0.8312 0 0 1 491.5479 367.3125)" font-family="'Myriad-Roman'" font-size="2.802">V</text>
+ <text transform="matrix(0.8312 0 0 1 492.8477 367.3125)" font-family="'Myriad-Roman'" font-size="2.802"> </text>
+ <text transform="matrix(0.8352 0 0 1 511.1592 367.3125)" font-family="'Myriad-Roman'" font-size="2.802">DC 1020861 / 1050271 / 1050272</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="377.8" x2="540" y2="377.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="377.8" x2="505.3" y2="372.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="372.5" x2="540" y2="372.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="377.8" x2="540" y2="372.5"/>
+ <rect x="310" y="321.6" fill="none" width="128.1" height="106"/>
+ <text transform="matrix(1 0 0 1 310.0127 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">C</text>
+ <text transform="matrix(1 0 0 1 312.6606 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">O</text>
+ <text transform="matrix(1 0 0 1 315.9419 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">M</text>
+ <text transform="matrix(1 0 0 1 319.7705 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">P</text>
+ <text transform="matrix(1 0 0 1 322.3037 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">R</text>
+ <text transform="matrix(1 0 0 1 324.8662 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">E</text>
+ <text transform="matrix(1 0 0 1 327.209 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">S</text>
+ <text transform="matrix(1 0 0 1 329.5566 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">S</text>
+ <text transform="matrix(1 0 0 1 331.9043 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">O</text>
+ <text transform="matrix(1 0 0 1 335.1855 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">R</text>
+ <text transform="matrix(1 0 0 1 337.748 325.0059)" font-family="'Myriad-Roman'" font-size="4.7622">S</text>
+ <text transform="matrix(1 0 0 1 310.0127 330.7607)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 310.0127 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">M</text>
+ <text transform="matrix(1 0 0 1 313.8413 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 316.208 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 317.8413 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">M</text>
+ <text transform="matrix(1 0 0 1 321.6699 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 324.0371 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">Z</text>
+ <text transform="matrix(1 0 0 1 326.6709 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 327.6807 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">1</text>
+ <text transform="matrix(1 0 0 1 330.124 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">0</text>
+ <text transform="matrix(1 0 0 1 332.5674 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">0</text>
+ <text transform="matrix(1 0 0 1 335.0107 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">-</text>
+ <text transform="matrix(1 0 0 1 336.4727 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">3</text>
+ <text transform="matrix(1 0 0 1 338.916 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 340.5498 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">4</text>
+ <text transform="matrix(1 0 0 1 342.9932 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 344.627 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">6</text>
+ <text transform="matrix(1 0 0 1 347.0703 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 348.7041 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">7</text>
+ <text transform="matrix(1 0 0 1 351.1475 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 352.7813 336.5146)" font-family="'Myriad-Roman'" font-size="4.7622">9</text>
+ <text transform="matrix(1 0 0 1 310.0127 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">M</text>
+ <text transform="matrix(1 0 0 1 313.8413 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 316.208 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 317.8413 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">M</text>
+ <text transform="matrix(1 0 0 1 321.6699 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 324.0371 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">Z</text>
+ <text transform="matrix(1 0 0 1 326.6709 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 327.6807 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">1</text>
+ <text transform="matrix(1 0 0 1 330.124 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">2</text>
+ <text transform="matrix(1 0 0 1 332.5674 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">5</text>
+ <text transform="matrix(1 0 0 1 335.0107 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">-</text>
+ <text transform="matrix(1 0 0 1 336.4727 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">3</text>
+ <text transform="matrix(1 0 0 1 338.916 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 340.5498 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">4</text>
+ <text transform="matrix(1 0 0 1 342.9932 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 344.627 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">6</text>
+ <text transform="matrix(1 0 0 1 347.0703 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 348.7041 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">7</text>
+ <text transform="matrix(1 0 0 1 351.1475 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 352.7813 342.2695)" font-family="'Myriad-Roman'" font-size="4.7622">9</text>
+ <text transform="matrix(1 0 0 1 310.0127 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">L</text>
+ <text transform="matrix(1 0 0 1 311.8315 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 314.1982 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">Z</text>
+ <text transform="matrix(1 0 0 1 316.8315 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 317.8413 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">8</text>
+ <text transform="matrix(1 0 0 1 320.2842 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">8</text>
+ <text transform="matrix(1 0 0 1 322.7275 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">-</text>
+ <text transform="matrix(1 0 0 1 324.1895 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">3</text>
+ <text transform="matrix(1 0 0 1 326.6328 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 328.2666 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">4</text>
+ <text transform="matrix(1 0 0 1 330.71 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 332.3438 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">6</text>
+ <text transform="matrix(1 0 0 1 334.7871 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 336.4209 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">7</text>
+ <text transform="matrix(1 0 0 1 338.8643 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 340.498 348.0234)" font-family="'Myriad-Roman'" font-size="4.7622">9</text>
+ <text transform="matrix(1 0 0 1 310.0127 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">L</text>
+ <text transform="matrix(1 0 0 1 311.8315 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 314.1982 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">Z</text>
+ <text transform="matrix(1 0 0 1 316.8315 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 317.8413 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">1</text>
+ <text transform="matrix(1 0 0 1 320.2842 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">0</text>
+ <text transform="matrix(1 0 0 1 322.7275 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">0</text>
+ <text transform="matrix(1 0 0 1 325.1709 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">-</text>
+ <text transform="matrix(1 0 0 1 326.6328 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">3</text>
+ <text transform="matrix(1 0 0 1 329.0762 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 330.71 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">4</text>
+ <text transform="matrix(1 0 0 1 333.1533 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 334.7871 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">6</text>
+ <text transform="matrix(1 0 0 1 337.2305 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 338.8643 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">7</text>
+ <text transform="matrix(1 0 0 1 341.3076 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 342.9414 353.7773)" font-family="'Myriad-Roman'" font-size="4.7622">9</text>
+ <text transform="matrix(1 0 0 1 310.0127 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">N</text>
+ <text transform="matrix(1 0 0 1 313.146 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 315.5127 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">Z</text>
+ <text transform="matrix(1 0 0 1 318.146 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 319.1558 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">2</text>
+ <text transform="matrix(1 0 0 1 321.5986 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">7</text>
+ <text transform="matrix(1 0 0 1 324.042 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">1</text>
+ <text transform="matrix(1 0 0 1 326.4854 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">-</text>
+ <text transform="matrix(1 0 0 1 327.9473 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">3</text>
+ <text transform="matrix(1 0 0 1 330.3906 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 332.0244 359.5322)" font-family="'Myriad-Roman'" font-size="4.7622">4</text>
+ <text transform="matrix(1 0 0 1 310.0127 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">N</text>
+ <text transform="matrix(1 0 0 1 313.146 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 315.5127 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">Z</text>
+ <text transform="matrix(1 0 0 1 318.146 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 319.1558 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">2</text>
+ <text transform="matrix(1 0 0 1 321.5986 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">1</text>
+ <text transform="matrix(1 0 0 1 324.042 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">5</text>
+ <text transform="matrix(1 0 0 1 326.4854 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">-</text>
+ <text transform="matrix(1 0 0 1 327.9473 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">3</text>
+ <text transform="matrix(1 0 0 1 330.3906 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 332.0244 365.2861)" font-family="'Myriad-Roman'" font-size="4.7622">4</text>
+ <text transform="matrix(1 0 0 1 310.0127 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">V</text>
+ <text transform="matrix(1 0 0 1 312.6699 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 315.0366 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">Z</text>
+ <text transform="matrix(1 0 0 1 317.6699 371.041)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 318.6797 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">1</text>
+ <text transform="matrix(1 0 0 1 321.1226 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">7</text>
+ <text transform="matrix(1 0 0 1 323.5654 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">1</text>
+ <text transform="matrix(1 0 0 1 326.0088 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">-</text>
+ <text transform="matrix(1 0 0 1 327.4707 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">G</text>
+ <text transform="matrix(1 0 0 1 330.5469 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 332.1807 371.041)" font-family="'Myriad-Roman'" font-size="4.7622">H</text>
+ <text transform="matrix(1 0 0 1 310.0127 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">V</text>
+ <text transform="matrix(1 0 0 1 312.6699 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 315.0366 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">Z</text>
+ <text transform="matrix(1 0 0 1 317.6699 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 318.6797 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">2</text>
+ <text transform="matrix(1 0 0 1 321.1226 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">1</text>
+ <text transform="matrix(1 0 0 1 323.5654 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">5</text>
+ <text transform="matrix(1 0 0 1 326.0088 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">-</text>
+ <text transform="matrix(1 0 0 1 327.4707 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">G</text>
+ <text transform="matrix(1 0 0 1 330.5469 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">/</text>
+ <text transform="matrix(1 0 0 1 332.1807 376.7949)" font-family="'Myriad-Roman'" font-size="4.7622">H</text>
+ <rect x="242.6" y="150.6" fill="none" width="77.7" height="14.1"/>
+ <text transform="matrix(1 0 0 1 242.627 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 245.252 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">I</text>
+ <text transform="matrix(1 0 0 1 246.1626 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">L</text>
+ <text transform="matrix(1 0 0 1 247.9609 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 248.7686 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 250.6431 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">Q</text>
+ <text transform="matrix(1 0 0 1 253.2681 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">U</text>
+ <text transform="matrix(1 0 0 1 255.5996 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 257.9312 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">L</text>
+ <text transform="matrix(1 0 0 1 259.7295 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">I</text>
+ <text transform="matrix(1 0 0 1 260.6401 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+ <text transform="matrix(1 0 0 1 262.5186 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 264.5493 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 266.4429 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">I</text>
+ <text transform="matrix(1 0 0 1 267.3535 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 269.9785 153.2739)" font-family="'Myriad-Roman'" font-size="3.8098">N</text>
+ <text transform="matrix(1 0 0 1 242.627 157.8774)" font-family="'Myriad-Roman'" font-size="3.8098">3</text>
+ <text transform="matrix(1 0 0 1 244.5811 157.8774)" font-family="'Myriad-Roman'" font-size="3.8098">/</text>
+ <text transform="matrix(1 0 0 1 245.8877 157.8774)" font-family="'Myriad-Roman'" font-size="3.8098">8</text>
+ <text transform="matrix(1 0 0 1 247.8418 157.8774)" font-family="'Myriad-Roman'" font-size="3.8098">&quot;</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="229.2" y1="183.3" x2="237.8" y2="152.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="237.8" y1="152.6" x2="242.6" y2="152.6"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="229.1" cy="183.7" r="0.4"/>
+ <rect x="518.6" y="158.9" fill="none" width="60.1" height="14.1"/>
+ <text transform="matrix(1 0 0 1 518.6494 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 520.543 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">H</text>
+ <text transform="matrix(1 0 0 1 523.0273 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 525.0771 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 526.9512 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 529.2832 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">D</text>
+ <text transform="matrix(1 0 0 1 531.8203 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 533.6943 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">D</text>
+ <text transform="matrix(1 0 0 1 536.2314 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 537.0391 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 539.6641 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">I</text>
+ <text transform="matrix(1 0 0 1 540.5742 161.6401)" font-family="'Myriad-Roman'" font-size="3.8098">L</text>
+ <text transform="matrix(1 0 0 1 518.6494 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+ <text transform="matrix(1 0 0 1 520.5273 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">I</text>
+ <text transform="matrix(1 0 0 1 521.4375 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">G</text>
+ <text transform="matrix(1 0 0 1 523.8984 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">H</text>
+ <text transform="matrix(1 0 0 1 526.3828 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 528.2764 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 529.084 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">G</text>
+ <text transform="matrix(1 0 0 1 531.5449 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">L</text>
+ <text transform="matrix(1 0 0 1 533.3506 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 535.6826 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+ <text transform="matrix(1 0 0 1 537.5605 166.2437)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="506.3" y1="182.7" x2="513.4" y2="160.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="513.4" y1="160.9" x2="518.6" y2="160.9"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="506.2" cy="183.1" r="0.4"/>
+ <rect x="351.5" y="190.4" fill="none" width="40.6" height="14.1"/>
+ <text transform="matrix(1 0 0 1 351.4824 193.0718)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+ <text transform="matrix(1 0 0 1 353.3604 193.0718)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 355.5703 193.0718)" font-family="'Myriad-Roman'" font-size="3.8098">H</text>
+ <text transform="matrix(1 0 0 1 358.0547 193.0718)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 360.123 193.0718)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 362.4551 193.0718)" font-family="'Myriad-Roman'" font-size="3.8098">D</text>
+ <text transform="matrix(1 0 0 1 364.9922 193.0718)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 366.8662 193.0718)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 351.4824 197.6753)" font-family="'Myriad-Roman'" font-size="3.8098">1</text>
+ <text transform="matrix(1 0 0 1 353.4365 197.6753)" font-family="'Myriad-Roman'" font-size="3.8098">/</text>
+ <text transform="matrix(1 0 0 1 354.7432 197.6753)" font-family="'Myriad-Roman'" font-size="3.8098">4</text>
+ <text transform="matrix(1 0 0 1 356.6973 197.6753)" font-family="'Myriad-Roman'" font-size="3.8098">&quot;</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="403.5" y1="179.3" x2="377.8" y2="192.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.8" y1="192.4" x2="374.2" y2="192.4"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="403.9" cy="179.1" r="0.4"/>
+ <rect x="292.9" y="83.7" fill="none" width="81.3" height="14.1"/>
+ <text transform="matrix(1 0 0 1 292.8706 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+ <text transform="matrix(1 0 0 1 294.749 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">U</text>
+ <text transform="matrix(1 0 0 1 297.2139 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 299.4233 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 301.3169 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">I</text>
+ <text transform="matrix(1 0 0 1 302.2275 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 304.8525 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">N</text>
+ <text transform="matrix(1 0 0 1 307.3594 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 308.167 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 310.228 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 312.7466 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 314.3545 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 316.686 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">L</text>
+ <text transform="matrix(1 0 0 1 318.3354 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 320.9604 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 323.1709 86.4414)" font-family="'Myriad-Roman'" font-size="3.8098">K</text>
+ <text transform="matrix(1 0 0 1 292.8706 91.0449)" font-family="'Myriad-Roman'" font-size="3.8098">1</text>
+ <text transform="matrix(1 0 0 1 294.8252 91.0449)" font-family="'Myriad-Roman'" font-size="3.8098">&quot;</text>
+ <text transform="matrix(1 0 0 1 296.1089 91.0449)" font-family="'Myriad-Roman'" font-size="3.8098">3</text>
+ <text transform="matrix(1 0 0 1 298.0635 91.0449)" font-family="'Myriad-Roman'" font-size="3.8098">/</text>
+ <text transform="matrix(1 0 0 1 299.3701 91.0449)" font-family="'Myriad-Roman'" font-size="3.8098">4</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="367.5" y1="135.9" x2="342.4" y2="85.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="342.4" y1="85.7" x2="338.2" y2="85.7"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="367.7" cy="136.3" r="0.4"/>
+ <rect x="285.2" y="120" fill="none" width="91.9" height="14.1"/>
+ <text transform="matrix(1 0 0 1 285.2358 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">D</text>
+ <text transform="matrix(1 0 0 1 287.7729 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">I</text>
+ <text transform="matrix(1 0 0 1 288.6836 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+ <text transform="matrix(1 0 0 1 290.562 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 292.7715 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">H</text>
+ <text transform="matrix(1 0 0 1 295.2554 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 297.5869 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 299.6479 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">G</text>
+ <text transform="matrix(1 0 0 1 302.1089 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 303.9834 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 304.791 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 306.8525 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 309.3706 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 310.9785 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 313.3101 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">L</text>
+ <text transform="matrix(1 0 0 1 314.96 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 317.585 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 319.7944 122.7295)" font-family="'Myriad-Roman'" font-size="3.8098">K</text>
+ <text transform="matrix(1 0 0 1 285.2358 127.333)" font-family="'Myriad-Roman'" font-size="3.8098">1</text>
+ <text transform="matrix(1 0 0 1 287.1904 127.333)" font-family="'Myriad-Roman'" font-size="3.8098">&quot;</text>
+ <text transform="matrix(1 0 0 1 288.4741 127.333)" font-family="'Myriad-Roman'" font-size="3.8098">1</text>
+ <text transform="matrix(1 0 0 1 290.4287 127.333)" font-family="'Myriad-Roman'" font-size="3.8098">/</text>
+ <text transform="matrix(1 0 0 1 291.7354 127.333)" font-family="'Myriad-Roman'" font-size="3.8098">4</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="367.8" y1="174.8" x2="341.3" y2="122"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="341.3" y1="122" x2="336.3" y2="122"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="368" cy="175.2" r="0.4"/>
+ <rect x="239.3" y="254.4" fill="none" width="83" height="14.1"/>
+ <text transform="matrix(1 0 0 1 239.3398 257.1348)" font-family="'Myriad-Roman'" font-size="3.8098">P</text>
+ <text transform="matrix(1 0 0 1 241.3667 257.1348)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 243.1572 257.1348)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 239.3398 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 241.5493 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 243.6182 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 245.9497 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">N</text>
+ <text transform="matrix(1 0 0 1 248.4565 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">K</text>
+ <text transform="matrix(1 0 0 1 250.4375 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 252.6626 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 254.9941 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+ <text transform="matrix(1 0 0 1 256.8726 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 258.7471 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 259.5547 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">H</text>
+ <text transform="matrix(1 0 0 1 262.0386 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 263.9131 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 265.9434 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 267.8369 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 269.7114 261.7383)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="220.9" y1="296.7" x2="234.3" y2="256.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="234.3" y1="256.4" x2="239.3" y2="256.4"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="220.7" cy="297.1" r="0.4"/>
+ <text transform="matrix(1 0 0 1 490.9336 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">B</text>
+ <text transform="matrix(1 0 0 1 492.998 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 495.623 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">L</text>
+ <text transform="matrix(1 0 0 1 497.0791 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 498.9717 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 499.7793 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">H</text>
+ <text transform="matrix(1 0 0 1 502.2637 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 503.0713 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">M</text>
+ <text transform="matrix(1 0 0 1 506.1338 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">1</text>
+ <text transform="matrix(1 0 0 1 508.0889 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">2</text>
+ <text transform="matrix(1 0 0 1 510.043 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">-</text>
+ <text transform="matrix(1 0 0 1 511.2129 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">5</text>
+ <text transform="matrix(1 0 0 1 513.167 290.8535)" font-family="'Myriad-Roman'" font-size="3.8098">0</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="482.1" y1="310.8" x2="489.3" y2="289.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="489.3" y1="289.4" x2="490.9" y2="289.4"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="482" cy="311.2" r="0.4"/>
+ <rect x="477.9" y="265.6" fill="none" width="164.3" height="14.1"/>
+ <text transform="matrix(1 0 0 1 477.8799 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">G</text>
+ <text transform="matrix(1 0 0 1 480.3408 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 482.4023 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 485.0273 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">M</text>
+ <text transform="matrix(1 0 0 1 488.0908 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">M</text>
+ <text transform="matrix(1 0 0 1 491.1533 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 493.0273 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 494.9209 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 495.7285 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 497.8467 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 500.4717 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">M</text>
+ <text transform="matrix(1 0 0 1 503.5342 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">P</text>
+ <text transform="matrix(1 0 0 1 505.5605 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 507.6104 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 509.4844 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+ <text transform="matrix(1 0 0 1 511.3623 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">S</text>
+ <text transform="matrix(1 0 0 1 513.2402 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">I</text>
+ <text transform="matrix(1 0 0 1 514.1504 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 516.7754 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">N</text>
+ <text transform="matrix(1 0 0 1 519.2822 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 520.0898 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">N</text>
+ <text transform="matrix(1 0 0 1 522.5967 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 525.1152 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">T</text>
+ <text transform="matrix(1 0 0 1 527.0088 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 527.8164 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">I</text>
+ <text transform="matrix(1 0 0 1 528.7266 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">N</text>
+ <text transform="matrix(1 0 0 1 531.2334 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">C</text>
+ <text transform="matrix(1 0 0 1 533.4434 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">L</text>
+ <text transform="matrix(1 0 0 1 535.1035 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">U</text>
+ <text transform="matrix(1 0 0 1 537.5684 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">D</text>
+ <text transform="matrix(1 0 0 1 540.1055 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">E</text>
+ <text transform="matrix(1 0 0 1 541.9795 268.2754)" font-family="'Myriad-Roman'" font-size="3.8098">D</text>
+ <text transform="matrix(1 0 0 1 477.8799 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098">A</text>
+ <text transform="matrix(1 0 0 1 480.2119 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098">R</text>
+ <text transform="matrix(1 0 0 1 482.2734 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098">O</text>
+ <text transform="matrix(1 0 0 1 484.8984 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098">U</text>
+ <text transform="matrix(1 0 0 1 487.3633 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098">N</text>
+ <text transform="matrix(1 0 0 1 489.8701 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098">D</text>
+ <text transform="matrix(1 0 0 1 492.4072 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 493.2148 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098">1</text>
+ <text transform="matrix(1 0 0 1 495.1689 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098"> </text>
+ <text transform="matrix(1 0 0 1 495.9766 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098">M</text>
+ <text transform="matrix(1 0 0 1 499.04 272.8789)" font-family="'Myriad-Roman'" font-size="3.8098">M</text>
+ <text transform="matrix(1 0 0 1 498.0283 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">S</text>
+ <text transform="matrix(1 0 0 1 500.376 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">I</text>
+ <text transform="matrix(1 0 0 1 501.5146 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">L</text>
+ <text transform="matrix(1 0 0 1 503.7617 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">E</text>
+ <text transform="matrix(1 0 0 1 506.1045 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">N</text>
+ <text transform="matrix(1 0 0 1 509.2383 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">T</text>
+ <text transform="matrix(1 0 0 1 511.6055 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622"> </text>
+ <text transform="matrix(1 0 0 1 512.6143 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">B</text>
+ <text transform="matrix(1 0 0 1 515.1953 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">L</text>
+ <text transform="matrix(1 0 0 1 517.2578 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">O</text>
+ <text transform="matrix(1 0 0 1 520.5391 261.5928)" font-family="'Myriad-Roman'" font-size="4.7622">C</text>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="0.5" y1="7.6" x2="7.6" y2="0.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="0.5" y1="0.5" x2="0.5" y2="7.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="7.6" y1="0.5" x2="0.5" y2="0.5"/>
+ <polygon fill-rule="evenodd" stroke="#000000" points="7.6,0.5 0.5,0.5 0.5,7.6 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="0.5" y1="414.4" x2="7.6" y2="421.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="0.5" y1="421.4" x2="0.5" y2="414.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="7.6" y1="421.4" x2="0.5" y2="421.4"/>
+ <polygon fill-rule="evenodd" stroke="#000000" points="7.6,421.4 0.5,421.4 0.5,414.4 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="0.5" y1="0.5" x2="0.5" y2="421.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="14.7" y1="14.7" x2="14.7" y2="407.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="38.1" y1="407.3" x2="38.1" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="38.1" y1="14.7" x2="38.1" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="75.3" y1="407.3" x2="75.3" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="75.3" y1="14.7" x2="75.3" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="0.5" y1="421.4" x2="596.5" y2="421.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="589.4" y1="421.4" x2="596.5" y2="421.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="596.5" y1="421.4" x2="596.5" y2="414.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="596.5" y1="414.4" x2="589.4" y2="421.4"/>
+ <polygon fill-rule="evenodd" stroke="#000000" points="596.5,421.4 596.5,414.4 589.4,421.4 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="112.5" y1="407.3" x2="112.5" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="112.5" y1="14.7" x2="112.5" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="227.6" y1="409.4" x2="369.4" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="14.7" y1="407.3" x2="582.3" y2="407.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="539.8" y1="407.1" x2="534.5" y2="407.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="301.3" y1="406.6" x2="295.7" y2="406.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="295.7" y1="406.6" x2="298.5" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="298.5" y1="409.4" x2="301.3" y2="406.6"/>
+ <polygon fill-rule="evenodd" stroke="#000000" points="295.7,406.6 298.5,409.4 301.3,406.6 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="581.2" y1="406.1" x2="541.1" y2="406.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="534.5" y1="401.9" x2="539.8" y2="401.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="401.7" x2="540" y2="401.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="541.1" y1="398.4" x2="581.2" y2="398.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="397.5" x2="582.3" y2="397.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="392.3" x2="540" y2="392.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="383" x2="540" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="377.8" x2="540" y2="377.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="149.7" y1="407.3" x2="149.7" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="149.7" y1="14.7" x2="149.7" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="372.5" x2="582.3" y2="372.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="585.9" y1="368.8" x2="582.3" y2="368.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="11.1" y1="368.8" x2="14.7" y2="368.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="368.4" x2="582.3" y2="368.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="364.2" x2="582.3" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="499.2" y1="336.6" x2="484.4" y2="336.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.4" y1="334.5" x2="499.2" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.4" y1="336.6" x2="484.4" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="499.2" y1="334.5" x2="499.2" y2="336.6"/>
+ <g>
+ <image width="15" height="3" xlink:href="1C2EC147.png" transform="matrix(1 0 0 1 484.3076 333.7617)">
+ </image>
+ <path fill-rule="evenodd" d="M484.9,336.6v-2.1l-0.5,0.5h14.8l-0.5-0.5v2.1l0.5-0.5h-14.8L484.9,336.6z M499.7,336.6v-2.1V334
+ h-0.5h-14.8h-0.5v0.5v2.1v0.5h0.5h14.8h0.5C499.7,337.1,499.7,336.6,499.7,336.6z"/>
+ </g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="474.7" y1="336.6" x2="449.6" y2="336.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="474.7" y1="334.5" x2="449.6" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="449.6" y1="336.6" x2="449.6" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="474.7" y1="336.6" x2="474.7" y2="334.5"/>
+ <g>
+ <image width="26" height="3" xlink:href="1C2EC148.png" transform="matrix(1 0 0 1 449.3076 333.7617)">
+ </image>
+ <path fill-rule="evenodd" d="M450.1,336.6v-2.1l-0.5,0.5h25.1v-1h-25.1l0,1l25.1,2.1l0.5,0v-0.5v-2.1h-1v2.1l0.5-0.5h-25.1
+ L450.1,336.6z M475.2,336.6v-2.1h-1v2.1l0.5-0.5l-25.1-2.1l0,1h25.1v-1h-25.1h-0.5v0.5v2.1v0.5h0.5h25.1h0.5V336.6z"/>
+ </g>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="186.9" y1="407.3" x2="186.9" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="186.9" y1="14.7" x2="186.9" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="585.9" y1="316.2" x2="582.3" y2="316.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="11.1" y1="316.2" x2="14.7" y2="316.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="224.1" y1="407.3" x2="224.1" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="224.1" y1="14.7" x2="224.1" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="227.6" y1="407.3" x2="227.6" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="234.7" y1="407.3" x2="234.7" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="298.5" y1="413.6" x2="295.7" y2="406.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="241.8" y1="407.3" x2="241.8" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="248.9" y1="407.3" x2="248.9" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="256" y1="407.3" x2="256" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="585.9" y1="263.6" x2="582.3" y2="263.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="11.1" y1="263.6" x2="14.7" y2="263.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="261.3" y1="14.7" x2="261.3" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="263.1" y1="407.3" x2="263.1" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="270.1" y1="407.3" x2="270.1" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="277.2" y1="407.3" x2="277.2" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="284.3" y1="407.3" x2="284.3" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="291.4" y1="407.3" x2="291.4" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="298.5" y1="405.1" x2="298.5" y2="421.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="298.5" y1="14.7" x2="298.5" y2="0.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="14.7" y1="211" x2="0.5" y2="211"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="582.3" y1="211" x2="596.5" y2="211"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="305.6" y1="407.3" x2="305.6" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="312.7" y1="407.3" x2="312.7" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="319.8" y1="407.3" x2="319.8" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="326.8" y1="407.3" x2="326.8" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="333.9" y1="407.3" x2="333.9" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="335.7" y1="14.7" x2="335.7" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="341" y1="407.3" x2="341" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="348.1" y1="407.3" x2="348.1" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="355.2" y1="407.3" x2="355.2" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="362.3" y1="407.3" x2="362.3" y2="409.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="585.9" y1="158.4" x2="582.3" y2="158.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="11.1" y1="158.4" x2="14.7" y2="158.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="369.4" y1="407.3" x2="369.4" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="372.9" y1="407.3" x2="372.9" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="372.9" y1="14.7" x2="372.9" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="301.3" y1="406.6" x2="298.5" y2="413.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="585.9" y1="105.7" x2="582.3" y2="105.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="11.1" y1="105.7" x2="14.7" y2="105.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="410.1" y1="407.3" x2="410.1" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="410.1" y1="14.7" x2="410.1" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.7" y1="407.3" x2="442.7" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="447.3" y1="407.3" x2="447.3" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="447.3" y1="14.7" x2="447.3" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="449.7" y1="372.5" x2="449.7" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.6" y1="364.2" x2="456.6" y2="372.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="585.9" y1="53.1" x2="582.3" y2="53.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="11.1" y1="53.1" x2="14.7" y2="53.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.2" y1="377.8" x2="472.2" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="481" y1="364.2" x2="481" y2="372.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.5" y1="407.3" x2="484.5" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.5" y1="14.7" x2="484.5" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.3" y1="383" x2="505.3" y2="364.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="582.3" y1="14.7" x2="14.7" y2="14.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="0.5" y1="0.5" x2="596.5" y2="0.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="589.4" y1="0.5" x2="596.5" y2="0.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="596.5" y1="0.5" x2="596.5" y2="7.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="596.5" y1="7.6" x2="589.4" y2="0.5"/>
+ <polygon fill-rule="evenodd" stroke="#000000" points="596.5,0.5 596.5,7.6 589.4,0.5 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="521.7" y1="407.3" x2="521.7" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="521.7" y1="14.7" x2="521.7" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="522.7" y1="377.8" x2="522.7" y2="383"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="534.3" y1="407.3" x2="534.3" y2="401.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="534.5" y1="407.1" x2="534.5" y2="401.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="539.8" y1="401.9" x2="539.8" y2="407.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="540" y1="407.3" x2="540" y2="372.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="541.1" y1="406.1" x2="541.1" y2="398.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="558.9" y1="407.3" x2="558.9" y2="410.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="558.9" y1="14.7" x2="558.9" y2="11.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="581.2" y1="406.1" x2="581.2" y2="398.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="582.3" y1="407.3" x2="582.3" y2="14.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="596.5" y1="421.4" x2="596.5" y2="0.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="109.6" y1="221.9" x2="129.8" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="196.9" y1="221.9" x2="217.1" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="197.5" y1="213.2" x2="196.5" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="217.1" y1="218.3" x2="196.9" y2="218.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="129.8" y1="218.3" x2="109.6" y2="218.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="217.1" y1="217" x2="196.9" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="129.8" y1="217" x2="109.6" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="217.1" y1="215.1" x2="215.9" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="215.9" y1="215.1" x2="211.9" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="200.9" y1="215.1" x2="190.7" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="136" y1="215.1" x2="125.7" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="125.7" y1="215.1" x2="114.7" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="114.7" y1="215.1" x2="110.8" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="109.6" y1="215.1" x2="110.8" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="200.9" y1="215.1" x2="211.9" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="215.9" y1="214.1" x2="198.7" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="128" y1="214.1" x2="110.8" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="114.6" y1="213.4" x2="124.7" y2="213.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="202" y1="213.4" x2="212" y2="213.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="196.5" y1="213.3" x2="189.1" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="130.1" y1="213.3" x2="137.6" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="214.9" y1="213.2" x2="197.7" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="111.8" y1="213.2" x2="128.9" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="129.2" y1="213.2" x2="130.1" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.2" y1="157.2" x2="81.2" y2="142.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.4" y1="139.2" x2="81.4" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.5" y1="139.2" x2="81.5" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.8" y1="134.6" x2="81.8" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.8" y1="141.5" x2="81.8" y2="157.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="135.2" x2="82.2" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="141.5" x2="82.2" y2="157.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="83" y1="139.2" x2="83" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="84.9" y1="161.3" x2="84.9" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="84.9" y1="139.2" x2="84.9" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="126.5" x2="85.3" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="141.5" x2="85.3" y2="165.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.7" y1="139.2" x2="85.7" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="86.2" y1="125.5" x2="86.2" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="86.2" y1="141.5" x2="86.2" y2="166.9"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 233.2,190.1 233.2,190.1 233.3,190.1 233.3,190 233.4,190 233.5,190 233.5,189.9 233.6,189.9 233.6,189.8 233.7,189.7 233.7,189.7
+ 233.8,189.6 233.8,189.5 233.8,189.4 233.9,189.3 233.9,189.2 234,189.1 234,189 234,188.9 234.1,188.8 234.1,188.6 234.1,188.5
+ 234.1,188.3 234.2,188.2 234.2,188.1 234.2,187.9 234.2,187.8 234.2,187.6 234.2,187.5 234.3,187.3 234.3,187.2 234.3,187
+ 234.3,186.8 234.3,186.7 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="231.4" y1="190.5" x2="233.2" y2="190.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="193.6" y1="200.4" x2="194.6" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="199.5" y1="207.9" x2="197.5" y2="207.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="218.6" y1="207.8" x2="214.3" y2="207.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="200" y1="207.8" x2="198.3" y2="207.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="114.1" y1="200.3" x2="125.3" y2="204.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="159.1" x2="84.9" y2="163.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="157.2" x2="84.9" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="87" y1="156.2" x2="87" y2="151.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="88.2" y1="166.9" x2="88.2" y2="158.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="88.2" y1="149.8" x2="88.2" y2="125.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="148.5" y1="202.2" x2="149.8" y2="202.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.9" y1="200.5" x2="214.1" y2="200.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="209.2" y1="200.5" x2="194.6" y2="200.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="108.9" y1="200.5" x2="113.7" y2="200.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="114.7" y1="200.5" x2="132" y2="200.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="133.1" y1="200.5" x2="141.4" y2="200.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="157.4" y1="200.5" x2="193.5" y2="200.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="133.1" y1="200.4" x2="132.1" y2="200.3"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 141.6,200 142.3,200.5 143.1,200.9 143.8,201.2 144.6,201.5 145.4,201.8 146.2,202 147,202.1 147.9,202.2 148.5,202.2 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="137.3" y1="204.7" x2="133.1" y2="200.4"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="6.603435e-002" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 101.9,130.3 101.9,130.3 101.9,130.2 101.9,130.1 101.9,130 101.9,129.9 101.9,129.8 101.8,129.7 101.8,129.6 101.8,129.5
+ 101.8,129.4 101.8,129.4 101.7,129.3 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="99.3" y1="117.7" x2="99.3" y2="121.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="99.6" y1="131.5" x2="99.6" y2="165.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="100.2" y1="141.1" x2="100.2" y2="140"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="100.7" y1="141.1" x2="100.7" y2="140"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101" y1="63.5" x2="101" y2="117.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101.3" y1="139.4" x2="101.3" y2="139.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101.4" y1="128.6" x2="101.4" y2="128"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101.9" y1="125.2" x2="101.9" y2="192.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101.3" y1="139.9" x2="101.3" y2="141.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="133.3" x2="84.9" y2="129.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="135.2" x2="84.9" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="49.1" x2="158.9" y2="50.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="49.4" x2="158.9" y2="51.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="146.8" y1="195.2" x2="147.2" y2="195.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="144.2" y1="194.3" x2="148.7" y2="194.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="150.4" y1="193" x2="150.9" y2="193"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="227.1" y1="190.5" x2="231.4" y2="190.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.9" y1="189.5" x2="223.7" y2="189.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.4" y1="189.4" x2="152.9" y2="189.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.5" y1="188.9" x2="225.9" y2="188.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="214.9" y1="213.2" x2="215.3" y2="213.3"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 140.5,199.1 141,199.5 141.6,200 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="125.3" y1="204.5" x2="128.9" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="109.6" y1="215.1" x2="109.6" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="109.6" y1="218.3" x2="109.6" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101.9" y1="187.4" x2="139.9" y2="187.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="154.7" y1="187.4" x2="221" y2="187.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.4" y1="186.8" x2="152.9" y2="186.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="229.7" y1="186.7" x2="226.5" y2="186.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.5" y1="184.4" x2="225.9" y2="184.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.9" y1="183.8" x2="223.7" y2="183.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="150.4" y1="183.2" x2="150.9" y2="183.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="227.1" y1="182.8" x2="231.4" y2="182.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="144.2" y1="181.9" x2="148.7" y2="181.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="146.8" y1="181" x2="147.2" y2="181"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="110.8" y1="215.1" x2="110.8" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="113.6" y1="215.1" x2="113.6" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="114.6" y1="213.4" x2="114.6" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="53.6" x2="161.8" y2="51.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="213" y1="200.4" x2="212.6" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="124.7" y1="213.4" x2="124.7" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="99.6" y1="165.4" x2="88.2" y2="165.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="86.2" y1="166.9" x2="88.2" y2="166.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="231.4" y1="182.8" x2="233.2" y2="183.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="128" y1="214.1" x2="128" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="129.8" y1="215.1" x2="129.8" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="129.8" y1="218.3" x2="129.8" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="111.4" y1="213.3" x2="113.7" y2="200.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="111.8" y1="213.2" x2="114.1" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="161.3" x2="88.2" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="161.3" x2="84.9" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101.9" y1="160.9" x2="88.2" y2="160.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.8" y1="157.2" x2="81.2" y2="157.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.9" y1="186.8" x2="150.9" y2="183.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="137.6" y1="213.3" x2="137.3" y2="204.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="132.1" y1="200.3" x2="129.2" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="133.1" y1="200.4" x2="130.1" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="98.3" y1="141.5" x2="81.4" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="100.3" y1="141.1" x2="100.7" y2="141.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="100.2" y1="141.1" x2="100.3" y2="141.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="100.7" y1="141" x2="101.9" y2="141"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="100.7" y1="140.1" x2="101.9" y2="140.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="100.3" y1="140" x2="100.7" y2="140"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="100.2" y1="140" x2="100.3" y2="140"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="98.3" y1="139.2" x2="81.4" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101.9" y1="131.5" x2="88.2" y2="131.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.2" y1="131.1" x2="84.9" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="131.1" x2="85.2" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="131.1" x2="88.2" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="158.9" y1="70.1" x2="158.9" y2="58.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="159.4" y1="57.6" x2="159.4" y2="59.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="49.4" x2="160.7" y2="49.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="161.6" y1="57.6" x2="161.6" y2="58.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="165.1" y1="57.6" x2="165.1" y2="58.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="166" y1="49.4" x2="166" y2="49.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="158.9" y1="50.7" x2="158.9" y2="58.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="86.2" y1="125.5" x2="88.2" y2="125.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="101.4" y1="128" x2="100.9" y2="128"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="98.6" y1="127" x2="88.2" y2="127"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.9" y1="124.6" x2="101.8" y2="124.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.6" y1="123" x2="100" y2="123"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.3" y1="57.6" x2="167.3" y2="59.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.8" y1="70.1" x2="167.8" y2="58.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.8" y1="58.2" x2="167.8" y2="50.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="99.3" y1="121.5" x2="227.4" y2="121.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="99.3" y1="117.7" x2="227.4" y2="117.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.9" y1="189.4" x2="150.9" y2="193"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="196.5" y1="213.3" x2="193.6" y2="200.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="197.5" y1="213.2" x2="194.6" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="196.9" y1="215.1" x2="196.9" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="196.9" y1="218.3" x2="196.9" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="198.7" y1="214.1" x2="198.7" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="189.4" y1="204.7" x2="189.1" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.9" y1="190.1" x2="227.1" y2="190.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="202" y1="213.4" x2="202" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="212.6" y1="200.3" x2="214.9" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="213" y1="200.4" x2="215.3" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="212" y1="213.4" x2="212" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="213.1" y1="215.1" x2="213.1" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="113.7" y1="200.4" x2="114.1" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="164.8" y1="51.9" x2="166" y2="53.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="215.9" y1="215.1" x2="215.9" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="217.1" y1="215.1" x2="217.1" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="217.1" y1="218.3" x2="217.1" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="221" y1="187.4" x2="221" y2="200.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="111.8" y1="213.2" x2="111.4" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="158.9" y1="70.1" x2="167.8" y2="70.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.6" y1="189.2" x2="226.4" y2="188.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.7" y1="63.5" x2="225.7" y2="117.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.9" y1="124.6" x2="225.9" y2="183.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.9" y1="189.5" x2="225.9" y2="200.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="227.4" y1="117.7" x2="227.4" y2="121.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="197.7" y1="213.2" x2="201.3" y2="204.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="193.6" y1="200.4" x2="189.4" y2="204.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="158.9" y1="63.5" x2="101" y2="63.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.8" y1="63.5" x2="225.7" y2="63.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.8" y1="51.1" x2="166" y2="49.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.8" y1="50.7" x2="166" y2="49.1"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 234.3,186.7 234.3,186.5 234.3,186.4 234.3,186.2 234.3,186.1 234.2,185.9 234.2,185.7 234.2,185.6 234.2,185.4 234.2,185.3
+ 234.2,185.1 234.1,185 234.1,184.9 234.1,184.7 234.1,184.6 234,184.5 234,184.3 234,184.2 233.9,184.1 233.9,184 233.8,183.9
+ 233.8,183.8 233.7,183.8 233.7,183.7 233.7,183.6 233.6,183.6 233.6,183.5 233.5,183.5 233.5,183.4 233.4,183.4 233.3,183.3
+ 233.3,183.3 233.2,183.3 233.2,183.3 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.4" y1="185.3" x2="226.6" y2="184.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="164.9" y1="51.9" x2="161.8" y2="51.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="158.9" y1="51.9" x2="108" y2="51.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.8" y1="51.9" x2="218.7" y2="51.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.9" y1="183.2" x2="227.1" y2="182.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="201.3" y1="204.5" x2="212.6" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="166" y1="49.4" x2="160.7" y2="49.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="49.1" x2="166" y2="49.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="476.4" y1="213.2" x2="475.4" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="388.4" y1="221.9" x2="408.7" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.8" y1="221.9" x2="496" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="496" y1="218.3" x2="475.8" y2="218.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="408.7" y1="218.3" x2="388.4" y2="218.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="496" y1="217" x2="475.8" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="408.7" y1="217" x2="388.4" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="494.8" y1="215.1" x2="469.6" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="414.9" y1="215.1" x2="404.6" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="404.6" y1="215.1" x2="393.6" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="393.6" y1="215.1" x2="389.7" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="388.4" y1="215.1" x2="389.7" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="494.8" y1="215.1" x2="496" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="494.8" y1="214.1" x2="477.6" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="406.9" y1="214.1" x2="389.7" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="393.5" y1="213.4" x2="403.6" y2="213.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.4" y1="213.3" x2="468" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="409" y1="213.3" x2="416.5" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="493.8" y1="213.2" x2="476.6" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="390.7" y1="213.2" x2="407.8" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="408.1" y1="213.2" x2="409" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="393" y1="200.3" x2="404.2" y2="204.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.6" y1="183.8" x2="370.5" y2="183.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="367.7" y1="133.7" x2="367.7" y2="144.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="368" y1="182" x2="368" y2="173.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.5" y1="200.4" x2="473.5" y2="200.3"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1388" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 492.2,202.2 492.3,202.2 492.4,202.2 492.5,202.2 492.6,202.2 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 497.8,202.2 498.3,202.1 498.8,202.1 499.3,202 499.7,201.8 500.2,201.6 500.7,201.4 501.1,201.1 501.5,200.7 501.9,200.4
+ 502.2,200 502.5,199.6 502.8,199.1 503,198.7 503.2,198.2 503.4,197.8 503.5,197.3 503.7,196.8 503.8,196.3 503.9,195.7
+ 503.9,195.2 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="497.8" y1="202.2" x2="492.6" y2="202.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="386.7" y1="202.2" x2="391.9" y2="202.2"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1389" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 391.9,202.2 391.9,202.2 392.1,202.2 392.2,202.2 392.3,202.2 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="412" y1="200.4" x2="411" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.5" y1="171.5" x2="375.5" y2="171.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376.4" y1="172.5" x2="376" y2="172"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.7" y1="183.4" x2="377.6" y2="182.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.4" y1="146.6" x2="377.5" y2="147.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="369.9" y1="133.1" x2="369.9" y2="133.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="369.9" y1="144.9" x2="369.9" y2="145.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.2" y1="148.2" x2="370.2" y2="130.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.2" y1="175.5" x2="370.2" y2="179.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.5" y1="183.7" x2="370.5" y2="171.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.2" y1="148.2" x2="375.2" y2="130.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.5" y1="183.7" x2="375.5" y2="171.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.8" y1="147.2" x2="375.8" y2="131.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376" y1="183.2" x2="376" y2="172"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376.2" y1="146.6" x2="376.2" y2="132"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376.3" y1="172.3" x2="376.3" y2="182.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376.4" y1="182.6" x2="376.4" y2="172.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.1" y1="195.2" x2="502.6" y2="195.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="503.7" y1="194.3" x2="506.7" y2="194.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="416.2" y1="204.7" x2="412" y2="200.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.3" y1="148.3" x2="370.2" y2="148.2"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 380.5,195.1 380.6,195.7 380.7,196.3 380.8,196.8 380.9,197.3 381.1,197.8 381.3,198.2 381.5,198.7 381.7,199.1 381.9,199.6
+ 382.2,200 382.6,200.4 382.9,200.7 383.3,201.1 383.8,201.4 384.2,201.6 384.7,201.8 385.2,202 385.7,202.1 386.2,202.1
+ 386.7,202.2 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="380.4" y1="194.5" x2="380.5" y2="195.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.6" y1="131.3" x2="379.7" y2="133"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="7.836045e-002" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 380.2,189.7 380.2,190.4 380.2,191.1 380.2,191.8 380.3,192.5 380.3,193.2 380.4,193.9 380.4,194.5 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.4" y1="146.6" x2="377.4" y2="132"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.5" y1="147.3" x2="377.5" y2="131.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.6" y1="182.6" x2="377.6" y2="172.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.7" y1="183.4" x2="377.7" y2="171.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="378.1" y1="117.7" x2="378.1" y2="121.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.6" y1="147.3" x2="379.6" y2="131.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.7" y1="124.6" x2="379.7" y2="133"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.7" y1="145.6" x2="379.7" y2="171.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.7" y1="183.5" x2="379.7" y2="187.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.7" y1="145.4" x2="379.7" y2="133.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.9" y1="63.5" x2="379.9" y2="117.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="380.2" y1="189.7" x2="380.2" y2="189.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.4" y1="132" x2="377.5" y2="131.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.6" y1="147.3" x2="379.7" y2="145.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.7" y1="171.7" x2="377.6" y2="172.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.3" y1="130.3" x2="370.2" y2="130.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.1" y1="193" x2="503.1" y2="193"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.5" y1="189.4" x2="502.5" y2="189.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.7" y1="187.4" x2="380.3" y2="187.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.5" y1="186.8" x2="502.5" y2="186.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="493.8" y1="213.2" x2="494.2" y2="213.3"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 403,179.4 403.1,179.4 403.2,179.5 403.3,179.5 403.4,179.6 403.5,179.7 403.6,179.7 403.7,179.8 403.8,179.8 403.9,179.8
+ 404,179.9 404.1,179.9 404.2,179.9 404.3,179.9 404.4,179.9 404.5,179.9 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.2" y1="130.4" x2="375.1" y2="130.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.8" y1="131.4" x2="376.2" y2="132"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="404.2" y1="204.5" x2="407.8" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="388.4" y1="215.1" x2="388.4" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="388.4" y1="218.3" x2="388.4" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="389.7" y1="215.1" x2="389.7" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.2" y1="148.2" x2="375.1" y2="148.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.8" y1="147.2" x2="376.2" y2="146.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.6" y1="183.8" x2="375.5" y2="183.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.7" y1="183.4" x2="377.7" y2="183.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.1" y1="183.2" x2="503.1" y2="183.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376" y1="183.2" x2="375.5" y2="183.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.6" y1="182.6" x2="376.4" y2="182.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="368" y1="182" x2="370.5" y2="182"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="506.7" y1="181.9" x2="503.7" y2="181.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.1" y1="181" x2="502.6" y2="181"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="403.5" y1="179.9" x2="407.6" y2="179.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="368" y1="179.7" x2="370.2" y2="179.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="407.9" y1="179.4" x2="408.2" y2="179.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="491.9" y1="200.4" x2="491.5" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="392.4" y1="215.1" x2="392.4" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="393.5" y1="213.4" x2="393.5" y2="214.1"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="5.736048e-003" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 406.1,88.6 406.1,88.7 406.1,88.8 406.1,88.8 406.1,88.9 406.1,88.9 406.1,89 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.6" y1="171.4" x2="370.5" y2="171.5"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 404.4,175 404.4,175 404.3,175 404.2,175 404.1,175 404,175.1 403.9,175.1 403.8,175.1 403.7,175.2 403.6,175.2 403.5,175.3
+ 403.4,175.3 403.3,175.4 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="371.1" y1="177.6" x2="374.9" y2="177.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="407.1" y1="177.5" x2="408.8" y2="177.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="407.9" y1="175.5" x2="408.2" y2="175.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="368" y1="175.5" x2="370.2" y2="175.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="403.5" y1="175" x2="407.6" y2="175"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="368" y1="173.1" x2="370.5" y2="173.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.6" y1="172.5" x2="376.4" y2="172.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376" y1="172" x2="375.5" y2="172"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.7" y1="171.7" x2="377.7" y2="171.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.6" y1="171.4" x2="375.5" y2="171.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="403.6" y1="213.4" x2="403.6" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="406.9" y1="214.1" x2="406.9" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="390.2" y1="213.3" x2="392.6" y2="200.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="390.7" y1="213.2" x2="393" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="166.9" x2="440.9" y2="166.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="449.3" y1="166.9" x2="456.7" y2="166.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.7" y1="166.9" x2="433.4" y2="166.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.7" y1="165.9" x2="433.4" y2="165.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="164.3" x2="456.7" y2="164.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="163.3" x2="456.7" y2="163.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="416.5" y1="213.3" x2="416.2" y2="204.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="408.7" y1="215.1" x2="408.7" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="408.7" y1="218.3" x2="408.7" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.5" y1="183.7" x2="375.5" y2="183.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376.4" y1="182.6" x2="376" y2="183.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="161.3" x2="428.8" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="461.3" y1="161.3" x2="462.4" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.8" y1="161.3" x2="458.7" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="430.4" y1="161.3" x2="431.5" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="452.6" y1="159.1" x2="437.6" y2="159.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="453.3" y1="157.8" x2="436.9" y2="157.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="445.6" y1="157.2" x2="444.5" y2="157.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.3" y1="148.3" x2="375.2" y2="148.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.5" y1="147.3" x2="379.6" y2="147.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.2" y1="147.2" x2="375.8" y2="147.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.2" y1="139.2" x2="427.2" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="131.1" x2="427.8" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="141.5" x2="427.8" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="161.3" x2="427.8" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="139.2" x2="427.8" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="428.8" y1="161.3" x2="428.8" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="428.8" y1="139.2" x2="428.8" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="428.8" y1="139.2" x2="428.8" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="430.4" y1="131.1" x2="430.4" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="430.4" y1="141.5" x2="430.4" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="430.6" y1="125.2" x2="430.6" y2="126.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="430.6" y1="166.2" x2="430.6" y2="187.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="411" y1="200.3" x2="408.1" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="412" y1="200.4" x2="409" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376.2" y1="146.6" x2="377.4" y2="146.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="369.9" y1="145.5" x2="370.2" y2="145.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="367.7" y1="144.9" x2="369.9" y2="144.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.3" y1="142.9" x2="444.5" y2="142.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="445.6" y1="142.9" x2="449.9" y2="142.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.3" y1="141.8" x2="449.9" y2="141.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="463" y1="141.5" x2="427.2" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="371.1" y1="139.3" x2="374.4" y2="139.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="463" y1="139.2" x2="427.2" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="449.9" y1="138.9" x2="440.3" y2="138.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="452.6" y1="159.1" x2="456.7" y2="163.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="431.5" y1="131.1" x2="431.5" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="431.5" y1="141.5" x2="431.5" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="166.9" x2="433.4" y2="165.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="126.5" x2="433.4" y2="125.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="128.1" x2="433.4" y2="129.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="164.3" x2="433.4" y2="163.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="435.2" y1="139.2" x2="435.2" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="435.6" y1="157.2" x2="435.6" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="435.6" y1="139.2" x2="435.6" y2="135.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="436" y1="139.2" x2="436" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="436.9" y1="157.8" x2="436.9" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="436.9" y1="139.2" x2="436.9" y2="134.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="449.9" y1="137.8" x2="440.3" y2="137.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="436.9" y1="134.6" x2="453.3" y2="134.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="367.7" y1="133.7" x2="369.9" y2="133.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="437.6" y1="133.3" x2="452.6" y2="133.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="369.9" y1="133.1" x2="370.2" y2="133.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="376.2" y1="132" x2="377.4" y2="132"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="375.2" y1="131.4" x2="375.8" y2="131.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="377.5" y1="131.3" x2="379.6" y2="131.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.8" y1="131.1" x2="458.7" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="430.4" y1="131.1" x2="431.5" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.8" y1="131.1" x2="428.8" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="461.3" y1="131.1" x2="462.4" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="454.6" y1="157.2" x2="458.7" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="435.6" y1="135.2" x2="431.5" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="437.6" y1="133.3" x2="433.4" y2="129.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.3" y1="137.8" x2="440.3" y2="138.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="440.3" y1="141.8" x2="440.3" y2="142.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="444.5" y1="157.2" x2="444.5" y2="142.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="445.6" y1="157.2" x2="445.6" y2="142.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="370.3" y1="130.3" x2="375.2" y2="130.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.7" y1="129.1" x2="433.4" y2="129.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.7" y1="128.1" x2="433.4" y2="128.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="126.5" x2="456.7" y2="126.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="125.5" x2="456.7" y2="125.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.7" y1="125.5" x2="433.4" y2="125.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="430.6" y1="125.2" x2="453.9" y2="125.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.7" y1="124.6" x2="453.3" y2="124.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="431.2" y1="124.6" x2="379.7" y2="124.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="449.9" y1="137.8" x2="449.9" y2="138.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="449.9" y1="141.8" x2="449.9" y2="142.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="453.3" y1="134.6" x2="453.3" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="453.3" y1="141.5" x2="453.3" y2="157.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="453.9" y1="125.2" x2="453.9" y2="125.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="453.9" y1="166.9" x2="453.9" y2="187.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="454.1" y1="139.2" x2="454.1" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="454.6" y1="135.2" x2="454.6" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="454.6" y1="141.5" x2="454.6" y2="157.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="452.6" y1="133.3" x2="456.7" y2="129.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="454.6" y1="135.2" x2="458.7" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="431.5" y1="161.3" x2="435.6" y2="157.2"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 403.2,175.4 403.1,175.5 403,175.6 402.9,175.7 402.8,175.8 402.8,175.8 402.7,175.9 402.6,176 402.6,176.1 402.5,176.2
+ 402.5,176.3 402.4,176.4 402.4,176.6 402.3,176.7 402.3,176.8 402.3,176.9 402.2,177 402.2,177.1 402.2,177.3 402.2,177.4
+ 402.2,177.5 402.2,177.6 402.2,177.7 402.2,177.9 402.3,178 402.3,178.1 402.3,178.2 402.4,178.3 402.4,178.4 402.4,178.5
+ 402.5,178.6 402.6,178.7 402.6,178.8 402.7,178.9 402.7,179 402.8,179.1 402.9,179.2 403,179.3 403,179.4 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="403.3" y1="175.4" x2="403.2" y2="175.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.5" y1="123" x2="378.9" y2="123"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="378.1" y1="121.5" x2="506.3" y2="121.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="378.1" y1="117.7" x2="506.3" y2="117.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="455" y1="139.2" x2="455" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.7" y1="128.1" x2="456.7" y2="129.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.7" y1="164.3" x2="456.7" y2="163.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.7" y1="166.9" x2="456.7" y2="165.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="456.7" y1="126.5" x2="456.7" y2="125.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="458.7" y1="161.3" x2="458.7" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="458.7" y1="139.2" x2="458.7" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.8" y1="161.3" x2="459.8" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.8" y1="139.2" x2="459.8" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="461.3" y1="139.2" x2="461.3" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="461.3" y1="131.1" x2="461.3" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="461.3" y1="141.5" x2="461.3" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.3" y1="131.1" x2="462.3" y2="139.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.3" y1="141.5" x2="462.3" y2="161.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.4" y1="161.3" x2="462.4" y2="158.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.4" y1="149.8" x2="462.4" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.4" y1="139.2" x2="462.4" y2="131.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="433.4" y1="163.3" x2="437.6" y2="159.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.4" y1="213.3" x2="472.5" y2="200.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="476.4" y1="213.2" x2="473.5" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="463" y1="139.2" x2="463" y2="141.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.8" y1="215.1" x2="475.8" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.8" y1="218.3" x2="475.8" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="477.6" y1="214.1" x2="477.6" y2="215.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="468.3" y1="204.7" x2="468" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.4" y1="57.8" x2="507.6" y2="49.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="508.6" y1="49.4" x2="505.4" y2="58.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="507" y1="182.3" x2="507.1" y2="182.6"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 407.8,90.8 408.1,90.8 408.4,90.6 408.7,90.5 409,90.2 409.2,89.9 409.3,89.6 409.4,89.2 409.5,88.8 409.4,88.4 409.3,88.1
+ 409.2,87.7 409,87.4 408.7,87.2 408.4,87 408.1,86.9 407.8,86.8 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="408.6" y1="90.8" x2="406.2" y2="90.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="406" y1="90.5" x2="405.5" y2="90.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="406" y1="87.1" x2="405.5" y2="87.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="408.6" y1="86.8" x2="406.2" y2="86.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="491.5" y1="200.3" x2="493.8" y2="213.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="491.9" y1="200.4" x2="494.2" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="492" y1="215.1" x2="492" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="392.6" y1="200.4" x2="393" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="502.5" y1="189.4" x2="503.1" y2="193"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="494.8" y1="215.1" x2="494.8" y2="214.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="496" y1="215.1" x2="496" y2="217"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="496" y1="218.3" x2="496" y2="221.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.7" y1="57.6" x2="505.4" y2="59.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="506.4" y1="55.7" x2="505.5" y2="63.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="390.7" y1="213.2" x2="390.2" y2="213.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.3" y1="70.1" x2="505.6" y2="70.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.6" y1="70.1" x2="504.6" y2="117.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.7" y1="124.6" x2="504.7" y2="181.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.6" y1="57.9" x2="505.6" y2="58"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="505.6" y1="62.7" x2="505.6" y2="70.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="506.3" y1="117.7" x2="506.3" y2="121.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="476.6" y1="213.2" x2="480.2" y2="204.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="379.9" y1="63.5" x2="504.6" y2="63.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="502.5" y1="186.8" x2="503.1" y2="183.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.5" y1="200.4" x2="468.3" y2="204.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="480.2" y1="204.5" x2="491.5" y2="200.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="386.9" y1="51.9" x2="497.6" y2="51.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="507" y1="193.9" x2="507.1" y2="193.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="504.4" y1="57.8" x2="505.4" y2="58.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="508" y1="51.1" x2="507" y2="50.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="508.6" y1="49.4" x2="507.6" y2="49.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.2" y1="323.5" x2="81.2" y2="314"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.4" y1="327.8" x2="81.4" y2="323.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.4" y1="313.6" x2="81.4" y2="309.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.8" y1="309.7" x2="81.8" y2="327.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="311.2" x2="82.2" y2="326.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="83" y1="335" x2="81.5" y2="328.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.8" y1="328.5" x2="83.3" y2="334.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="84.9" y1="330.4" x2="84.9" y2="307.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="302.5" x2="85.3" y2="335"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="86.2" y1="301.5" x2="86.2" y2="336"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="88.2" y1="336" x2="88.2" y2="301.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.5" y1="308.9" x2="83" y2="302.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="83.3" y1="302.6" x2="81.8" y2="308.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="166" y1="382.3" x2="160.7" y2="382.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="381.3" x2="166" y2="381.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.1" y1="381.6" x2="140.2" y2="378.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="139.9" y1="378.2" x2="140" y2="378.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="142" y1="378.7" x2="144.2" y2="379.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="148.2" y1="380.4" x2="150.4" y2="381"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.4" y1="381.5" x2="152.5" y2="381.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="113.6" y1="368.5" x2="110.8" y2="365.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="328.2" x2="84.9" y2="332.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="326.2" x2="84.9" y2="330.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="103.5" y1="278.3" x2="104.7" y2="276.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="103.9" y1="280.2" x2="106.6" y2="276.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="309.3" x2="84.9" y2="305.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="82.2" y1="311.2" x2="84.9" y2="307.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="110.8" y1="266.1" x2="113.6" y2="263.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.5" y1="381.5" x2="152.1" y2="381.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="166.4" y1="379" x2="165.9" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.2" y1="379" x2="160.8" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="153.5" y1="379.7" x2="140" y2="376"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="153.6" y1="379.6" x2="139.9" y2="375.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="382.3" x2="158.9" y2="381.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="381.3" x2="158.9" y2="380.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="98.6" y1="307.4" x2="98.6" y2="330.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="105.7" y1="279.9" x2="107.1" y2="277.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="105.9" y1="280.6" x2="107.7" y2="277.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="106.7" y1="281.1" x2="108.5" y2="278.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="108.7" y1="278.3" x2="106.7" y2="281.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="106.8" y1="281.5" x2="108.9" y2="278.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="107" y1="282.2" x2="107.2" y2="281.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="109.4" y1="278.5" x2="109.6" y2="278.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="109.3" y1="283.1" x2="111.4" y2="279.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.9" y1="244.7" x2="154.4" y2="243.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="379.8" x2="161.8" y2="380.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="139.9" y1="378.2" x2="140.2" y2="378.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="109.6" y1="278.1" x2="109.7" y2="277.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="107" y1="282.2" x2="106.5" y2="282.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="125.6" y1="367.7" x2="113.6" y2="368.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="213.1" y1="368.5" x2="201.1" y2="367.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="111.6" y1="278.1" x2="110.8" y2="266.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="110.8" y1="365.7" x2="111.6" y2="353.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="172.3" y1="248.9" x2="173.7" y2="248"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="171.2" y1="249.5" x2="170.6" y2="249.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="140" y1="376" x2="139.9" y2="375.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="104" y1="280.8" x2="103.9" y2="280.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="105.9" y1="280.6" x2="105.7" y2="279.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="106.8" y1="281.5" x2="106.7" y2="281.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="99.6" y1="334.5" x2="88.2" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="86.2" y1="336" x2="88.2" y2="336"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="230.1" y1="337.8" x2="232.2" y2="337.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="330.4" x2="88.2" y2="330.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="330.4" x2="84.9" y2="330.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="100.9" y1="330.1" x2="88.2" y2="330.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="90.4" y1="302.9" x2="88.2" y2="302.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="86.2" y1="301.5" x2="85.6" y2="301.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.7" y1="301" x2="87.2" y2="301.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="88.2" y1="301.8" x2="91.5" y2="302.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="209.4" y1="361.7" x2="208.9" y2="361.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="117.5" y1="269.9" x2="117.8" y2="270.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="208.9" y1="270.3" x2="209.4" y2="270.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.8" y1="323.5" x2="81.2" y2="323.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="229.7" y1="338.2" x2="226.5" y2="337.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.1" y1="378.2" x2="160.2" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.9" y1="244.7" x2="152.9" y2="248"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="155.4" y1="251.2" x2="155.4" y2="252.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="155.5" y1="248.9" x2="155.5" y2="249.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="156.1" y1="249.8" x2="156.1" y2="251.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="157.2" y1="241.4" x2="157.2" y2="243.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="158.1" y1="244.7" x2="158.1" y2="248"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="139.9" y1="375.9" x2="140" y2="375.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="139.9" y1="378.2" x2="140.4" y2="376.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="140" y1="378.2" x2="140.6" y2="376.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.6" y1="336.2" x2="86.2" y2="336"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="88.2" y1="335.3" x2="90.4" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="91.5" y1="334.5" x2="88.2" y2="335.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="87.2" y1="336" x2="85.7" y2="336.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="81.8" y1="314" x2="81.2" y2="314"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="225.2" y1="335.4" x2="224.4" y2="335.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.8" y1="335.2" x2="225.3" y2="334.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="230.2" y1="336.1" x2="227.1" y2="335.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="231.4" y1="331.8" x2="228.2" y2="331"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="227.9" y1="330.9" x2="226.5" y2="330.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.6" y1="329.9" x2="225.9" y2="329.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="104" y1="280.8" x2="106.5" y2="282.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="110" y1="283.6" x2="106.8" y2="281.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="106.7" y1="281.1" x2="105.9" y2="280.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="104.8" y1="279.6" x2="105.8" y2="280.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="165.8" y1="378.3" x2="165.9" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="158.9" y1="381.7" x2="158.9" y2="378.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.2" y1="378.1" x2="160.2" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.7" y1="382.3" x2="160.7" y2="381.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.8" y1="378.1" x2="160.8" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.8" y1="241.4" x2="160.8" y2="243.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="142" y1="378.7" x2="142.5" y2="376.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="144.2" y1="379.3" x2="144.8" y2="377.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="99.8" y1="307.4" x2="88.2" y2="307.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.2" y1="307.1" x2="84.9" y2="307.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="307.1" x2="85.2" y2="307.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="85.3" y1="307.1" x2="88.2" y2="307.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="232" y1="329.7" x2="228.8" y2="328.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="106.3" y1="277.2" x2="107.3" y2="277.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="108.5" y1="278.3" x2="107.7" y2="277.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="112.2" y1="280.3" x2="108.9" y2="278.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="107.1" y1="276" x2="109.7" y2="277.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="165.9" y1="241.4" x2="165.9" y2="243.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="165.9" y1="378.1" x2="165.9" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="166" y1="382.3" x2="166" y2="381.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="166.4" y1="378.1" x2="166.4" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.8" y1="381.7" x2="167.8" y2="378.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="168.5" y1="244.7" x2="168.5" y2="248"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="169.5" y1="241.4" x2="169.5" y2="243.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="170.6" y1="249.8" x2="170.6" y2="251.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="171.2" y1="248.9" x2="171.2" y2="249.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="171.3" y1="251.2" x2="171.3" y2="252.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="148.2" y1="380.4" x2="148.7" y2="378.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="150.4" y1="381" x2="150.9" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.4" y1="381.5" x2="152.9" y2="379.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="152.5" y1="381.5" x2="153" y2="379.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="153.6" y1="379.6" x2="153.7" y2="379.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="86.2" y1="301.5" x2="88.2" y2="301.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="99.6" y1="302.9" x2="88.2" y2="302.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="173.7" y1="244.7" x2="173.7" y2="248"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="160.9" y1="378.3" x2="160.8" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="166.6" y1="378.2" x2="166.4" y2="379"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="232.1" y1="330.3" x2="234" y2="331.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="117.8" y1="270.3" x2="117.3" y2="270.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="208.9" y1="361.4" x2="209.2" y2="361.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="209.2" y1="269.9" x2="208.9" y2="270.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="108.9" y1="278.2" x2="108.5" y2="278.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="107.7" y1="277.7" x2="107.1" y2="277.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="107.1" y1="276" x2="106.6" y2="276.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="201.1" y1="264.1" x2="213.1" y2="263.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="113.6" y1="263.3" x2="125.6" y2="264.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="215.1" y1="353.6" x2="215.9" y2="365.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="215.9" y1="266.1" x2="215.1" y2="278.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="155.5" y1="249.5" x2="156.1" y2="249.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="154.4" y1="248.9" x2="152.9" y2="248"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="228.4" y1="329.3" x2="228.8" y2="328.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="153.5" y1="379.7" x2="153.6" y2="379.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="156.1" y1="251.1" x2="155.4" y2="251.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="155.4" y1="251.2" x2="171.3" y2="251.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="156.1" y1="251.1" x2="170.6" y2="251.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="156.1" y1="249.8" x2="170.6" y2="249.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="155.5" y1="249.5" x2="171.2" y2="249.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="154.4" y1="248.9" x2="172.3" y2="248.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="170.6" y1="251.1" x2="171.3" y2="251.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.3" y1="336.8" x2="226.5" y2="337.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="229.7" y1="338.2" x2="230.1" y2="337.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="164.8" y1="380.4" x2="166" y2="379.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.8" y1="380.7" x2="166" y2="381.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="167.8" y1="381.7" x2="166" y2="382.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="154.4" y1="243.9" x2="172.3" y2="243.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="165.9" y1="243.6" x2="160.8" y2="243.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="173.7" y1="244.7" x2="172.3" y2="243.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="232" y1="329.7" x2="232.1" y2="330.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.6" y1="329.9" x2="225.2" y2="335.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="226.3" y1="336.8" x2="228.4" y2="329.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="230.1" y1="337.8" x2="230.2" y2="337.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="230.3" y1="336.9" x2="230.9" y2="334.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="231.3" y1="333.4" x2="231.9" y2="331.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="232.1" y1="330.5" x2="232.1" y2="330.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="157.2" y1="241.4" x2="169.5" y2="241.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="213.1" y1="263.3" x2="215.9" y2="266.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="234" y1="331.3" x2="232.2" y2="337.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="234.3" y1="331.9" x2="232.8" y2="337.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="215.9" y1="365.7" x2="213.1" y2="368.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="420.5" y1="300.4" x2="420.6" y2="308.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="425.3" y1="289.1" x2="420.5" y2="300.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="435.1" y1="283.4" x2="425.3" y2="289.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="427.1" y1="306.9" x2="427.4" y2="303.4"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 435.7,283.3 435.6,283.7 435.3,284.1 435,284.5 434.7,284.9 434.3,285.3 433.9,285.6 433.5,285.9 433.1,286.1 432.7,286.3
+ 432.2,286.5 431.7,286.6 431.3,286.7 430.8,286.7 430.3,286.7 429.8,286.7 429.5,286.6 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="434.7" y1="283.7" x2="434.8" y2="283.5"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 473,342.3 473.1,342.3 473.1,342.2 473.2,342.2 473.2,342.2 473.3,342.2 473.3,342.1 473.4,342 473.4,342 473.5,341.9 473.5,341.8
+ 473.6,341.7 473.6,341.6 473.7,341.5 473.7,341.4 473.8,341.2 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 484.1,342.3 484.2,342.3 484.4,342.2 484.6,342.2 484.8,342.2 485,342.2 485.2,342.1 485.4,342 485.6,342 485.7,341.9 485.9,341.8
+ 486.1,341.7 486.3,341.6 486.6,341.5 486.8,341.4 487,341.2 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 477.5,342.3 477.7,342.3 477.9,342.2 478.2,342.2 478.4,342.2 478.6,342.2 478.9,342.1 479.1,342 479.3,342 479.6,341.9
+ 479.8,341.8 480.1,341.7 480.3,341.6 480.6,341.5 480.9,341.4 481.1,341.2 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.9" y1="342.3" x2="486.4" y2="342.3"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 442.2,282.4 442,282.7 441.7,283.4 441.4,284.1 441.1,284.7 440.8,285.3 440.6,285.9 440.4,286.4 440.3,286.9 440.1,287.3
+ 440.1,287.7 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 439.9,288.7 439.5,289.4 439.3,290 439.1,290.5 438.9,291 438.9,291.4 438.9,291.8 439,292.1 439.2,292.4 439.5,292.6 439.8,292.8
+ 440.2,292.9 440.7,293 441.2,293 441.8,293 442.5,293 443.2,292.9 444,292.8 444.9,292.6 445.8,292.4 446.8,292.1 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="437.6" y1="303.4" x2="437.9" y2="299.9"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="5.459986e-002" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 440.1,287.7 440.1,287.9 440,288 440,288.1 440,288.2 440,288.3 440,288.4 439.9,288.5 439.9,288.6 439.9,288.7 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.177" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 445.9,290.6 445.7,290.8 445.6,291 445.5,291.2 445.4,291.3 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 449.5,288.1 449.3,288.2 449.2,288.3 449.1,288.4 448.9,288.5 448.8,288.6 448.6,288.7 448.5,288.8 448.3,288.9 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 448.3,288.9 447.7,289.3 447.3,289.6 446.9,289.9 446.5,290.2 446.2,290.4 445.9,290.6 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487" y1="336.6" x2="472.3" y2="336.6"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1678" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 459.1,287.2 459,287.3 458.8,287.5 458.7,287.7 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 459.5,287.3 460.4,286.9 461.2,286.4 462,285.9 462.8,285.3 463.5,284.7 464.3,284.1 464.9,283.4 465.6,282.7 466.2,282
+ 466.8,281.3 467,281 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 459.1,287.2 458.9,287.3 458.6,287.5 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1676" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 456.8,288.3 456.7,288.4 456.5,288.5 456.3,288.7 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="458.7" y1="287.7" x2="459.5" y2="287.3"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 458.6,287.5 458.2,287.7 457.8,287.9 457.4,288.1 457,288.2 456.8,288.3 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 456.8,288.3 456.6,288.4 455.8,288.7 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 455.8,288.7 455,289 454.3,289.3 453.5,289.6 452.8,289.9 452.1,290.1 451.4,290.4 450.8,290.6 450.2,290.8 449.6,291 449.1,291.1
+ 448.6,291.3 448.2,291.4 447.8,291.5 447.4,291.6 447.1,291.6 446.8,291.7 446.6,291.7 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 456.3,288.7 456.6,288.6 456.9,288.5 457.1,288.4 457.4,288.3 457.6,288.2 457.9,288.1 458.2,288 458.4,287.9 458.7,287.7 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 446.8,292.1 448,291.8 449.2,291.4 450.4,291 451.8,290.5 453.2,290 454.7,289.4 456.3,288.7 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.4" y1="334.5" x2="475.4" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="483.9" y1="334.5" x2="499.9" y2="334.5"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 473.8,341.2 474.1,341.4 474.3,341.5 474.6,341.6 474.8,341.7 475.1,341.8 475.3,341.9 475.6,342 475.8,342 476.1,342.1
+ 476.3,342.2 476.5,342.2 476.8,342.2 477,342.2 477.2,342.3 477.5,342.3 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="441.9" y1="318.8" x2="441.9" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="441.9" y1="319.3" x2="444.2" y2="321"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="2.260567e-002" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 445.4,291.3 445.4,291.5 445.5,291.6 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="448.1" y1="299.4" x2="448.4" y2="295.7"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 450.1,281.6 450,282.1 449.9,282.9 449.8,283.7 449.7,284.4 449.6,285.1 449.5,285.8 449.5,286.4 449.4,287 449.5,287.6
+ 449.5,288.1 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.176" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 442.1,318.4 442.1,318.2 442.1,318.1 442.2,317.9 442.3,317.8 442.3,317.6 442.4,317.4 442.5,317.2 442.6,317 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="441.8" y1="317.3" x2="447.3" y2="300.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.6" y1="317" x2="448.1" y2="299.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="447.3" y1="300.1" x2="469.2" y2="291.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="448.1" y1="299.8" x2="470" y2="291.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="469.2" y1="291.5" x2="470" y2="291.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="447.3" y1="300.1" x2="448.1" y2="299.8"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1049" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 441.9,321 441.8,321 441.8,320.9 441.7,320.8 441.7,320.8 441.7,320.6 441.6,320.5 441.6,320.3 441.6,320.1 441.6,319.9
+ 441.6,319.7 441.6,319.4 441.6,319.2 441.6,318.9 441.6,318.6 441.6,318.3 441.7,317.9 441.7,317.6 441.8,317.3 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 481.1,341.2 481.4,341.4 481.6,341.5 481.8,341.6 482,341.7 482.2,341.8 482.4,341.9 482.6,342 482.8,342 482.9,342.1 483.1,342.2
+ 483.3,342.2 483.5,342.2 483.7,342.2 483.9,342.3 484.1,342.3 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="443.5" y1="318.8" x2="446.6" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="445.9" y1="318.8" x2="449" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="448.3" y1="318.8" x2="451.3" y2="321"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="9.184081e-002" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 472.8,342.1 472.8,342.2 472.8,342.2 472.9,342.2 472.9,342.2 473,342.3 473,342.3 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 466.4,281 466.4,281.1 465.9,281.8 465.3,282.5 464.7,283.2 464,283.8 463.3,284.5 462.6,285.1 461.8,285.6 461,286.2 460.1,286.7
+ 459.3,287.2 459.1,287.2 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="450.7" y1="318.8" x2="453.7" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="453.1" y1="318.8" x2="456.1" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="441.9" y1="321" x2="469.5" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="489.7" y1="321" x2="500.9" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="500.9" y1="318.8" x2="489.7" y2="318.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="469.5" y1="318.8" x2="441.9" y2="318.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="455.5" y1="318.8" x2="458.5" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="457.9" y1="318.8" x2="460.9" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="460.2" y1="318.8" x2="463.3" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="458.7" y1="294.7" x2="459" y2="290.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="317.5" x2="463.9" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486" y1="317.5" x2="495.4" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="463.9" y1="317" x2="442.6" y2="317"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.6" y1="318.8" x2="465.7" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="465" y1="318.8" x2="468.1" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.4" y1="321" x2="459.4" y2="324.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.4" y1="327.2" x2="459.4" y2="334.5"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="7.211879e-002" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 441.9,318.8 441.9,318.8 441.9,318.8 441.9,318.8 442,318.7 442,318.6 442,318.5 442.1,318.4 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="442.6" y1="317" x2="441.8" y2="317.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486" y1="314.2" x2="483.9" y2="314.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.4" y1="314.2" x2="473.2" y2="314.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="495.4" y1="313" x2="483.9" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.4" y1="313" x2="463.9" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="493.8" y1="311.2" x2="483.9" y2="311.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.4" y1="311.2" x2="465.5" y2="311.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="467.4" y1="318.8" x2="469.5" y2="320.3"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1751" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 472.3,341.2 472.3,341.4 472.4,341.5 472.4,341.6 472.5,341.7 472.5,341.8 472.6,341.9 472.6,342 472.7,342 472.7,342.1
+ 472.8,342.1 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="463.9" y1="313" x2="463.9" y2="317.5"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1751" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 472.8,302.4 472.7,302.5 472.7,302.5 472.7,302.6 472.6,302.6 472.6,302.7 472.5,302.8 472.5,302.8 472.4,302.9 472.4,303
+ 472.4,303.1 472.3,303.2 472.3,303.4 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.9" y1="302.3" x2="472.8" y2="302.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.4" y1="301.9" x2="476.1" y2="301.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487.8" y1="309.1" x2="471.5" y2="309.1"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 477.5,309.1 477.3,309.1 477.1,309.1 476.9,309.1 476.7,309.1 476.5,309 476.3,309 476.1,309 475.9,308.9 475.7,308.9 475.5,308.8
+ 475.3,308.7 475.1,308.7 474.9,308.6 474.7,308.5 474.5,308.4 474.2,308.3 474,308.2 473.8,308.1 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 484.1,309.1 483.9,309.1 483.8,309.1 483.6,309.1 483.4,309.1 483.3,309 483.1,309 483,309 482.8,308.9 482.7,308.9 482.5,308.8
+ 482.3,308.7 482.2,308.7 482,308.6 481.8,308.5 481.7,308.4 481.5,308.3 481.3,308.2 481.1,308.1 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="9.183954e-002" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 473,309.1 473,309.1 472.9,309.1 472.9,309.1 472.9,309.1 472.8,309 472.8,309 472.8,309 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.8" y1="311.2" x2="471.5" y2="310.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="463.9" y1="313" x2="465.1" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="465.5" y1="311.2" x2="465.5" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="469.4" y1="289" x2="469.8" y2="284.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.4" y1="321" x2="459.4" y2="321"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 481.1,308.1 480.9,308.2 480.6,308.3 480.3,308.5 480.1,308.6 479.8,308.7 479.6,308.8 479.3,308.8 479.1,308.9 478.9,309
+ 478.6,309 478.4,309 478.2,309.1 477.9,309.1 477.7,309.1 477.5,309.1 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475" y1="310.9" x2="471.5" y2="310"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475" y1="310.3" x2="471.5" y2="309.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475" y1="309.6" x2="473.2" y2="309.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486" y1="311.2" x2="484.2" y2="310.8"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 449.5,288.1 450.1,288.8 450.8,289.5 451.5,290.1 451.7,290.3 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="465.1" y1="313" x2="466.3" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="465.5" y1="311.3" x2="465.9" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="466.4" y1="313" x2="467.6" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="465.9" y1="311.2" x2="466.4" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="466.4" y1="311.2" x2="466.9" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="466.9" y1="311.2" x2="467.4" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="467.6" y1="313" x2="468.9" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="333.6" x2="473.5" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="467.4" y1="311.2" x2="467.9" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="332.6" x2="473.7" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="331.7" x2="474" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="467.9" y1="311.2" x2="468.4" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="330.8" x2="474.2" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="469.5" y1="321" x2="469.5" y2="318.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="469.5" y1="317.5" x2="469.5" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.4" y1="323.1" x2="461.5" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.5" y1="325" x2="463.6" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.4" y1="327.3" x2="465.7" y2="321"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="9.183954e-002" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 473,302.3 473,302.3 472.9,302.3 472.9,302.3 472.9,302.4 472.8,302.4 472.8,302.4 472.8,302.4 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 484.1,302.3 483.9,302.3 483.8,302.3 483.6,302.3 483.4,302.4 483.3,302.4 483.1,302.4 483,302.5 482.8,302.5 482.7,302.6
+ 482.5,302.6 482.3,302.7 482.2,302.8 482,302.8 481.8,302.9 481.7,303 481.5,303.1 481.3,303.2 481.1,303.4 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 477.5,302.3 477.3,302.3 477.1,302.3 476.9,302.3 476.7,302.4 476.5,302.4 476.3,302.4 476.1,302.5 475.9,302.5 475.7,302.6
+ 475.5,302.6 475.3,302.7 475.1,302.8 474.9,302.8 474.7,302.9 474.5,303 474.2,303.1 474,303.2 473.8,303.4 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.9" y1="302.3" x2="486.4" y2="302.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.4" y1="301.9" x2="483.9" y2="301.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="476.1" y1="301.2" x2="483.2" y2="301.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487.8" y1="311.1" x2="484.2" y2="310.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487.8" y1="310.4" x2="484.2" y2="309.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487.8" y1="309.8" x2="485.4" y2="309.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="489.8" y1="319.4" x2="491.9" y2="321"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 445.5,291.6 445.6,291.6 445.8,291.7 446,291.7 446.3,291.8 446.5,291.8 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.8" y1="309" x2="472.9" y2="309.1"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1751" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 472.8,309 472.7,309 472.7,308.9 472.7,308.9 472.6,308.8 472.6,308.7 472.5,308.7 472.5,308.6 472.4,308.5 472.4,308.4
+ 472.4,308.3 472.3,308.2 472.3,308.1 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="329.8" x2="474.3" y2="333.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="468.4" y1="311.2" x2="468.9" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="468.9" y1="313" x2="470.1" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="328.9" x2="474.3" y2="332.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="328" x2="474.3" y2="331.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="468.9" y1="311.2" x2="469.4" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="327" x2="474.3" y2="331"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="326.1" x2="474.3" y2="330.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="469.4" y1="311.2" x2="469.9" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="325.2" x2="474.3" y2="329.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="470.2" y1="313" x2="471.4" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="324.2" x2="474.3" y2="328.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="469.9" y1="311.2" x2="470.3" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="323.3" x2="474.3" y2="327.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="322.4" x2="474.3" y2="326.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="470.4" y1="311.2" x2="470.8" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="321.4" x2="474.3" y2="325.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="320.5" x2="474.3" y2="324.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="470.9" y1="311.2" x2="471.3" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="471.4" y1="313" x2="472.6" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="319.6" x2="474.3" y2="323.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="318.6" x2="474.3" y2="322.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="471.3" y1="311.2" x2="471.8" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="317.7" x2="474.3" y2="321.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="471.5" y1="311.2" x2="471.5" y2="309.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.3" y1="336.6" x2="472.3" y2="341.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.3" y1="308.1" x2="472.3" y2="303.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.9" y1="313" x2="472.9" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="314.2" x2="473.2" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.8" y1="336.6" x2="473.8" y2="341.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.8" y1="308.1" x2="473.8" y2="303.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="474.3" y1="314.2" x2="474.3" y2="334.5"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 473.8,308.1 473.7,308.2 473.7,308.3 473.6,308.5 473.6,308.6 473.5,308.7 473.5,308.8 473.4,308.8 473.4,308.9 473.3,309
+ 473.3,309 473.2,309 473.2,309.1 473.1,309.1 473.1,309.1 473,309.1 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.4" y1="329.3" x2="467.7" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="469.5" y1="319.2" x2="471.2" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.4" y1="331.4" x2="472.9" y2="317.9"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 487,308.1 486.8,308.2 486.6,308.3 486.3,308.5 486.1,308.6 485.9,308.7 485.7,308.8 485.6,308.8 485.4,308.9 485.2,309 485,309
+ 484.8,309 484.6,309.1 484.4,309.1 484.2,309.1 484.1,309.1 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="491.3" y1="318.8" x2="494.3" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="493.7" y1="318.8" x2="496.7" y2="321"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 456.1,281.4 456.3,281.7 456.7,282.2 457.1,282.7 457.5,283.1 457.9,283.5 458.3,283.8 458.7,284.1 459.2,284.4 459.6,284.6
+ 460,284.7 460.5,284.9 460.9,285 461.3,285 461.7,285 462.1,285 462.6,284.9 462.8,284.8 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="316.8" x2="474.3" y2="320.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="471.8" y1="311.2" x2="472.3" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="315.9" x2="474.3" y2="319.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.7" y1="313" x2="472.9" y2="313.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.2" y1="314.9" x2="474.3" y2="318.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.3" y1="311.2" x2="472.8" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.3" y1="314.2" x2="474.3" y2="318"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.6" y1="314.2" x2="474.3" y2="317"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="472.8" y1="311.2" x2="473.3" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.8" y1="314.2" x2="474.3" y2="316.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="474.1" y1="314.2" x2="474.3" y2="315.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.3" y1="311.2" x2="473.8" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="474.3" y1="314.2" x2="474.3" y2="314.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="473.8" y1="311.2" x2="474.3" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="474.3" y1="311.2" x2="474.8" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="474.8" y1="311.2" x2="475.2" y2="312.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475" y1="309.1" x2="475" y2="311.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.2" y1="311.2" x2="475.2" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.4" y1="336.6" x2="475.4" y2="309.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="475.4" y1="302.3" x2="475.4" y2="301.9"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1751" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 486.5,309 486.5,309 486.5,308.9 486.6,308.9 486.6,308.8 486.7,308.7 486.7,308.7 486.8,308.6 486.8,308.5 486.8,308.4
+ 486.9,308.3 486.9,308.2 487,308.1 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="459.4" y1="333.5" x2="472.9" y2="320"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="460.5" y1="334.5" x2="472.9" y2="322.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.5" y1="309" x2="486.4" y2="309.1"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 458.7,294.7 459.5,294.5 460.7,294.1 461.9,293.6 463,293 464,292.3 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 481.1,303.4 480.9,303.2 480.6,303.1 480.3,303 480.1,302.9 479.8,302.8 479.6,302.7 479.3,302.6 479.1,302.5 478.9,302.5
+ 478.6,302.4 478.4,302.4 478.2,302.4 477.9,302.3 477.7,302.3 477.5,302.3 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="496" y1="318.8" x2="499.1" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="498.4" y1="318.8" x2="500.9" y2="320.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="500.8" y1="318.8" x2="500.9" y2="318.9"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 473.8,303.4 473.7,303.2 473.7,303.1 473.6,303 473.6,302.9 473.5,302.8 473.5,302.7 473.4,302.6 473.4,302.5 473.3,302.5
+ 473.3,302.4 473.2,302.4 473.2,302.4 473.1,302.3 473.1,302.3 473,302.3 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="470" y1="291.2" x2="473.1" y2="302.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="481.1" y1="336.6" x2="481.1" y2="341.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="481.1" y1="308.1" x2="481.1" y2="303.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="462.5" y1="334.5" x2="472.9" y2="324.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="464.6" y1="334.5" x2="472.9" y2="326.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="466.7" y1="334.5" x2="472.9" y2="328.3"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 448.2,289 447.3,288.7 446.4,288.5 445.4,288.4 444.5,288.3 443.5,288.2 442.6,288.3 441.7,288.4 440.8,288.5 439.9,288.7 "/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 449.5,288.1 448.4,287.7 447.4,287.5 446.3,287.3 445.3,287.2 444.2,287.1 443.1,287.2 442.1,287.3 441.1,287.5 440.1,287.7 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="483.9" y1="336.6" x2="483.9" y2="309.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="483.9" y1="302.3" x2="483.9" y2="301.9"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.1" y1="311.2" x2="484.1" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.2" y1="309.1" x2="484.2" y2="311.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="468.8" y1="334.5" x2="472.9" y2="330.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="470.9" y1="334.5" x2="472.9" y2="332.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="318.9" x2="487.8" y2="317.5"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1333" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 446.6,291.7 446.4,291.8 446.3,291.8 446.2,291.8 446.2,291.8 446.3,291.8 446.4,291.8 446.5,291.8 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="463.6" y1="288.7" x2="456.3" y2="288.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="425.9" y1="288.7" x2="439.9" y2="288.7"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 487,303.4 486.8,303.2 486.6,303.1 486.3,303 486.1,302.9 485.9,302.8 485.7,302.7 485.6,302.6 485.4,302.5 485.2,302.5 485,302.4
+ 484.8,302.4 484.6,302.4 484.4,302.3 484.2,302.3 484.1,302.3 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="483.9" y1="301.9" x2="483.2" y2="301.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.1" y1="312.8" x2="484.1" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.1" y1="311.2" x2="484.6" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.6" y1="311.2" x2="485.1" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="317.1" x2="486.5" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="485.1" y1="311.2" x2="485.6" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="484.9" y1="314.2" x2="484.9" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486" y1="314.2" x2="486" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="313" x2="486.4" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487" y1="336.6" x2="487" y2="341.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487" y1="308.1" x2="487" y2="303.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487.8" y1="311.2" x2="487.8" y2="309.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="321" x2="489.7" y2="317.7"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="323.1" x2="489.7" y2="319.8"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 430.6,286 430.7,286 431.2,286 431.6,285.9 432,285.8 432.4,285.7 432.8,285.5 433.2,285.3 433.5,285 433.9,284.7 434.2,284.4
+ 434.5,284.1 434.7,283.7 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="302.3" x2="486.5" y2="302.4"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1751" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 486.5,302.4 486.5,302.5 486.5,302.5 486.6,302.6 486.6,302.6 486.7,302.7 486.7,302.8 486.8,302.8 486.8,302.9 486.8,303
+ 486.9,303.1 486.9,303.2 487,303.4 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="485.6" y1="311.2" x2="486.1" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.5" y1="313" x2="487.8" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.1" y1="311.2" x2="486.6" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.6" y1="311.2" x2="487.1" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487.1" y1="311.2" x2="487.6" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487.8" y1="313" x2="489" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487.6" y1="311.2" x2="488.1" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="488.1" y1="311.2" x2="488.5" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="488.6" y1="311.2" x2="489" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="489.1" y1="313" x2="490.3" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="489.1" y1="311.2" x2="489.5" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="489.7" y1="317.5" x2="489.7" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="489.8" y1="321" x2="489.8" y2="318.8"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="325.2" x2="490.6" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="327.3" x2="492.7" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="329.3" x2="494.7" y2="321"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 427.6,287.8 427.7,287.7 428,287.7 428.3,287.7 428.6,287.6 428.9,287.6 429.2,287.5 429.4,287.5 429.7,287.4 429.9,287.4
+ 430.1,287.3 430.4,287.3 430.6,287.2 430.8,287.2 431,287.1 431.3,287.1 431.5,287 431.7,286.9 431.9,286.9 432.2,286.8
+ 432.4,286.7 432.7,286.6 433,286.4 433.3,286.2 433.6,286 433.9,285.8 434.3,285.5 434.6,285.2 434.9,284.8 435.2,284.4 435.5,284
+ 435.7,283.5 435.8,283.3 "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="476.1" y1="280.6" x2="463.3" y2="281.2"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="463.3" y1="281.2" x2="448.4" y2="281.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="489.5" y1="311.2" x2="490" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="490.3" y1="313" x2="491.5" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="490" y1="311.2" x2="490.5" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="490.5" y1="311.2" x2="491" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="491" y1="311.2" x2="491.5" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="491.6" y1="313" x2="492.8" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="491.5" y1="311.2" x2="492" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="492" y1="311.2" x2="492.5" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="492.8" y1="313" x2="494.1" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="492.5" y1="311.2" x2="493" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="493.8" y1="311.2" x2="493.8" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="331.4" x2="496.8" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="333.5" x2="498.9" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="448.4" y1="281.6" x2="435.1" y2="283.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="477" y1="280.6" x2="476.1" y2="280.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="493" y1="311.2" x2="493.5" y2="313"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="493.5" y1="311.2" x2="493.8" y2="312.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="494.1" y1="313" x2="495.3" y2="317.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="495.4" y1="313" x2="495.4" y2="313.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="495.4" y1="313" x2="495.4" y2="317.5"/>
+
+ <polyline fill="none" stroke="#000000" stroke-width="0.1751" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" points="
+ 487,341.2 486.9,341.4 486.9,341.5 486.8,341.6 486.8,341.7 486.7,341.8 486.7,341.9 486.6,342 486.6,342 486.5,342.1 486.5,342.1
+ "/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="487.5" y1="334.5" x2="499.9" y2="322.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="489.5" y1="334.5" x2="499.9" y2="324.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="499.9" y1="321" x2="499.9" y2="324.6"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="499.9" y1="327.2" x2="499.9" y2="334.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="500.9" y1="318.8" x2="500.9" y2="321"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="491.6" y1="334.5" x2="499.6" y2="326.5"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="493.7" y1="334.5" x2="499.9" y2="328.3"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="486.4" y1="342.3" x2="486.5" y2="342.1"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="495.8" y1="334.5" x2="499.9" y2="330.4"/>
+
+ <line fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" x1="497.9" y1="334.5" x2="499.9" y2="332.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M217.1,217c-0.2,0.4-0.2,0.9,0,1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M196.9,218.3c0.2-0.4,0.2-0.9,0-1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M129.8,217c-0.2,0.4-0.2,0.9,0,1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M109.6,218.3c0.2-0.4,0.2-0.9,0-1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M86.2,125.5c-0.5,0-0.9,0.4-0.9,1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,157.8c0,0.5,0.1,0.9,0.4,1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M82.2,133.3c-0.3,0.4-0.4,0.8-0.4,1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M88.2,149.8c-2.1,2.4-2.1,6,0,8.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M85.3,165.9c0,0.5,0.4,1,0.9,1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M84.9,129.1c0.2-0.3,0.3-0.7,0.3-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M85.3,164.3c0-0.4-0.1-0.7-0.3-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,137.8c-0.3,0-0.5,0.2-0.5,0.5s0.2,0.5,0.5,0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,141.8c-0.3,0-0.5,0.2-0.5,0.5s0.2,0.5,0.5,0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.2,157.2c0,0.3,0.2,0.5,0.5,0.5"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="93.4" cy="153.7" r="5.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.7,129.3c-0.1-0.2-0.2-0.5-0.3-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M100.9,128c-0.6-0.6-1.5-0.9-2.3-0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M99.6,165.4c1.3,0,2.3-1,2.3-2.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.7,129.3c-0.5-1.4-1.7-2.3-3.2-2.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M100.7,141.1c0,0.3,0.2,0.6,0.5,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.2,139.3c-0.3,0.1-0.5,0.4-0.5,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M225.7,63.5c0-4.8-2.7-9.3-7-11.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M108,51.9c-4.3,2.3-7,6.7-7,11.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M218.7,51.9c-34.7-18.2-76.1-18.2-110.7,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M200,207.8c-0.2,0-0.3,0.1-0.5,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M218.6,207.8c4,0,7.3-3.3,7.3-7.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.9,125.2c0-0.9-0.6-1.6-1.4-1.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M100.5,123.5c-0.1-0.2-0.3-0.3-0.4-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.6,123c-0.5,0.4-0.8,1-0.8,1.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M99.3,121.5c0,0.6,0.3,1.2,0.8,1.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.6,123c0.5-0.4,0.8-1,0.8-1.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M108.9,200.5c1.5,0.7,2.9,1.4,4.4,2.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M126.7,207.8c1.2,0.4,2.3,0.7,3.5,1.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.9,192.9c1.3,3.3,3.8,6,7,7.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M196.5,208.8c1-0.3,2-0.6,3-0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M137.5,210.7c17,3.7,34.6,3.7,51.7,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.7,57.7c0,0.1,0,0.2,0,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M475.8,218.3c0.2-0.4,0.2-0.9,0-1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M496,217c-0.2,0.4-0.2,0.9,0,1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M408.7,217c-0.2,0.4-0.2,0.9,0,1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M388.4,218.3c0.2-0.4,0.2-0.9,0-1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M449.9,138.9c0.3,0,0.5-0.2,0.5-0.5s-0.2-0.5-0.5-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M440.3,137.8c-0.3,0-0.5,0.2-0.5,0.5s0.2,0.5,0.5,0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M449.9,142.9c0.3,0,0.5-0.2,0.5-0.5s-0.2-0.5-0.5-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M440.3,141.8c-0.3,0-0.5,0.2-0.5,0.5s0.2,0.5,0.5,0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M444.5,157.2c0,0.3,0.2,0.5,0.5,0.5c0.3,0,0.5-0.2,0.5-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M433.4,125.5c-3.1,0-5.6,2.5-5.6,5.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M462.4,131.1c0-3.1-2.5-5.6-5.6-5.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M427.8,161.3c0,3.1,2.5,5.6,5.6,5.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M456.7,166.9c3.1,0,5.6-2.5,5.6-5.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M456.7,166.9c3.1,0,5.6-2.5,5.6-5.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M456.7,165.9c2.5,0,4.6-2.1,4.6-4.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M427.8,161.3c0,3.1,2.5,5.6,5.6,5.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M428.8,161.3c0,2.5,2.1,4.6,4.6,4.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M433.4,125.5c-3.1,0-5.6,2.5-5.6,5.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M433.4,126.5c-2.5,0-4.6,2.1-4.6,4.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M462.3,131.1c0-3.1-2.5-5.6-5.6-5.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M461.3,131.1c0-2.5-2.1-4.6-4.6-4.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M386.9,51.9c-4.3,2.3-7,6.7-7,11.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.6,63.5c0-4.8-2.7-9.3-7-11.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M497.6,51.9c-34.7-18.2-76.1-18.2-110.7,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M391.3,202.2c0.3,0.1,0.6,0.3,0.9,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.6,207.8c1.2,0.4,2.3,0.7,3.5,1.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M492.3,202.6c0.3-0.1,0.6-0.3,0.9-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M475.4,208.8c1.2-0.3,2.3-0.7,3.5-1.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M416.4,210.7c17,3.7,34.6,3.7,51.7,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M379.7,187.4c0,1.3,0.2,2.6,0.5,3.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.5,123c-0.5,0.4-0.8,1-0.8,1.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M379.7,124.6c0-0.6-0.3-1.2-0.8-1.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.5,123c0.5-0.4,0.8-1,0.8-1.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M378.1,121.5c0,0.6,0.3,1.2,0.8,1.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M209.6,271.5c-0.3-0.9-0.9-1.6-1.8-1.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M209.2,269.9c-0.6-0.5-1.3-0.8-2.1-0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M210.2,272.2c0-0.8-0.3-1.5-0.8-2.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M117.3,270.1c-0.5,0.6-0.8,1.3-0.8,2.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M119,269.7c-0.9,0.3-1.6,0.9-1.8,1.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M119.6,269c-0.8,0-1.5,0.3-2.1,0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M207.7,362.1c0.9-0.3,1.6-0.9,1.8-1.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M209.4,361.7c0.5-0.6,0.8-1.3,0.8-2.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M207,362.7c0.8,0,1.5-0.3,2.1-0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M106.6,276.1c-0.6-0.4-1.5-0.2-1.9,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M103.5,278.3c-0.4,0.6-0.2,1.5,0.4,1.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M115.7,358.7c-0.5,2.2,1,4.4,3.2,4.8c0.5,0.1,1.1,0.1,1.7,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M234.3,331.9c0.1-0.2,0-0.5-0.3-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M232.2,337.9c0.2,0,0.5-0.2,0.5-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M166.4,378.1c0.4,0,0.8-0.1,1.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M159,378c0.4,0,0.8,0.1,1.2,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M160.8,378.1c1.7,0.1,3.4,0.1,5.1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M113.5,356.1c-1.9,3.4-0.7,7.7,2.8,9.6c2.1,1.2,4.7,1.2,6.9,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M206.8,362.9c1.9,0.1,3.4-1.4,3.5-3.2c0-0.1,0-0.2,0-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M202.9,366.3c3.7,2.3,8.6,1.1,10.8-2.7c1.5-2.5,1.5-5.7,0-8.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M210.4,272.4c0.1-1.9-1.4-3.4-3.2-3.5c-0.1,0-0.2,0-0.3,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M213.7,276.3c2.3-3.7,1.1-8.6-2.7-10.8c-2.5-1.5-5.7-1.5-8.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M119.8,268.9c-1.9-0.1-3.4,1.4-3.5,3.2c0,0.1,0,0.2,0,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M123.8,265.5c-3.7-2.3-8.6-1.1-10.8,2.7c-1.5,2.5-1.5,5.7,0,8.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M112.9,355.5c-2.3,3.7-1.1,8.6,2.7,10.8c2.5,1.5,5.7,1.5,8.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M215.2,278.2c2.3-3.2,2.6-7.5,0.7-10.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M211.9,263.4c-3.5-1.9-7.7-1.7-10.9,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M201,367.7c3.2,2.3,7.5,2.6,10.9,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M215.8,364.5c1.9-3.5,1.7-7.7-0.7-10.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M111.5,353.6c-2.3,3.2-2.6,7.5-0.7,10.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M114.7,368.4c3.5,1.9,7.7,1.7,10.9-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M125.7,264.1c-3.2-2.3-7.5-2.6-10.9-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M110.8,267.3c-1.9,3.5-1.7,7.7,0.7,10.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,313.4c-0.3,0-0.5,0.2-0.5,0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.2,323.5c0,0.3,0.2,0.5,0.5,0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M86.2,301.5c-0.5,0-0.9,0.4-0.9,1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M85.3,335c0,0.5,0.4,1,0.9,1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M82.2,309.3c-0.3,0.4-0.4,0.8-0.4,1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,326.9c0,0.5,0.1,0.9,0.4,1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M84.9,305.1c0.2-0.3,0.3-0.7,0.3-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M85.3,333.4c0-0.4-0.1-0.7-0.3-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M100.6,303.1c-0.3-0.1-0.6-0.2-0.9-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M99.6,334.5c0.9,0,1.7-0.5,2.1-1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M100.6,303.1c-0.3-0.1-0.6-0.2-0.9-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M99.6,334.5c0.9,0,1.7-0.5,2.1-1.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M85.6,301.3c-0.9-0.3-1.9,0.2-2.3,1.1c0,0.1,0,0.1-0.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,308.9c-0.1,0.3-0.1,0.5-0.1,0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,327.8c0,0.3,0,0.5,0.1,0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M83.3,334.9c0.2,1,1.2,1.5,2.1,1.3c0.1,0,0.1,0,0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M83,335c0.3,1.1,1.4,1.9,2.5,1.6c0.1,0,0.1,0,0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.4,327.8c0,0.3,0,0.6,0.1,0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.5,308.9c-0.1,0.3-0.1,0.6-0.1,0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M85.7,301c-1.1-0.4-2.3,0.2-2.7,1.3c0,0.1,0,0.1-0.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M108.5,282.7c-18.4,30.3-8.7,69.7,21.6,88c8.7,5.3,18.6,8.4,28.8,9.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M167.8,379.8c35.3-2.4,61.9-33.1,59.5-68.4c-2.4-35.3-33.1-61.9-68.4-59.5c-19.4,1.3-37.1,11.4-48.2,27.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M162.4,380c0.6,0,1.3,0,1.9,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M109.9,283.5c-17.9,29.5-8.4,67.9,21.1,85.8c8.5,5.1,18,8.2,27.9,8.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M167.8,378.2c34.4-2.5,60.3-32.3,57.9-66.7c-2.4-34.4-32.3-60.3-66.7-57.9c-18.8,1.3-36.1,11.1-46.8,26.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M167.7,378.1c34.3-2.4,60.2-32.2,57.8-66.6c-2.4-34.3-32.2-60.2-66.6-57.8c-34.3,2.4-60.2,32.2-57.8,66.6
+ c2.2,31,26.8,55.6,57.8,57.8"/>
+
+ <circle fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" cx="163.3" cy="315.9" r="55.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M459.4,327.2c0.4-0.8,0.4-1.8,0-2.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M499.9,324.6c-0.4,0.8-0.4,1.8,0,2.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M465.1,291.6c4.9-2.5,9-6.3,11.9-11"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M420.6,308.9c15.4-4.3,30.3-10,44.5-17.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M463.6,288.7c3.7-1.9,6.9-4.6,9.4-8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M420.6,305.5c14.9-4.2,29.3-9.8,43-16.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.6,189.2c0.1,0.5,0-0.2,0.1,0.3c0.1,0.5-0.1-0.1,0.1,0.3c0.1,0.4-0.1-0.1,0.1,0.3c0.1,0.1,0,0,0,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.9,183.2C226.8,183.3,226.9,183.2,226.9,183.2c-0.2,0.5,0-0.1-0.1,0.3c-0.1,0.4,0-0.2-0.1,0.3c-0.1,0.5,0-0.2-0.1,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.4,188.1c-0.1-0.8,0,0.3,0-0.5c0-0.8,0,0.3,0-0.6c0-0.8,0,0.3,0-0.6c0-0.8,0,0.3,0-0.6c0.1-0.8,0,0.3,0-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.4,185.3c0,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3c0.1,0.5,0-0.2,0.1,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M227.1,182.8c-0.2,0.5,0.1-0.2-0.2,0.4c-0.2,0.5,0.1-0.2-0.1,0.3c-0.2,0.5,0.1-0.2-0.1,0.3c-0.1,0.5,0-0.2-0.1,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M229.7,186.7c0.2,0.5-0.1-0.2,0.2,0.4c0.2,0.5-0.1-0.2,0.1,0.3c0.2,0.5-0.1-0.2,0.1,0.3c0.1,0.5,0-0.2,0.1,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.2,188.1c0.2,0.2-0.1-0.1,0.1,0.2c0.1,0.2,0-0.1,0.1,0.2c0.1,0.2,0-0.1,0.1,0.2c0,0.2,0-0.1,0,0.1c0,0.2,0-0.1,0,0.2
+ c-0.1,0.2,0-0.1,0,0.2c-0.1,0.3,0.1-0.1-0.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.3,189.2c0,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3c-0.1,0.5,0-0.2-0.1,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M233.2,183.3c-0.2,0,0.1,0-0.1,0c-0.2,0.1,0.1-0.1-0.1,0.1c-0.2,0.2,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2
+ c-0.2,0.4,0-0.1-0.1,0.3c-0.2,0.5,0-0.2-0.1,0.3c-0.1,0.6,0-0.2-0.1,0.4c-0.1,0.7,0-0.2-0.1,0.4c-0.1,0.7,0-0.2,0,0.5
+ c0,0.7,0-0.2,0,0.5c0,0.8,0-0.3,0,0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.6,189.2c0.1,0.5-0.1-0.2,0.1,0.3c0.2,0.5-0.1-0.2,0.1,0.3c0.2,0.5-0.1-0.2,0.1,0.3c0.2,0.5-0.1-0.2,0.2,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.5,186.7c-0.1,0.5,0-0.2-0.1,0.4c-0.1,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.2,182.8c0.1,0.5,0-0.2,0.1,0.4c0.1,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.3,184.2c0.1-0.6-0.1,0.2,0.1-0.4c0.2-0.5-0.1,0.2,0.1-0.3c0.2-0.4-0.1,0.1,0.1-0.3c0.2-0.3-0.1,0.1,0.1-0.2
+ c0.2-0.2-0.1,0.1,0.1-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.3,184.2c0.1,0.2,0-0.1,0.1,0.2c0.1,0.2,0-0.1,0,0.2c0,0.2,0-0.1,0,0.2c0,0.2,0-0.1,0,0.1c-0.1,0.2,0-0.1-0.1,0.2
+ c-0.1,0.2,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.3,189.2c0.1,0.6-0.1-0.2,0.1,0.4c0.2,0.5-0.1-0.2,0.1,0.3c0.2,0.4-0.1-0.1,0.1,0.3c0.2,0.3-0.1-0.1,0.1,0.2
+ c0.2,0.2-0.1-0.1,0.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.1,186.7c0-0.7,0,0.2,0-0.5c0-0.7,0,0.2,0-0.5c0-0.7,0,0.2,0-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.1,186.7c0,0.7,0-0.2,0,0.5c0,0.7,0-0.2,0,0.5c0,0.7,0-0.2,0,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.2,185.3c-0.1,0.5,0.1-0.2-0.1,0.3c-0.2,0.5,0.1-0.2-0.1,0.3c-0.2,0.5,0.1-0.2-0.1,0.3c-0.2,0.5,0.1-0.2-0.2,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M234.3,186.7c0-0.6,0,0.2,0-0.4c0-0.6,0,0.2,0-0.4c-0.1-0.6,0,0.2,0-0.4c-0.1-0.6,0,0.2-0.1-0.4c-0.1-0.5,0,0.2-0.1-0.3
+ c-0.1-0.4,0,0.1-0.1-0.3c-0.1-0.4,0.1,0.1-0.1-0.2c-0.1-0.3,0.1,0.1-0.1-0.2c-0.2-0.2,0.1,0.1-0.1-0.1c-0.2-0.1,0.1,0-0.1-0.1
+ c-0.2,0,0.1,0-0.1,0c-0.2,0.1,0,0-0.1,0.1c-0.2,0.2,0-0.1-0.1,0.1c-0.2,0.3,0-0.1-0.1,0.2c-0.1,0.4,0-0.1-0.1,0.2
+ c-0.1,0.4,0-0.1-0.1,0.3c-0.1,0.5,0-0.2-0.1,0.3c-0.1,0.6,0-0.2-0.1,0.4c-0.1,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4
+ "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M232.2,186.7c0,0.8,0-0.3,0,0.5c0,0.7,0-0.2,0,0.5c0.1,0.7,0-0.2,0,0.5c0.1,0.7,0-0.2,0.1,0.4c0.1,0.6,0-0.2,0.1,0.4
+ c0.1,0.5-0.1-0.2,0.1,0.3c0.2,0.4-0.1-0.1,0.1,0.3c0.2,0.3-0.1-0.1,0.1,0.2c0.2,0.2-0.1-0.1,0.1,0.2c0.2,0.1-0.1,0,0.1,0.1
+ c0.2,0-0.1,0,0.1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M232.8,186.7c0,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4c0.1,0.6,0-0.2,0,0.4c0.1,0.6,0-0.2,0.1,0.4c0.1,0.5,0-0.2,0.1,0.3
+ c0.1,0.4,0-0.1,0.1,0.3c0.1,0.4-0.1-0.1,0.1,0.2c0.1,0.3-0.1-0.1,0.1,0.2c0.2,0.2-0.1-0.1,0.1,0.1c0.2,0.1-0.1,0,0.1,0.1
+ c0.2,0-0.1,0,0.1,0c0.2-0.1,0,0,0.1-0.1c0.2-0.2,0,0.1,0.1-0.1c0.2-0.3,0,0.1,0.1-0.2c0.1-0.4,0,0.1,0.1-0.2c0.1-0.4,0,0.1,0.1-0.3
+ c0.1-0.5,0,0.2,0.1-0.3c0.1-0.6,0,0.2,0.1-0.4c0.1-0.6,0,0.2,0-0.4c0-0.6,0,0.2,0-0.4c0-0.6,0,0.2,0-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.3,184.4c-0.1-0.3,0,0.1-0.1-0.2c-0.2-0.3,0.1,0.1-0.1-0.2c-0.2-0.2,0.1,0.1-0.1-0.1c-0.2-0.1,0.1,0-0.1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.3,188.9c-0.1,0.3,0-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.1,0.1,0-0.1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M223.7,183.8c-0.2,0,0.1,0-0.1,0c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.3,0-0.1-0.1,0.2c-0.2,0.4,0-0.1-0.1,0.3c-0.1,0.5,0-0.2-0.1,0.3
+ c-0.1,0.6,0-0.2-0.1,0.4c-0.1,0.7,0-0.2-0.1,0.4c-0.1,0.7,0-0.2,0,0.5c0,0.5,0-0.2,0,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M223,186.5c0,0.1,0,0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M223.7,189.5c-0.2,0,0.1,0-0.1,0c-0.2-0.2,0.1,0.1-0.1-0.1c-0.2-0.3,0,0.1-0.1-0.2c-0.2-0.4,0,0.1-0.1-0.3c-0.1-0.5,0,0.2-0.1-0.3
+ c-0.1-0.6,0,0.2-0.1-0.4c-0.1-0.7,0,0.2-0.1-0.4c-0.1-0.7,0,0.2,0-0.5c0-0.5,0,0.2,0-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M223,186.8c0-0.1,0-0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M225.9,183.8c-0.2,0,0.1,0-0.1,0c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.3,0-0.1-0.1,0.2c-0.2,0.4,0-0.1-0.1,0.3c-0.1,0.5,0-0.2-0.1,0.3
+ c-0.1,0.6,0-0.2-0.1,0.4c-0.1,0.7,0-0.2-0.1,0.4c-0.1,0.7,0-0.2,0,0.5c0,0.7,0-0.2,0,0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M225.9,189.5c-0.2,0,0.1,0-0.1,0c-0.2-0.2,0.1,0.1-0.1-0.1c-0.2-0.3,0,0.1-0.1-0.2c-0.2-0.4,0,0.1-0.1-0.3c-0.1-0.5,0,0.2-0.1-0.3
+ c-0.1-0.6,0,0.2-0.1-0.4c-0.1-0.7,0,0.2-0.1-0.4c-0.1-0.7,0,0.2,0-0.5c0-0.7,0,0.2,0-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M225.9,188.9C225.8,188.9,225.9,188.9,225.9,188.9c-0.2-0.1,0,0-0.2-0.1c-0.2-0.2,0,0.1-0.1-0.1c-0.1-0.3,0,0.1-0.1-0.2
+ c-0.1-0.4,0,0.1-0.1-0.3c-0.1-0.5,0,0.2-0.1-0.3c-0.1-0.6,0,0.2,0-0.4c0-0.6,0,0.2,0-0.4c0-0.6,0,0.2,0-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M225.9,184.4C225.8,184.4,225.9,184.4,225.9,184.4c-0.2,0.1,0,0-0.2,0.1c-0.2,0.2,0-0.1-0.1,0.1c-0.1,0.3,0-0.1-0.1,0.2
+ c-0.1,0.4,0-0.1-0.1,0.3c-0.1,0.5,0-0.2-0.1,0.3c-0.1,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M150.9,183.2c-0.8-0.6,0.3,0.2-0.5-0.4c-0.8-0.6,0.3,0.2-0.5-0.4c-0.9-0.5,0.3,0.1-0.6-0.3c-0.9-0.4,0.3,0.1-0.6-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M150.9,193c-0.8,0.6,0.3-0.2-0.5,0.4c-0.8,0.6,0.3-0.2-0.5,0.4c-0.9,0.5,0.3-0.1-0.6,0.3c-0.9,0.4,0.3-0.1-0.6,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M152.9,186.8c0.2,1.3,0-0.4,0.1,0.9c0,1.4,0-0.4,0,0.9c-0.2,1.3,0.1-0.4-0.1,0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M150.3,188.1c0,0.8,0-0.3,0,0.6c-0.1,0.8,0.1-0.3-0.1,0.5c-0.2,0.8,0.1-0.3-0.2,0.5c-0.3,0.8,0.1-0.2-0.2,0.5
+ c-0.4,0.7,0.2-0.2-0.3,0.5c-0.5,0.6,0.2-0.2-0.4,0.4c-0.6,0.6,0.2-0.2-0.4,0.4c-0.7,0.5,0.2-0.1-0.5,0.3c-0.7,0.4,0.3-0.1-0.5,0.2
+ c-0.8,0.3,0.3-0.1-0.5,0.2c-0.8,0.2,0.3,0-0.5,0.1c-0.8,0.1,0.3,0-0.5,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M150.3,188.1c0-0.8,0,0.3,0-0.6c-0.1-0.8,0.1,0.3-0.1-0.5c-0.2-0.8,0.1,0.3-0.2-0.5c-0.3-0.8,0.1,0.2-0.2-0.5
+ c-0.4-0.7,0.2,0.2-0.3-0.5c-0.5-0.6,0.2,0.2-0.4-0.4c-0.6-0.6,0.2,0.2-0.4-0.4c-0.7-0.5,0.2,0.1-0.5-0.3c-0.7-0.4,0.3,0.1-0.5-0.2
+ c-0.8-0.3,0.3,0.1-0.5-0.2c-0.8-0.2,0.3,0-0.5-0.1c-0.8-0.1,0.3,0-0.5,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M140,189.4c-0.2-1.3,0,0.4-0.1-0.9c0-1.3,0,0.5,0-0.9c0.2-1.3-0.1,0.4,0.1-0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M142,183.2c0.8-0.6-0.3,0.2,0.5-0.4c0.8-0.6-0.3,0.2,0.5-0.4c0.9-0.5-0.3,0.1,0.6-0.3c0.9-0.4-0.3,0.1,0.6-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M144.2,194.3c-0.9-0.4,0.3,0.1-0.6-0.2c-0.9-0.4,0.3,0.2-0.6-0.3c-0.8-0.5,0.3,0.2-0.5-0.4c-0.8-0.6,0.2,0.2-0.5-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M142,183.2c-0.5,0.9,0.2-0.3-0.4,0.6c-0.5,0.9,0.2-0.3-0.3,0.6c-0.5,0.9,0.2-0.3-0.3,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M141,185c-0.4,0.7,0.1-0.2-0.2,0.4c-0.4,0.7,0.1-0.2-0.2,0.4c-0.3,0.7,0.1-0.2-0.2,0.4c-0.3,0.7,0.1-0.2-0.2,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M140,189.4c0.5,0.9-0.2-0.3,0.3,0.6c0.5,0.9-0.2-0.3,0.3,0.6c0.5,0.9-0.2-0.3,0.3,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M141,191.2c0.4,0.7-0.1-0.2,0.2,0.4c0.4,0.7-0.1-0.2,0.3,0.4c0.4,0.7-0.1-0.2,0.3,0.4c0.4,0.7-0.1-0.2,0.3,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.2,192.4C146.2,192.4,146.2,192.4,146.2,192.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.1,192.4c-0.5,0,0.2,0-0.4,0c-0.8-0.1,0.3,0.1-0.5-0.1c-0.8-0.3,0.3,0.1-0.5-0.2c-0.7-0.4,0.2,0.1-0.5-0.2
+ c-0.7-0.5,0.2,0.2-0.5-0.3c-0.6-0.5,0.2,0.2-0.4-0.4c-0.5-0.6,0.2,0.2-0.4-0.4c-0.5-0.7,0.1,0.2-0.3-0.5c-0.4-0.7,0.1,0.3-0.2-0.5
+ c-0.3-0.8,0.1,0.3-0.2-0.5c-0.2-0.8,0,0.3-0.1-0.5c-0.1-0.8,0,0.3,0-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.2,183.8c-0.8,0,0.3,0-0.5,0c-0.8,0.1,0.3-0.1-0.5,0.1c-0.8,0.3,0.3-0.1-0.5,0.2c-0.7,0.4,0.2-0.1-0.5,0.2
+ c-0.7,0.5,0.2-0.2-0.5,0.3c-0.6,0.5,0.2-0.2-0.4,0.4c-0.5,0.6,0.2-0.2-0.4,0.4c-0.5,0.7,0.1-0.2-0.3,0.5c-0.4,0.7,0.1-0.3-0.2,0.5
+ c-0.3,0.8,0.1-0.3-0.2,0.5c-0.2,0.8,0-0.3-0.1,0.5c-0.1,0.8,0-0.3,0,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.2,192.4c-0.8,0,0.3,0-0.5,0c-0.8-0.1,0.3,0.1-0.5-0.1c-0.8-0.3,0.3,0.1-0.5-0.2c-0.7-0.4,0.2,0.1-0.5-0.2
+ c-0.7-0.5,0.2,0.2-0.5-0.3c-0.6-0.5,0.2,0.2-0.4-0.4c-0.5-0.6,0.2,0.2-0.4-0.4c-0.5-0.7,0.1,0.2-0.3-0.5c-0.4-0.7,0.1,0.3-0.2-0.5
+ c-0.3-0.8,0.1,0.3-0.2-0.5c-0.2-0.8,0,0.3-0.1-0.5c-0.1-0.8,0,0.3,0-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M141,185c-0.5,1.1,0.2-0.4-0.3,0.7c-0.4,1.1,0.1-0.4-0.3,0.8c-0.3,1.2,0.1-0.4-0.2,0.8c-0.1,1.2,0-0.4-0.1,0.8
+ c0.1,1.2,0-0.4,0.1,0.8c0.2,1.2-0.1-0.4,0.2,0.8c0.4,1.2-0.1-0.4,0.3,0.8c0.5,1.1-0.2-0.4,0.3,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M148.2,181.9c0.9,0.4-0.3-0.1,0.6,0.2c0.9,0.4-0.3-0.2,0.6,0.3c0.8,0.5-0.3-0.2,0.5,0.4c0.8,0.6-0.2-0.2,0.5,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M150.4,193c-0.8,0.6,0.3-0.2-0.5,0.4c-0.8,0.6,0.3-0.2-0.5,0.4c-0.9,0.5,0.3-0.1-0.6,0.3c-0.9,0.4,0.3-0.1-0.6,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M151.3,191.2c0.5-1.1-0.2,0.4,0.3-0.7c0.4-1.1-0.1,0.4,0.3-0.8c0.3-1.2-0.1,0.4,0.2-0.8c0.1-1.2,0,0.4,0.1-0.8
+ c-0.1-1.2,0,0.4-0.1-0.8c-0.2-1.2,0.1,0.4-0.2-0.8c-0.4-1.2,0.1,0.4-0.3-0.8c-0.5-1.1,0.2,0.4-0.3-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M152.4,186.8c0.2,1.3,0-0.4,0.1,0.9c0,1.4,0-0.4,0,0.9c-0.2,1.3,0.1-0.4-0.1,0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M152.4,186.8c-0.5-0.9,0.2,0.3-0.4-0.6c-0.5-0.9,0.2,0.3-0.3-0.6c-0.5-0.9,0.2,0.3-0.3-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M151.3,185c-0.4-0.7,0.1,0.2-0.2-0.4c-0.4-0.7,0.1,0.2-0.2-0.4c-0.3-0.7,0.1,0.2-0.2-0.4c-0.3-0.7,0.1,0.2-0.2-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.2,183.8C146.2,183.8,146.2,183.8,146.2,183.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.1,183.8c-0.5,0,0.2,0-0.4,0c-0.8,0.1,0.3-0.1-0.5,0.1c-0.8,0.3,0.3-0.1-0.5,0.2c-0.7,0.4,0.2-0.1-0.5,0.2
+ c-0.7,0.5,0.2-0.2-0.5,0.3c-0.6,0.5,0.2-0.2-0.4,0.4c-0.5,0.6,0.2-0.2-0.4,0.4c-0.5,0.7,0.1-0.2-0.3,0.5c-0.4,0.7,0.1-0.3-0.2,0.5
+ c-0.3,0.8,0.1-0.3-0.2,0.5c-0.2,0.8,0-0.3-0.1,0.5c-0.1,0.8,0-0.3,0,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.2,194.3c1.2-0.1-0.4,0,0.8-0.1c1.2-0.2-0.4,0.1,0.8-0.2c1.1-0.4-0.4,0.2,0.7-0.3c1.1-0.5-0.3,0.2,0.7-0.4
+ c1-0.7-0.3,0.2,0.7-0.5c0.9-0.8-0.3,0.3,0.6-0.5c0.8-0.9-0.2,0.3,0.5-0.6c0.7-1-0.2,0.3,0.4-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M141,191.2c0.6,1-0.2-0.3,0.4,0.7c0.8,0.9-0.3-0.3,0.5,0.6c0.9,0.8-0.3-0.3,0.6,0.5c1,0.7-0.3-0.2,0.7,0.5c1,0.6-0.4-0.2,0.7,0.4
+ c1.1,0.4-0.4-0.1,0.7,0.3c1.1,0.3-0.4-0.1,0.8,0.2c1.2,0.1-0.4,0,0.8,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.2,181.9c-1.2,0.1,0.4,0-0.8,0.1c-1.2,0.2,0.4-0.1-0.8,0.2c-1.1,0.4,0.4-0.2-0.7,0.3c-1.1,0.5,0.3-0.2-0.7,0.4
+ c-1,0.7,0.3-0.2-0.7,0.5c-0.9,0.8,0.3-0.3-0.6,0.5c-0.8,0.9,0.2-0.3-0.5,0.6c-0.7,1,0.2-0.3-0.4,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M151.3,185c-0.6-1,0.2,0.3-0.4-0.7c-0.8-0.9,0.3,0.3-0.5-0.6c-0.9-0.8,0.3,0.3-0.6-0.5c-1-0.7,0.3,0.2-0.7-0.5
+ c-1-0.6,0.4,0.2-0.7-0.4c-1.1-0.4,0.4,0.1-0.7-0.3c-1.1-0.3,0.4,0.1-0.8-0.2c-1.2-0.1,0.4,0-0.8-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M150.4,193c0.5-0.9-0.2,0.3,0.3-0.6c0.5-0.9-0.2,0.3,0.3-0.6c0.5-0.9-0.2,0.3,0.3-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M151.3,191.2c0.4-0.7-0.1,0.2,0.2-0.4c0.4-0.7-0.1,0.2,0.3-0.4c0.4-0.7-0.1,0.2,0.3-0.4c0.4-0.7-0.1,0.2,0.3-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M161.8,51.9c0.3-0.4-0.1,0.1,0.2-0.3c0.4-0.3-0.1,0.1,0.3-0.2c0.5-0.3-0.2,0.1,0.3-0.2c0.5-0.2-0.2,0,0.3-0.1c0.5-0.1-0.2,0,0.4,0
+ c0.5,0-0.2,0,0.4,0c0.5,0.1-0.2-0.1,0.3,0.1c0.5,0.2-0.1-0.1,0.3,0.2c0.4,0.3-0.1-0.1,0.3,0.2c0.3,0.4-0.1-0.1,0.2,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M158.9,58.6c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M167.8,58.6c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M166,53.5C166,53.6,166,53.6,166,53.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M166,53.6C166,53.7,166,53.5,166,53.6c-0.2,0.7,0.1-0.1-0.1,0.5c-0.3,0.6,0.1-0.2-0.2,0.4c-0.4,0.5,0.1-0.2-0.3,0.4
+ c-0.5,0.5,0.2-0.1-0.3,0.3c-0.6,0.4,0.2-0.1-0.4,0.3c-0.6,0.3,0.2-0.1-0.4,0.2c-0.7,0.2,0.2,0-0.4,0.1c-0.7,0.1,0.2,0-0.5,0
+ c-0.7,0,0.2,0-0.5,0c-0.7-0.2,0.2,0.1-0.4-0.1c-0.6-0.3,0.2,0.1-0.4-0.2c-0.6-0.4,0.2,0.1-0.4-0.3c-0.5-0.4,0.2,0.2-0.3-0.3
+ c-0.4-0.5,0.1,0.2-0.3-0.4c-0.3-0.6,0.1,0.2-0.2-0.4c-0.2-0.6,0,0.2-0.1-0.4c0-0.1,0,0,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M160.7,53.6C160.7,53.6,160.7,53.6,160.7,53.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M165.5,66.6C165.5,66.5,165.5,66.6,165.5,66.6c0-0.1,0,0,0-0.1c0-0.1,0,0,0,0c0.1-0.1,0,0,0,0c0.1,0,0,0,0,0c0.1,0,0,0,0.1,0
+ c0.1,0,0,0,0.1,0c0.1,0,0,0,0.1,0c0.1,0,0,0,0.1,0c0.1,0,0,0,0,0c0.1,0.1,0,0,0,0c0,0.1,0,0,0,0c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1"
+ />
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M166.6,66.6c0,0.3,0-0.1,0,0.2c-0.1,0.2,0-0.1-0.1,0.2c-0.1,0.2,0.1-0.1-0.1,0.1c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.1,0.1,0-0.1,0.1
+ c-0.2,0.1,0.1,0-0.2,0.1c-0.3,0,0.1,0-0.2,0c-0.3,0,0.1,0-0.2,0c-0.2-0.1,0.1,0-0.2-0.1c-0.2-0.1,0.1,0.1-0.1-0.1
+ c-0.2-0.2,0.1,0.1-0.1-0.1c-0.1-0.2,0,0.1-0.1-0.1c-0.1-0.2,0,0.1-0.1-0.2c0-0.3,0,0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M161.6,57.6c-0.1-0.4,0,0.1-0.1-0.3c-0.1-0.4,0,0.1-0.1-0.3c-0.1-0.4,0,0.1-0.1-0.2c-0.1-0.3,0,0.1-0.1-0.2c-0.1-0.3,0,0.1-0.1-0.2
+ c-0.1-0.3,0,0.1-0.1-0.2c-0.1-0.2,0,0.1-0.1-0.2c-0.1-0.2,0.1,0.1-0.1-0.1c-0.1-0.2,0.1,0-0.1-0.1c-0.2-0.1,0.1,0-0.1-0.1
+ c-0.2-0.1,0.1,0-0.1,0c-0.2,0,0.1,0-0.1,0c-0.2,0,0.1,0-0.1,0c-0.2,0.1,0.1,0-0.1,0c-0.2,0.1,0,0-0.1,0.1c-0.2,0.2,0-0.1-0.1,0.1
+ c-0.1,0.2,0-0.1-0.1,0.1c-0.1,0.2,0-0.1-0.1,0.2c-0.1,0.3,0-0.1-0.1,0.2c-0.1,0.3,0-0.1-0.1,0.2c-0.1,0.3,0-0.1-0.1,0.2
+ c-0.1,0.4,0-0.1-0.1,0.2c-0.1,0.4,0-0.1-0.1,0.3c-0.1,0.4,0-0.1-0.1,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M166.6,66.6c0,0.2,0-0.1,0,0.2c-0.1,0.2,0-0.1-0.1,0.2c-0.1,0.2,0-0.1-0.1,0.1c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.2,0.1,0-0.1,0.1
+ c-0.2,0.1,0.1,0-0.2,0.1c-0.2,0.1,0.1,0-0.2,0c-0.2,0,0.1,0-0.2,0c-0.2,0,0.1,0-0.2,0c-0.2-0.1,0.1,0-0.2-0.1
+ c-0.2-0.1,0.1,0.1-0.1-0.1c-0.2-0.2,0.1,0.1-0.1-0.1c-0.1-0.2,0,0.1-0.1-0.1c-0.1-0.2,0,0.1-0.1-0.2c0-0.2,0,0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M167.3,57.6c-0.1-0.4,0,0.1-0.1-0.3c-0.1-0.4,0,0.1-0.1-0.3c-0.1-0.4,0,0.1-0.1-0.2c-0.1-0.3,0,0.1-0.1-0.2c-0.1-0.3,0,0.1-0.1-0.2
+ c-0.1-0.3,0,0.1-0.1-0.2c-0.1-0.2,0,0.1-0.1-0.2c-0.1-0.2,0.1,0.1-0.1-0.1c-0.1-0.2,0.1,0-0.1-0.1c-0.2-0.1,0.1,0-0.1-0.1
+ c-0.2-0.1,0.1,0-0.1,0c-0.2,0,0.1,0-0.1,0c-0.2,0,0.1,0-0.1,0c-0.2,0.1,0.1,0-0.1,0c-0.2,0.1,0,0-0.1,0.1c-0.2,0.2,0-0.1-0.1,0.1
+ c-0.1,0.2,0-0.1-0.1,0.1c-0.1,0.2,0-0.1-0.1,0.2c-0.1,0.3,0-0.1-0.1,0.2c-0.1,0.3,0-0.1-0.1,0.2c-0.1,0.3,0-0.1-0.1,0.2
+ c-0.1,0.4,0-0.1-0.1,0.2c-0.1,0.4,0-0.1-0.1,0.3c-0.1,0.4,0-0.1-0.1,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M166,66.6C166,66.7,166,66.6,166,66.6c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0c-0.1,0.1,0,0,0,0c-0.1,0,0,0,0,0c-0.1,0,0,0-0.1,0
+ c-0.1,0,0,0-0.1,0c-0.1,0,0,0-0.1,0c-0.1,0,0,0-0.1,0c-0.1,0,0,0,0,0c-0.1-0.1,0,0,0,0c0-0.1,0,0,0,0c0-0.1,0,0,0-0.1
+ c0-0.1,0,0,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M159.4,59.8c0.1,0.6,0-0.2,0,0.4c0.1,0.5,0-0.2,0,0.3c0.1,0.5,0-0.2,0,0.3c0.1,0.4,0-0.1,0,0.3c0.1,0.4,0-0.1,0,0.3
+ c0.1,0.4,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2c0.1,0.2,0-0.1,0,0.2
+ c0.1,0.2,0-0.1,0,0.1c0.1,0.2,0-0.1,0,0.1c0.1,0.2,0-0.1,0,0.1c0.1,0.2,0-0.1,0,0.1c0.1,0.2,0-0.1,0,0.1c0.1,0.1,0,0,0,0.1
+ c0.1,0.1,0,0,0,0.1c0.1,0.1,0,0,0,0.1c0.1,0.1,0,0,0,0.1c0.1,0.1,0,0,0,0.1c0.1,0.1,0,0,0,0.1c0.1,0.1,0,0,0.1,0c0.1,0,0,0,0.1,0
+ c0.1,0,0,0,0.1,0c0.1,0,0,0,0.1,0c0.1-0.1,0,0,0.1,0c0.1-0.1,0,0,0.1-0.1c0.1-0.1,0,0,0-0.1c0.1-0.1,0,0,0-0.1c0.1-0.1,0,0,0-0.1
+ c0.1-0.2,0,0.1,0-0.1c0.1-0.2,0,0.1,0-0.1c0.1-0.2,0,0.1,0-0.1c0.1-0.2,0,0.1,0-0.1c0.1-0.2,0,0.1,0-0.2c0.1-0.3,0,0.1,0-0.2
+ c0.1-0.3,0,0.1,0-0.2c0.1-0.3,0,0.1,0-0.2c0.1-0.3,0,0.1,0-0.2c0.1-0.4,0,0.1,0-0.2c0.1-0.4,0,0.1,0-0.3c0.1-0.5,0,0.2,0-0.3
+ c0.1-0.5,0,0.2,0-0.3c0.1-0.5,0,0.2,0-0.4c0.1-0.6,0,0.2,0-0.4c0.1-0.6,0,0.2,0-0.4c0.1-0.6,0,0.2,0-0.4c0.1-0.6,0,0.2,0-0.4
+ c0.1-0.6,0,0.2,0-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M160.1,66.6c0-0.3,0,0.1,0-0.2c0.1-0.2,0,0.1,0.1-0.2c0.1-0.2-0.1,0.1,0.1-0.1c0.2-0.2-0.1,0.1,0.1-0.1c0.2-0.1-0.1,0,0.1-0.1
+ c0.2-0.1-0.1,0,0.2-0.1c0.3,0-0.1,0,0.2,0c0.3,0-0.1,0,0.2,0c0.2,0.1-0.1,0,0.2,0.1c0.2,0.1-0.1-0.1,0.1,0.1
+ c0.2,0.2-0.1-0.1,0.1,0.1c0.1,0.2,0-0.1,0.1,0.1c0.1,0.2,0-0.1,0.1,0.2c0,0.3,0-0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M160.6,66.6C160.6,66.5,160.6,66.6,160.6,66.6c0-0.1,0,0,0-0.1c0-0.1,0,0,0,0c0.1-0.1,0,0,0,0c0.1,0,0,0,0,0c0.1,0,0,0,0.1,0
+ c0.1,0,0,0,0.1,0c0.1,0,0,0,0.1,0c0.1,0,0,0,0.1,0c0.1,0,0,0,0,0c0.1,0.1,0,0,0,0c0,0.1,0,0,0,0c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1"
+ />
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M161.6,66.6c0,0.3,0-0.1,0,0.2c-0.1,0.2,0-0.1-0.1,0.2c-0.1,0.2,0.1-0.1-0.1,0.1c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.1,0.1,0-0.1,0.1
+ c-0.2,0.1,0.1,0-0.2,0.1c-0.3,0,0.1,0-0.2,0c-0.3,0,0.1,0-0.2,0c-0.2-0.1,0.1,0-0.2-0.1c-0.2-0.1,0.1,0.1-0.1-0.1
+ c-0.2-0.2,0.1,0.1-0.1-0.1c-0.1-0.2,0,0.1-0.1-0.1c-0.1-0.2,0,0.1-0.1-0.2c0-0.3,0,0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M161.1,66.6C161.1,66.7,161.2,66.6,161.1,66.6c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0c-0.1,0.1,0,0,0,0c-0.1,0,0,0,0,0c-0.1,0,0,0-0.1,0
+ c-0.1,0,0,0-0.1,0c-0.1,0,0,0-0.1,0c-0.1,0,0,0-0.1,0c-0.1,0,0,0,0,0c-0.1-0.1,0,0,0,0c0-0.1,0,0,0,0c0-0.1,0,0,0-0.1
+ c0-0.1,0,0,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M158.9,58.6c0.2-0.1,0.3-0.1,0.5-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M161.6,58c0.4,0-0.1,0,0.3,0c2.2-0.1-0.7,0,1.5-0.1c2.2,0.1-0.7-0.1,1.5,0.1c0.4,0-0.1,0,0.3,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M167.3,58.5c0.2,0,0.3,0.1,0.5,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M165.1,58.3c0.1,0.6,0-0.2,0,0.4c0.1,0.6,0-0.2,0,0.4c0.1,0.6,0-0.2,0,0.4c0.1,0.6,0-0.2,0,0.4c0.1,0.5,0-0.2,0,0.4
+ c0.1,0.5,0-0.2,0,0.3c0.1,0.5,0-0.2,0,0.3c0.1,0.4,0-0.1,0,0.3c0.1,0.4,0-0.1,0,0.3c0.1,0.4,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2
+ c0.1,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2c0.1,0.2,0-0.1,0,0.2c0.1,0.2,0-0.1,0,0.2c0.1,0.2,0-0.1,0,0.1c0.1,0.2,0-0.1,0,0.1
+ c0.1,0.2,0-0.1,0,0.1c0.1,0.2,0-0.1,0,0.1c0.1,0.2,0-0.1,0,0.1c0.1,0.1,0,0,0,0.1c0.1,0.1,0,0,0,0.1c0.1,0.1,0,0,0,0.1
+ c0.1,0.1,0,0,0,0.1c0.1,0.1,0,0,0.1,0c0.1,0,0,0,0.1,0c0.1,0,0,0,0.1,0c0.1,0,0,0,0.1,0c0.1-0.1,0,0,0.1,0c0.1-0.1,0,0,0.1-0.1
+ c0.1-0.1,0,0,0.1-0.1c0.1-0.1,0,0,0-0.1c0.1-0.1,0,0,0-0.1c0.1-0.1,0,0.1,0-0.1c0.1-0.2,0,0.1,0-0.1c0.1-0.2,0,0.1,0-0.1
+ c0.1-0.2,0,0.1,0-0.1c0.1-0.2,0,0.1,0-0.1c0.1-0.2,0,0.1,0-0.2c0.1-0.3,0,0.1,0-0.2c0.1-0.3,0,0.1,0-0.2c0.1-0.3,0,0.1,0-0.2
+ c0.1-0.4,0,0.1,0-0.2c0.1-0.4,0,0.1,0-0.3c0.1-0.4,0,0.1,0-0.3c0.1-0.5,0,0.2,0-0.3c0.1-0.5,0,0.2,0-0.3c0.1-0.6,0,0.2,0-0.4
+ c0.1-0.6,0,0.2,0-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M158.9,58.2c0.2,0,0.3-0.1,0.5-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M161.6,57.7c0.4,0-0.1,0,0.3,0c2.2-0.1-0.7,0,1.5-0.1c2.2,0.1-0.7-0.1,1.5,0.1c0.4,0-0.1,0,0.3,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M167.3,58.1c0.2,0,0.3,0.1,0.5,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M166,53.6c0,0.7,0-0.2,0,0.4c-0.2,0.6,0.1-0.2-0.1,0.4c-0.3,0.6,0.1-0.2-0.2,0.4c-0.4,0.5,0.1-0.2-0.3,0.4
+ c-0.5,0.5,0.2-0.1-0.3,0.3c-0.6,0.4,0.2-0.1-0.4,0.2c-0.6,0.3,0.2-0.1-0.4,0.2c-0.7,0.2,0.2,0-0.4,0.1c-0.7,0.1,0.2,0-0.5,0
+ c-0.7,0,0.2,0-0.5,0c-0.7-0.2,0.2,0.1-0.4-0.1c-0.6-0.3,0.2,0.1-0.4-0.2c-0.6-0.4,0.2,0.1-0.4-0.2c-0.5-0.4,0.2,0.2-0.3-0.3
+ c-0.4-0.5,0.1,0.2-0.3-0.4c-0.3-0.6,0.1,0.2-0.2-0.4c-0.2-0.6,0,0.2-0.1-0.4c-0.1-0.6,0,0.2,0-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M160.1,66.6c0-0.2,0,0.1,0-0.2c0.1-0.2,0,0.1,0.1-0.2c0.1-0.2,0,0.1,0.1-0.1c0.2-0.2-0.1,0.1,0.1-0.1c0.2-0.2-0.1,0,0.1-0.1
+ c0.2-0.1-0.1,0,0.2-0.1c0.2-0.1-0.1,0,0.2,0c0.2,0-0.1,0,0.2,0c0.2,0-0.1,0,0.2,0c0.2,0.1-0.1,0,0.2,0.1c0.2,0.1-0.1-0.1,0.1,0.1
+ c0.2,0.2-0.1-0.1,0.1,0.1c0.1,0.2,0-0.1,0.1,0.1c0.1,0.2,0-0.1,0.1,0.2c0,0.2,0-0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M161.7,66.6c0,0.2,0-0.1,0,0.2c-0.1,0.2,0-0.1-0.1,0.2c-0.1,0.2,0-0.1-0.1,0.1c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.2,0.1,0-0.1,0.1
+ c-0.2,0.1,0.1,0-0.2,0.1c-0.2,0.1,0.1,0-0.2,0c-0.2,0,0.1,0-0.2,0c-0.2,0,0.1,0-0.2,0c-0.2-0.1,0.1,0-0.2-0.1
+ c-0.2-0.1,0.1,0.1-0.1-0.1c-0.2-0.2,0,0.1-0.1-0.1c-0.1-0.2,0,0.1-0.1-0.1c-0.1-0.2,0,0.1-0.1-0.2c0-0.2,0,0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M165,66.6c0-0.3,0,0.1,0-0.2c0.1-0.2,0,0.1,0.1-0.2c0.1-0.2-0.1,0.1,0.1-0.1c0.2-0.2-0.1,0.1,0.1-0.1c0.2-0.1-0.1,0,0.1-0.1
+ c0.2-0.1-0.1,0,0.2-0.1c0.3,0-0.1,0,0.2,0c0.3,0-0.1,0,0.2,0c0.2,0.1-0.1,0,0.2,0.1c0.2,0.1-0.1-0.1,0.1,0.1
+ c0.2,0.2-0.1-0.1,0.1,0.1c0.1,0.2,0-0.1,0.1,0.1c0.1,0.2,0-0.1,0.1,0.2c0,0.3,0-0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M165,66.6c0-0.2,0,0.1,0-0.2c0.1-0.2,0,0.1,0.1-0.2c0.1-0.2,0,0.1,0.1-0.1c0.2-0.2-0.1,0.1,0.1-0.1c0.2-0.2-0.1,0,0.1-0.1
+ c0.2-0.1-0.1,0,0.2-0.1c0.2-0.1-0.1,0,0.2,0c0.2,0-0.1,0,0.2,0c0.2,0-0.1,0,0.2,0c0.2,0.1-0.1,0,0.2,0.1c0.2,0.1-0.1-0.1,0.1,0.1
+ c0.2,0.2-0.1-0.1,0.1,0.1c0.1,0.2,0-0.1,0.1,0.1c0.1,0.2,0-0.1,0.1,0.2c0,0.2,0-0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.8,181c-1.4,0.1,0.5-0.1-0.9,0.1c-1.4,0.3,0.4-0.1-0.9,0.2c-1.3,0.5,0.4-0.2-0.9,0.3c-1.3,0.6,0.4-0.2-0.8,0.4
+ c-1.2,0.8,0.4-0.3-0.8,0.6c-1,1,0.3-0.3-0.7,0.7c-0.9,1.1,0.3-0.4-0.6,0.8c-0.8,1.2,0.2-0.4-0.5,0.8c-0.6,1.3,0.2-0.5-0.4,0.9
+ c-0.4,1.4,0.1-0.5-0.3,0.9c0,0.2,0-0.1,0,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M140,189.4c0,0.2,0-0.1,0,0.1c0.4,1.4-0.2-0.5,0.3,0.9c0.5,1.3-0.2-0.4,0.4,0.9c0.7,1.3-0.3-0.4,0.5,0.8c0.9,1.1-0.3-0.4,0.6,0.8
+ c1,1-0.4-0.3,0.7,0.7c1.1,0.9-0.4-0.3,0.8,0.6c1.2,0.7-0.4-0.2,0.8,0.4c1.3,0.5-0.5-0.1,0.9,0.3c1.4,0.3-0.5-0.1,0.9,0.2
+ c1.4,0.1-0.5,0,0.9,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M147.2,195.2c1,0-0.3,0,0.7,0c1-0.1-0.3,0.1,0.7-0.1c1-0.2-0.3,0.1,0.7-0.2c1-0.3-0.3,0.1,0.6-0.2c0.9-0.4-0.3,0.2,0.6-0.3
+ c0.9-0.5-0.3,0.2,0.6-0.4c0.8-0.6-0.3,0.2,0.5-0.4c0.8-0.7-0.2,0.2,0.5-0.5c0.7-0.8-0.2,0.3,0.5-0.5c0.6-0.8-0.2,0.3,0.4-0.6
+ c0.5-0.9-0.2,0.3,0.3-0.6c0.4-0.9-0.1,0.3,0.3-0.6c0.4-1-0.1,0.3,0.2-0.7c0.3-1-0.1,0.3,0.2-0.7c0.2-1,0,0.3,0.1-0.7
+ c0.1-1,0,0.3,0-0.7c0-1,0,0.3,0-0.7c-0.1-1,0.1,0.3-0.1-0.7c-0.2-1,0.1,0.3-0.2-0.7c-0.3-1,0.1,0.3-0.2-0.7
+ c-0.4-0.9,0.2,0.3-0.3-0.6c-0.5-0.9,0.2,0.3-0.3-0.6c-0.6-0.8,0.2,0.3-0.4-0.6c-0.7-0.8,0.2,0.2-0.5-0.5c-0.7-0.7,0.3,0.2-0.5-0.5
+ c-0.8-0.6,0.3,0.2-0.5-0.4c-0.9-0.5,0.3,0.2-0.6-0.4c-0.9-0.5,0.3,0.1-0.6-0.3c-0.9-0.4,0.3,0.1-0.6-0.2c-1-0.3,0.3,0.1-0.7-0.2
+ c-1-0.2,0.3,0-0.7-0.1c-1-0.1,0.3,0-0.7,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.7,195.1c1.4-0.1-0.5,0.1,0.9-0.1c1.4-0.3-0.4,0.1,0.9-0.2c1.3-0.5-0.4,0.2,0.9-0.3c1.3-0.6-0.4,0.2,0.8-0.4
+ c1.2-0.8-0.4,0.3,0.8-0.6c1-1-0.3,0.3,0.7-0.7c0.9-1.1-0.3,0.4,0.6-0.7c0.7-1.2-0.2,0.4,0.5-0.8c0.6-1.3-0.2,0.5,0.4-0.9
+ c0.4-1.4-0.1,0.5,0.3-0.9c0.2-1.4,0,0.5,0.1-1c0-1.4,0,0.5,0-1c-0.2-1.4,0.1,0.5-0.1-1c-0.4-1.4,0.2,0.5-0.3-0.9
+ c-0.5-1.3,0.2,0.4-0.4-0.9c-0.7-1.2,0.3,0.4-0.5-0.8c-0.9-1.1,0.3,0.4-0.6-0.7c-1-1,0.4,0.3-0.7-0.7c-1.1-0.8,0.4,0.3-0.8-0.6
+ c-1.2-0.7,0.4,0.2-0.8-0.4c-1.3-0.5,0.4,0.1-0.9-0.3c-1.3-0.3,0.5,0.1-0.9-0.2c-1.4-0.1,0.5,0-0.9-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.8,195.2c0.1,0,0.3,0,0.4,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M147.2,195.2c0.8-0.1-0.3,0,0.5-0.1c1.4-0.3-0.4,0.1,0.9-0.2c1.3-0.5-0.4,0.2,0.9-0.3c1.3-0.6-0.4,0.2,0.8-0.4
+ c1.2-0.8-0.4,0.3,0.8-0.6c1-1-0.3,0.3,0.7-0.7c0.9-1.1-0.3,0.4,0.6-0.8c0.8-1.2-0.2,0.4,0.5-0.8c0.6-1.3-0.2,0.5,0.4-0.9
+ c0.4-1.4-0.1,0.5,0.3-0.9c0.2-1.4,0,0.5,0.1-1c0-1.5,0,0.5,0-1c-0.2-1.4,0.1,0.5-0.1-1c-0.4-1.4,0.2,0.5-0.3-0.9
+ c-0.5-1.3,0.2,0.4-0.4-0.9c-0.7-1.3,0.3,0.4-0.5-0.8c-0.9-1.1,0.3,0.4-0.6-0.8c-1-1,0.4,0.3-0.7-0.7c-1.1-0.9,0.4,0.3-0.8-0.6
+ c-1.2-0.7,0.4,0.2-0.8-0.4c-1.3-0.5,0.5,0.1-0.9-0.3c-1.4-0.3,0.5,0.1-0.9-0.2c-0.8-0.1,0.3,0-0.5-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M147.2,181c-0.1,0-0.3,0-0.4,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.7,181.1c-1.4,0.1,0.5-0.1-0.9,0.1c-1.4,0.3,0.4-0.1-0.9,0.2c-1.3,0.5,0.4-0.2-0.9,0.3c-1.3,0.6,0.4-0.2-0.8,0.4
+ c-1.2,0.8,0.4-0.3-0.8,0.6c-1,1,0.3-0.3-0.7,0.7c-0.9,1.1,0.3-0.4-0.6,0.7c-0.7,1.2,0.2-0.4-0.5,0.8c-0.6,1.3,0.2-0.5-0.4,0.9
+ c-0.4,1.3,0.1-0.4-0.2,0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M140.1,189.6c0.3,1.3-0.1-0.4,0.2,0.8c0.5,1.3-0.2-0.4,0.4,0.9c0.7,1.2-0.3-0.4,0.5,0.8c0.9,1.1-0.3-0.4,0.6,0.7
+ c1,1-0.4-0.3,0.7,0.7c1.1,0.8-0.4-0.3,0.8,0.6c1.2,0.7-0.4-0.2,0.8,0.4c1.3,0.5-0.4-0.1,0.9,0.3c1.3,0.3-0.5-0.1,0.9,0.2
+ c1.4,0.1-0.5,0,0.9,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,157.8c0.1-0.4,0,0.1,0-0.2c0.2-0.4-0.1,0.1,0.1-0.2c0.3-0.3-0.1,0.1,0.2-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,134.6c0.1,0.4,0-0.1,0,0.2c0.2,0.4-0.1-0.1,0.1,0.2c0.3,0.3-0.1-0.1,0.2,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M82.2,133.3c-0.3,0.6,0.1-0.2-0.2,0.4c-0.1,0.7,0-0.2-0.1,0.5c0.1,0.8-0.1-0.3,0.1,0.5c0.3,0.8-0.1-0.3,0.2,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M82.2,157.2c-0.3,0.8,0.1-0.3-0.2,0.6c-0.1,0.8,0-0.3-0.1,0.5c0.1,0.7-0.1-0.2,0.1,0.5c0.3,0.6-0.1-0.2,0.2,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M84.9,131.1c0.1-0.7,0,0.2,0.1-0.5c0.1-0.6,0,0.2,0-0.4c0-0.5,0,0.2,0-0.3c0-0.4,0,0.1,0-0.3c0-0.3,0,0.1,0-0.2c0-0.2,0,0.1,0-0.2
+ c0-0.2,0,0.1,0-0.1c0-0.1,0,0,0-0.1c-0.1,0,0,0,0,0c-0.1,0.1,0,0-0.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M84.9,163.3C85,163.4,84.9,163.3,84.9,163.3C85.1,163.3,85,163.3,84.9,163.3c0.1-0.1,0.1,0.1,0.1,0c0-0.2,0,0.1,0-0.1
+ c0-0.2,0,0.1,0-0.2c0-0.3,0,0.1,0-0.2c0-0.4,0,0.1,0-0.3c0-0.5,0,0.2,0-0.3c-0.1-0.6,0,0.2,0-0.4c-0.1-0.7,0,0.2-0.1-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M129.2,213.2c-0.2,0.6,0.1-0.2-0.2,0.4c-0.4,0.5,0.2-0.1-0.3,0.3c-0.5,0.3,0.2-0.1-0.3,0.2c-0.6,0.1,0.2,0-0.4,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M128.9,213.2c0,0.1,0.1,0.2,0.1,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M111.7,214.1C111.7,214.1,111.7,214.1,111.7,214.1C111.7,214,111.7,214.1,111.7,214.1c0-0.2,0,0,0-0.2c0-0.2,0,0.1,0-0.1
+ c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.2c0.1-0.5,0,0.2,0.1-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M198.7,214.1c-0.6-0.1,0.2,0.1-0.4-0.1c-0.5-0.3,0.2,0.1-0.3-0.2c-0.4-0.4,0.1,0.2-0.3-0.3c-0.3-0.5,0.1,0.2-0.2-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M197.6,213.4c0.1-0.1,0.1-0.2,0.2-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M214.9,213.2c0.1,0.5,0-0.2,0.1,0.4c0,0.2,0-0.1,0,0.2c0,0.2,0-0.1,0,0.1c0,0.2,0-0.1,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1
+ c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.9,142.2c0,0.2,0-0.1,0,0.1c-0.1,0.1,0.1,0-0.1,0.1c-0.2,0,0.1,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.3,141.6C101.3,141.7,101.3,141.6,101.3,141.6C101.3,141.8,101.3,141.7,101.3,141.6c-0.1,0.1,0,0.1-0.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.9,142.2c0-0.3,0,0.1,0-0.2c-0.2-0.3,0.1,0.1-0.1-0.2c-0.3-0.2,0.1,0.1-0.2-0.1c-0.3-0.1,0.1,0-0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.6,142.4c-0.3-0.1,0.1,0-0.2-0.1c-0.4-0.1,0.1,0.1-0.3-0.1c-0.3-0.1,0.1,0-0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101,142.2C100.8,142.1,101,142.2,101,142.2c-0.4-0.3,0,0-0.3-0.2c-0.3-0.3,0.1,0.1-0.2-0.2c-0.2-0.3,0.1,0.1-0.1-0.2
+ c-0.1-0.3,0,0.1-0.1-0.2c0-0.2,0,0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M100.2,141.1C100.2,141.1,100.2,141.1,100.2,141.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.6,142.4c0-0.3,0,0.1,0-0.2c-0.1-0.3,0.1,0.1-0.1-0.2c-0.2-0.2,0.1,0.1-0.1-0.2c-0.3-0.2,0.1,0-0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M100.2,140C100.2,139.9,100.2,139.9,100.2,140"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M100.2,139.9c0-0.3,0,0.1,0-0.2c0.1-0.4-0.1,0.1,0.1-0.3c0.3-0.4-0.1,0.1,0.2-0.2c0.4-0.3-0.1,0.1,0.2-0.2c0.3-0.2-0.1,0.1,0.2-0.1
+ "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101,138.9C101.1,138.8,100.9,138.9,101,138.9c0.5-0.2-0.1,0,0.4-0.2c0.4-0.1-0.1,0,0.3-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.6,138.6c0.2,0-0.1,0,0.1,0c0.1,0,0,0,0.1,0c0.1,0.1,0,0,0.1,0.1c0,0.1,0-0.1,0,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M98.6,127C98.6,127.2,98.5,127,98.6,127c0.2,0.5,0-0.1,0.2,0.4c0.3,0.8-0.1-0.3,0.2,0.5c0.2,0.5-0.1-0.2,0.1,0.3
+ c0.2,0.5-0.1-0.2,0.1,0.4c0.2,0.6-0.1-0.2,0.1,0.4c0.1,0.6,0-0.2,0.1,0.4c0.2,1.1-0.1-0.4,0.2,0.7c0.1,1,0-0.3,0.1,0.7
+ c0.1,1,0-0.3,0,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.6,138.6c0,0.3,0-0.1,0,0.2c-0.1,0.3,0.1-0.1-0.1,0.2c-0.2,0.2,0.1-0.1-0.1,0.2c-0.3,0.2,0.1,0-0.2,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.2,139.3C101.3,139.3,101.2,139.3,101.2,139.3C101.3,139.3,101.3,139.3,101.2,139.3C101.3,139.3,101.3,139.3,101.2,139.3
+ c0.1,0.1,0.1,0,0.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M101.9,138.8c0,0.3,0-0.1,0,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.3,0.2,0.1-0.1-0.2,0.1c-0.3,0.1,0.1,0-0.2,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M141.2,199.7c-0.7-0.1,0.2,0-0.5,0c-1,0.3,0.3-0.2-0.7,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M142.1,200.3C141.9,200.3,142.1,200.3,142.1,200.3c-1,0.2,0.2-0.1-0.7,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M154.7,187.4c0.7,1.1-0.2-0.4,0.5,0.7c0.7,1.2-0.2-0.4,0.5,0.8c0.6,1.4-0.2-0.5,0.4,0.9c0.6,1.5-0.2-0.5,0.4,1
+ c0.5,1.7-0.1-0.6,0.3,1.1c0.4,1.8-0.1-0.6,0.2,1.2c0.2,2,0-0.7,0.1,1.3c0,2.1,0-0.7,0,1.4c-0.3,1.9,0.1-0.6-0.2,1.3
+ c-0.5,1.7,0.2-0.5-0.4,1.1c-0.8,1.5,0.3-0.5-0.6,1c-1.1,1.2,0.4-0.4-0.8,0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M154.7,187.4c1.1,0.7-0.3-0.3,0.7,0.5c1.1,0.9-0.4-0.3,0.7,0.6c1.1,1.1-0.4-0.4,0.8,0.7c1.2,1.3-0.4-0.5,0.8,0.9
+ c1.2,1.6-0.4-0.5,0.8,1c1.1,1.8-0.3-0.6,0.7,1.2c0.9,2.1-0.3-0.7,0.6,1.4c0.6,2.3-0.1-0.8,0.4,1.5c0.1,2.2,0-0.7,0.1,1.4
+ c-0.3,1.9,0.2-0.6-0.3,1.3c-0.8,1.7,0.4-0.5-0.6,1.1c-1.3,1.4,0.5-0.4-0.9,0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M155.2,200c-0.4,0.4,0.1-0.1-0.3,0.3c-0.4,0.4,0.1-0.1-0.3,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M155.2,200c1.4-0.5-0.5,0.1,1-0.3c1.6-0.1-0.5,0,1.1,0c1.7,0.3-0.5-0.2,1.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M158.3,199.9c-0.6,0.4,0.2-0.1-0.4,0.3c-0.7,0.4,0.2-0.1-0.4,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M154.7,200.6c-1.2,0.9,0.4-0.3-0.8,0.6c-1.3,0.7,0.5-0.2-0.9,0.4c-1.5,0.5,0.5-0.1-1,0.3c-1.6,0.3,0.5-0.1-1,0.2
+ c-1.6,0.1,0.5,0-1.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M154.7,200.6c1.3-0.4-0.4,0.1,0.9-0.2c1.4-0.1-0.5,0,0.9,0c1.5,0.2-0.5-0.1,1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M157.4,200.5c-1.9,1.3,0.7-0.4-1.3,0.8c-2,1,0.7-0.3-1.4,0.6c-2.1,0.7,0.7-0.2-1.4,0.4c-2.2,0.4,0.7-0.1-1.5,0.2
+ c-2.3,0.1,0.8,0-1.5,0.1c-2.4-0.1,0.8,0.1-1.6-0.1c-2.5-0.3,0.8,0.1-1.7-0.2c-2.7-0.6,0.9,0.2-1.8-0.4c-2.9-0.9,1,0.3-1.9-0.6
+ c-3-1.2,1,0.4-2-0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M141.4,200.5c-1-0.4,0.3,0.1-0.7-0.3c-1-0.4,0.3,0.1-0.6-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M140.1,199.9c-2.3-1.3,0.7,0.5-1.5-0.9c-1.8-1.6,0.5,0.6-1.2-1.1c-1.3-1.8,0.3,0.7-0.8-1.3c-0.8-2.1,0.2,0.7-0.5-1.4
+ c-0.2-2.3,0,0.8-0.1-1.5c0.3-2.1-0.2,0.7,0.2-1.4c0.6-1.9-0.3,0.6,0.4-1.2c0.8-1.6-0.3,0.5,0.6-1c0.9-1.3-0.3,0.4,0.6-0.9
+ c1-1.1-0.3,0.3,0.7-0.7c1-0.9-0.3,0.3,0.7-0.6c1-0.8-0.3,0.2,0.7-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M221,200.5c-0.2,2.4,0.2-0.8-0.2,1.6c-0.7,2.3,0.3-0.7-0.5,1.5c-1.1,2.1,0.5-0.7-0.8,1.4c-1.5,1.8,0.6-0.5-1.1,1.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M218.5,206.2c-1.9,1.4,0.7-0.4-1.3,0.9c-2.1,0.9,0.7-0.2-1.4,0.5c-2.2,0.4,0.8,0-1.5,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M198.3,207.8C198.2,207.8,198.3,207.8,198.3,207.8C198.3,207.7,198.2,207.8,198.3,207.8c0.3-0.2-0.1,0,0.2-0.2
+ c0.5-0.2-0.2,0.1,0.3-0.1c0.7-0.3-0.2,0.1,0.5-0.2c0.9-0.3-0.3,0.1,0.6-0.2c0.7-0.3-0.2,0.1,0.5-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M198.3,207.8c-0.4,0,0.1,0-0.3,0c-0.4,0.1,0.1,0-0.3,0c-0.4,0.1,0.1,0-0.3,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M197.5,207.9c-0.3,0,0.1,0-0.2,0c-0.1-0.1,0,0,0-0.1c0.1-0.2-0.1,0.1,0.1-0.1c0.3-0.3-0.1,0.1,0.2-0.2c0.5-0.4-0.2,0.1,0.4-0.2
+ c0.7-0.4-0.2,0.1,0.5-0.3c0.8-0.5-0.3,0.2,0.6-0.3c1-0.6-0.3,0.2,0.7-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M199.7,206.2c1.2-0.7-0.4,0.2,0.8-0.5c0.7-0.4-0.2,0.1,0.5-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M204.7,203.3c0.6-0.4-0.2,0.1,0.4-0.2c2.4-1.5-0.8,0.5,1.6-1c2.7-1.7-0.9,0.6,1.8-1.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M209.7,201.4c-0.9-0.5,0.3,0.1-0.6-0.3c-0.9-0.2,0.3,0-0.6-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M208.5,200.9c0.3-0.2-0.1,0.1,0.2-0.1c0.4-0.2-0.1,0.1,0.2-0.2c0.4-0.2-0.1,0.1,0.3-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M213.1,201.2c0.5-0.3-0.1,0.1,0.3-0.2c0.9-0.7-0.3,0.2,0.6-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M210.4,201.1C210.3,201,210.5,201.1,210.4,201.1c-1-0.7,0.2,0.1-0.7-0.5c-0.8-0.3,0.3,0-0.5-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M209.2,200.5c0.7-0.4-0.2,0.2,0.5-0.3c0.8-0.5-0.3,0.2,0.5-0.4c0.9-0.6-0.3,0.2,0.6-0.4c1-0.7-0.3,0.2,0.7-0.5
+ c1.1-0.8-0.4,0.3,0.8-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M214.1,200.5c2.4-2.8-0.8,1,1.6-1.9c2.4-3.4-0.7,1.2,1.6-2.3c2.3-4-0.7,1.4,1.5-2.7c2.1-4.6-0.6,1.6,1.3-3.1c1.5-4.8-0.4,1.6,1-3.2
+ "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M214.1,200.5c-0.8-1,0.3,0.3-0.5-0.7c-0.8-0.9,0.3,0.3-0.5-0.6c-0.6-0.7,0.2,0.2-0.4-0.5c-0.4-0.5,0.2,0.2-0.3-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M212.3,198.4c2.9-2.3-0.9,0.8,1.9-1.6c3-2.8-0.9,1,2-1.9c2.9-3.3-0.9,1.2,1.9-2.2c2.6-3.8-0.8,1.3,1.7-2.6c2-4-0.5,1.4,1.3-2.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M155.2,200c-2.7,1.6,0.9-0.4-1.8,1c-2.9,1.1,1-0.3-1.9,0.7c-3,0.6,1-0.1-2,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M149.5,202.1c-0.3,0-0.7,0-1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M154.7,187.4c0.4,1,0-0.4,0.2,0.7c0.3,2.5-0.1-0.8,0.2,1.6c-0.2,2.4,0.2-0.8-0.2,1.6c-0.7,2.1,0.3-0.7-0.5,1.4
+ c-1,1.9,0.4-0.6-0.7,1.2c-1.3,1.6,0.5-0.5-0.9,1c-1.6,1.3,0.6-0.4-1.1,0.8c-1.8,1,0.6-0.3-1.2,0.7c-1.9,0.7,0.7-0.2-1.3,0.5
+ c-2,0.4,0.7-0.1-1.3,0.2c-2,0.1,0.7,0-1.4,0c-2-0.3,0.7,0.2-1.3-0.2c-1.9-0.6,0.6,0.3-1.3-0.4c-1.8-0.9,0.6,0.4-1.2-0.6
+ c-1.6-1.2,0.5,0.4-1-0.8c-1.4-1.5,0.4,0.5-0.9-1c-0.8-1.1,0.2,0.4-0.5-0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M140.5,199.1c-1.2-1.2,0.4,0.4-0.8-0.8c-1.1-1.6,0.3,0.6-0.7-1.1c-0.9-1.9,0.2,0.7-0.5-1.3c-0.5-2,0.1,0.7-0.3-1.4
+ c-0.2-2,0,0.7-0.1-1.3c0.1-1.9-0.1,0.6,0.1-1.2c0.3-1.7-0.1,0.6,0.2-1.1c0.4-1.5-0.2,0.5,0.3-1c0.5-1.4-0.2,0.4,0.4-0.9
+ c0.6-1.2-0.2,0.4,0.4-0.8c0.7-1.1-0.2,0.4,0.4-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M140.4,193.3c-0.3-0.6,0.1,0.2-0.2-0.4c-0.8-2,0.2,0.7-0.5-1.4c-0.4-2.3,0,0.8-0.2-1.5c0.1-2.4-0.1,0.8,0.1-1.6
+ c0.4-1.5-0.2,0.5,0.3-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M111.3,214.1C111.3,214,111.3,214.1,111.3,214.1c0-0.6,0,0.1,0-0.4c0-0.6,0,0.2,0-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M136,215.1c0.9-0.1-0.3,0.1,0.6-0.1c0.8-0.5-0.2,0.2,0.5-0.4c0.6-0.9-0.1,0.3,0.4-0.6c0.3-1.1,0,0.4,0.1-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M130.1,213.3c-0.3,1.1,0.2-0.3-0.3,0.7c-0.7,0.9,0.3-0.3-0.5,0.6c-0.9,0.6,0.4-0.1-0.6,0.4c-1.1,0.3,0.4,0-0.7,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M215.3,213.3c0,0.6,0-0.2,0,0.4c0,0.5,0-0.2,0,0.4c0,0.1,0,0,0,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M189.1,213.3c0.2,1.1-0.1-0.4,0.1,0.7c0.5,0.9-0.2-0.3,0.4,0.6c0.7,0.6-0.3-0.2,0.5,0.4c0.9,0.3-0.3,0,0.6,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M198.7,215.1c-1.1-0.1,0.4,0.1-0.7-0.1c-1-0.5,0.3,0.2-0.6-0.4c-0.8-0.9,0.2,0.3-0.5-0.6c-0.4-1.1,0.1,0.4-0.3-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M409.8,177.5c0,0.1,0,0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M409.8,177.7c0,0.2,0-0.1,0,0.1c-0.1,0.5,0-0.2-0.1,0.3c-0.2,0.4,0.1-0.1-0.1,0.3c-0.2,0.4,0.1-0.1-0.1,0.3
+ c-0.3,0.4,0.1-0.1-0.2,0.2c-0.3,0.3,0.1-0.1-0.2,0.2c-0.4,0.2,0.1-0.1-0.2,0.2c-0.4,0.2,0.1,0-0.3,0.1c-0.3,0.1,0.1,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M408.4,179.4C408.3,179.4,408.4,179.4,408.4,179.4c-0.3,0,0,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M409.8,177.5c0-0.1,0-0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M409.8,177.2c0-0.2,0,0.1,0-0.1c-0.1-0.5,0,0.2-0.1-0.3c-0.2-0.4,0.1,0.1-0.1-0.3c-0.2-0.4,0.1,0.1-0.1-0.3
+ c-0.3-0.4,0.1,0.1-0.2-0.2c-0.3-0.3,0.1,0.1-0.2-0.2c-0.4-0.2,0.1,0.1-0.2-0.2c-0.4-0.2,0.1,0-0.3-0.1c-0.3-0.1,0.1,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M408.4,175.5C408.3,175.5,408.4,175.5,408.4,175.5c-0.3,0,0,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M408.8,177.5c-0.1-0.4,0,0.1-0.1-0.3c-0.1-0.4,0.1,0.1-0.1-0.3c-0.2-0.4,0.1,0.1-0.1-0.3c-0.2-0.4,0.1,0.1-0.1-0.3
+ c-0.2-0.4,0.1,0.1-0.1-0.3c-0.2-0.4,0.1,0.1-0.1-0.3c-0.2-0.4,0.1,0.1-0.2-0.3c-0.3-0.4,0.1,0.1-0.2-0.3c-0.3-0.4,0.1,0.1-0.2-0.3"
+ />
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M407.6,179.9c0.3-0.4-0.1,0.1,0.2-0.3c0.3-0.4-0.1,0.1,0.2-0.3c0.2-0.4-0.1,0.1,0.2-0.3c0.2-0.4-0.1,0.1,0.1-0.3
+ c0.2-0.4-0.1,0.1,0.1-0.3c0.2-0.4-0.1,0.1,0.1-0.3c0.2-0.4-0.1,0.1,0.1-0.3c0.1-0.4,0,0.1,0.1-0.3c0.1-0.4,0,0.1,0.1-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M403.1,179.4c0.3,0.4-0.1-0.1,0.2,0.2c0.3,0.4-0.1-0.1,0.2,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M403.5,175c-0.3,0.4,0.1-0.1-0.2,0.3c-0.3,0.4,0.1-0.1-0.2,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M404.5,175c0.2,0-0.1,0,0.1,0c0.5,0.1-0.2,0,0.3,0.1c0.4,0.2-0.1-0.1,0.3,0.1c0.4,0.2-0.1-0.1,0.3,0.2c0.4,0.3-0.1-0.1,0.3,0.2
+ c0.3,0.4-0.1-0.1,0.2,0.3c0.3,0.4-0.1-0.1,0.2,0.3c0.2,0.5-0.1-0.2,0.2,0.3c0.2,0.5,0-0.2,0.1,0.3c0.1,0.5,0-0.2,0.1,0.4
+ c0,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4c-0.1,0.5,0-0.2-0.1,0.4c-0.2,0.5,0.1-0.2-0.1,0.3c-0.2,0.5,0.1-0.2-0.2,0.3
+ c-0.3,0.4,0.1-0.1-0.2,0.3c-0.3,0.4,0.1-0.1-0.2,0.3c-0.4,0.3,0.1-0.1-0.2,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M404.5,179.9c0.2,0-0.1,0,0.1,0c0.5-0.1-0.2,0,0.3-0.1c0.4-0.2-0.1,0.1,0.3-0.1c0.4-0.2-0.1,0.1,0.3-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M403.3,176.5c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.2,0-0.1-0.1,0.1c-0.1,0.2,0-0.1-0.1,0.2c-0.1,0.2,0-0.1-0.1,0.2
+ c-0.1,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0.1,0.2c0.1,0.2,0-0.1,0.1,0.2
+ c0.2,0.2-0.1-0.1,0.1,0.1c0.2,0.2-0.1,0,0.1,0.1c0.2,0.1-0.1,0,0.1,0.1c0.2,0.1-0.1,0,0.2,0c0.2,0-0.1,0,0.2,0c0.2,0-0.1,0,0.2,0
+ c0.2-0.1-0.1,0,0.2,0c0.2-0.1-0.1,0,0.1-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.9,179.9c0.1-0.4,0,0.1,0.1-0.3c0.1-0.4,0,0.1,0.1-0.3c0.1-0.4,0,0.1,0.1-0.2c0.1-0.4,0,0.1,0.1-0.2c0.2-0.4-0.1,0.1,0.1-0.2
+ c0.2-0.4-0.1,0.1,0.1-0.2c0.2-0.4-0.1,0.1,0.1-0.2c0.2-0.4-0.1,0.1,0.2-0.2c0.3-0.4-0.1,0.1,0.2-0.3c0.3-0.4-0.1,0.1,0.2-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M407.1,177.5c-0.3-0.4,0.1,0.1-0.2-0.3c-0.3-0.4,0.1,0.1-0.2-0.3c-0.2-0.4,0.1,0.1-0.2-0.2c-0.2-0.4,0.1,0.1-0.1-0.2
+ c-0.2-0.4,0.1,0.1-0.1-0.2c-0.2-0.4,0,0.1-0.1-0.2c-0.1-0.4,0,0.1-0.1-0.2c-0.1-0.4,0,0.1-0.1-0.2c-0.1-0.4,0,0.1-0.1-0.3
+ c-0.1-0.4,0,0.1-0.1-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M404.3,179.9C404.3,179.9,404.3,179.9,404.3,179.9C404.4,179.9,404.3,179.9,404.3,179.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M404.4,179.9C404.4,179.9,404.4,179.9,404.4,179.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M404.4,179.9C404.4,179.9,404.5,179.9,404.4,179.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M404.2,178.4c0.2-0.2-0.1,0.1,0.1-0.1c0.2-0.2,0,0.1,0.1-0.1c0.1-0.2,0,0.1,0.1-0.2c0.1-0.3,0,0.1,0.1-0.2c0.1-0.3,0,0.1,0-0.2
+ c0-0.3,0,0.1,0-0.2c0-0.3,0,0.1,0-0.2c-0.1-0.3,0,0.1,0-0.2c-0.1-0.3,0,0.1-0.1-0.2c-0.1-0.2,0,0.1-0.1-0.2
+ c-0.2-0.2,0.1,0.1-0.1-0.1c-0.2-0.2,0.1,0-0.1-0.1c-0.2-0.1,0.1,0-0.1-0.1c-0.2-0.1,0.1,0-0.2,0c-0.2,0,0.1,0-0.2,0
+ c-0.2,0,0.1,0-0.2,0c-0.2,0.1,0.1,0-0.2,0c-0.2,0.1,0.1,0-0.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M404.3,175C404.3,175,404.3,175,404.3,175C404.4,175,404.3,175,404.3,175"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M404.4,175C404.4,175,404.4,175,404.4,175"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M404.4,175C404.4,175,404.5,175,404.4,175"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M371.1,183.8c-0.3-1.1,0.1,0.4-0.2-0.7c-0.3-1,0.1,0.3-0.2-0.7c-0.2-1,0,0.3-0.1-0.7c-0.1-1,0,0.3-0.1-0.7c0-1,0,0.3,0-0.7
+ c0.1-1,0,0.3,0.1-0.7c0.2-1-0.1,0.3,0.1-0.7c0.2-1-0.1,0.3,0.2-0.7c0.3-1.1-0.1,0.4,0.2-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M374.9,183.8c0.3-1.1-0.1,0.4,0.2-0.7c0.3-1-0.1,0.3,0.2-0.7c0.2-1,0,0.3,0.1-0.7c0.1-1,0,0.3,0.1-0.7c0-1,0,0.3,0-0.7
+ c-0.1-1,0,0.3-0.1-0.7c-0.2-1,0.1,0.3-0.1-0.7c-0.2-1,0.1,0.3-0.2-0.7c-0.3-1.1,0.1,0.4-0.2-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M371.1,177.6c-0.3-1.1,0.1,0.4-0.2-0.7c-0.3-1,0.1,0.3-0.2-0.7c-0.2-1,0,0.3-0.1-0.7c-0.1-1,0,0.3-0.1-0.7c0-1,0,0.3,0-0.7
+ c0.1-1,0,0.3,0.1-0.7c0.2-1-0.1,0.3,0.1-0.7c0.2-1-0.1,0.3,0.2-0.7c0.3-1.1-0.1,0.4,0.2-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M374.9,177.6c0.3-1.1-0.1,0.4,0.2-0.7c0.3-1-0.1,0.3,0.2-0.7c0.2-1,0,0.3,0.1-0.7c0.1-1,0,0.3,0.1-0.7c0-1,0,0.3,0-0.7
+ c-0.1-1,0,0.3-0.1-0.7c-0.2-1,0.1,0.3-0.1-0.7c-0.2-1,0.1,0.3-0.2-0.7c-0.3-1.1,0.1,0.4-0.2-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.3,87.8c0.2,0-0.1,0,0.2,0c0.2,0.1-0.1,0,0.2,0.1c0.2,0.1-0.1-0.1,0.1,0.1c0.2,0.2-0.1-0.1,0.1,0.1c0.2,0.2,0-0.1,0.1,0.2
+ c0.1,0.3,0-0.1,0.1,0.2c0.1,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c-0.1,0.3,0-0.1,0,0.2c-0.1,0.3,0-0.1-0.1,0.2
+ c-0.1,0.2,0.1-0.1-0.1,0.2c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.1,0.1,0-0.1,0.1c-0.2,0.1,0.1,0-0.2,0.1c-0.2,0,0.1,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.5,87.1c-0.4,0,0.1,0-0.2,0c-0.4,0.1,0.1,0-0.2,0.1c-0.3,0.2,0.1-0.1-0.2,0.1c-0.3,0.2,0.1-0.1-0.2,0.2
+ c-0.3,0.3,0.1-0.1-0.2,0.2c-0.2,0.4,0.1-0.1-0.1,0.2c-0.2,0.4,0-0.1-0.1,0.3c-0.1,0.4,0-0.1-0.1,0.3c0,0.4,0-0.1,0,0.3
+ c0,0.4,0-0.1,0,0.3c0.1,0.4,0-0.1,0.1,0.3c0.1,0.4-0.1-0.1,0.1,0.3c0.2,0.4-0.1-0.1,0.1,0.2c0.3,0.3-0.1-0.1,0.2,0.2
+ c0.3,0.3-0.1-0.1,0.2,0.2c0.3,0.2-0.1-0.1,0.2,0.1c0.4,0.1-0.1,0,0.2,0.1c0.4,0-0.1,0,0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M406.2,86.8c-0.4,0,0.1,0-0.3,0c-0.4,0.1,0.1-0.1-0.3,0.1c-0.4,0.2,0.1-0.1-0.3,0.1c-0.1,0.1,0,0-0.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.3,90.5C405.5,90.6,405.3,90.5,405.3,90.5c0.5,0.3,0,0,0.3,0.2c0.4,0.1-0.1,0,0.3,0.1c0.4,0.1-0.1,0,0.3,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.3,87.6c-0.3,0,0.1,0-0.2,0c-0.3,0.1,0.1,0-0.2,0.1c-0.3,0.1,0.1-0.1-0.2,0.1c-0.2,0.2,0.1-0.1-0.2,0.1
+ c-0.2,0.2,0.1-0.1-0.1,0.2c-0.2,0.3,0-0.1-0.1,0.2c-0.1,0.3,0-0.1-0.1,0.2c-0.1,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2
+ c0,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0.1,0.2c0.1,0.3-0.1-0.1,0.1,0.2c0.2,0.3-0.1-0.1,0.1,0.2c0.2,0.2-0.1-0.1,0.2,0.1
+ c0.3,0.2-0.1,0,0.2,0.1c0.3,0.1-0.1,0,0.2,0.1c0.3,0-0.1,0,0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.7,87.9C405.6,87.9,405.7,87.9,405.7,87.9c-0.2,0.1,0.1,0-0.1,0.1c-0.2,0.1,0.1,0-0.1,0.1c-0.2,0.2,0.1-0.1-0.1,0.1
+ c-0.1,0.2,0-0.1-0.1,0.1c-0.1,0.2,0-0.1-0.1,0.2c-0.1,0.2,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2
+ c0.1,0.2,0-0.1,0.1,0.2c0.1,0.2-0.1-0.1,0.1,0.1c0.2,0.2-0.1-0.1,0.1,0.1c0.2,0.1-0.1,0,0.1,0.1c0.2,0.1-0.1,0,0.1,0.1c0,0,0,0,0,0
+ "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.3,87.6c0.3,0-0.1,0,0.2,0c0.3,0.1-0.1,0,0.2,0.1c0.3,0.1-0.1-0.1,0.2,0.1c0.2,0.2-0.1-0.1,0.2,0.1c0.2,0.2-0.1-0.1,0.1,0.2
+ c0.2,0.3,0-0.1,0.1,0.2c0.1,0.3,0-0.1,0.1,0.2c0.1,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c-0.1,0.3,0-0.1-0.1,0.2
+ c-0.1,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.2,0.1-0.1-0.2,0.1c-0.3,0.2,0.1,0-0.2,0.1c-0.3,0.1,0.1,0-0.2,0.1
+ c-0.3,0,0.1,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.5,87.9C405.4,87.9,405.5,87.8,405.5,87.9c-0.3,0.2,0,0-0.2,0.1c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.2,0-0.1-0.1,0.2
+ c-0.1,0.3,0-0.1-0.1,0.2c-0.1,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0.1,0.2
+ c0.1,0.2-0.1-0.1,0.1,0.2c0.2,0.2-0.1-0.1,0.1,0.1c0.2,0.1-0.1,0,0.1,0.1c0.1,0.1,0,0,0.1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.3,87.8c-0.2,0,0.1,0-0.2,0c-0.2,0.1,0.1,0-0.2,0.1c-0.2,0.1,0.1-0.1-0.1,0.1c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.2,0-0.1-0.1,0.2
+ c-0.1,0.3,0-0.1-0.1,0.2c-0.1,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0.1,0.2
+ c0.1,0.2-0.1-0.1,0.1,0.2c0.2,0.2-0.1-0.1,0.1,0.1c0.2,0.1-0.1,0,0.1,0.1c0.2,0.1-0.1,0,0.2,0.1c0.2,0-0.1,0,0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M405.5,87.1c0.4,0-0.1,0,0.2,0c0.4,0.1-0.1,0,0.2,0.1c0.3,0.2-0.1-0.1,0.2,0.1c0.3,0.2-0.1-0.1,0.2,0.2c0.3,0.3-0.1-0.1,0.2,0.2
+ c0.2,0.4-0.1-0.1,0.1,0.2c0.2,0.4,0-0.1,0.1,0.3c0.1,0.4,0-0.1,0.1,0.3c0,0.4,0-0.1,0,0.3c0,0.4,0-0.1,0,0.3
+ c-0.1,0.4,0-0.1-0.1,0.3c-0.1,0.4,0.1-0.1-0.1,0.3c-0.2,0.4,0.1-0.1-0.1,0.2c-0.3,0.3,0.1-0.1-0.2,0.2c-0.3,0.3,0.1-0.1-0.2,0.2
+ c-0.3,0.2,0.1-0.1-0.2,0.1c-0.4,0.1,0.1,0-0.2,0.1c-0.4,0,0.1,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M406,87.1c0.4,0-0.1,0,0.2,0c0.4,0.1-0.1,0,0.2,0.1c0.3,0.2-0.1-0.1,0.2,0.1c0.3,0.2-0.1-0.1,0.2,0.2c0.3,0.3-0.1-0.1,0.2,0.2
+ c0.2,0.4-0.1-0.1,0.1,0.2c0.2,0.4,0-0.1,0.1,0.3c0.1,0.4,0-0.1,0.1,0.3c0,0.4,0-0.1,0,0.3c0,0.4,0-0.1,0,0.3
+ c-0.1,0.4,0-0.1-0.1,0.3c-0.1,0.4,0.1-0.1-0.1,0.3c-0.2,0.4,0.1-0.1-0.1,0.2c-0.3,0.3,0.1-0.1-0.2,0.2c-0.3,0.3,0.1-0.1-0.2,0.2
+ c-0.3,0.2,0.1-0.1-0.2,0.1c-0.4,0.1,0.1,0-0.2,0.1c-0.4,0,0.1,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M406.2,86.8c0.4,0-0.1,0,0.3,0c0.4,0.1-0.1-0.1,0.3,0.1c0.4,0.2-0.1-0.1,0.3,0.1c0.3,0.3-0.1-0.1,0.2,0.2c0.3,0.3-0.1-0.1,0.2,0.2
+ c0.3,0.4-0.1-0.1,0.2,0.3c0.2,0.4-0.1-0.1,0.1,0.3c0.1,0.5,0-0.2,0.1,0.3c0.1,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3
+ c-0.1,0.5,0-0.2,0,0.3c-0.1,0.5,0.1-0.2-0.1,0.3c-0.2,0.4,0.1-0.1-0.1,0.3c-0.2,0.4,0.1-0.1-0.2,0.3c-0.3,0.3,0.1-0.1-0.2,0.2
+ c-0.3,0.3,0.1-0.1-0.2,0.2c-0.4,0.2,0.1-0.1-0.3,0.1c-0.4,0.1,0.1,0-0.3,0.1c-0.4,0.1,0.1,0-0.3,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M371.1,148.3c-0.5-1.6,0.1,0.5-0.3-1c-0.4-1.5,0.1,0.5-0.2-1c-0.3-1.5,0.1,0.5-0.2-1c-0.1-1.5,0,0.5-0.1-1c0-1.5,0,0.5,0-1
+ c0.1-1.5-0.1,0.5,0.1-1c0.2-1.5-0.1,0.5,0.2-1c0.3-1.5-0.1,0.5,0.2-1c0.5-1.6-0.2,0.5,0.3-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M374.4,139.3c0.5-1.6-0.1,0.5,0.3-1c0.4-1.5-0.1,0.5,0.2-1c0.3-1.5-0.1,0.5,0.2-1c0.1-1.5,0,0.5,0.1-1c0-1.5,0,0.5,0-1
+ c-0.1-1.5,0.1,0.5-0.1-1c-0.2-1.5,0.1,0.5-0.2-1c-0.3-1.5,0.1,0.5-0.2-1c-0.5-1.6,0.2,0.5-0.3-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M374.4,148.3c0.5-1.6-0.1,0.5,0.3-1c0.4-1.5-0.1,0.5,0.2-1c0.3-1.5-0.1,0.5,0.2-1c0.1-1.5,0,0.5,0.1-1c0-1.5,0,0.5,0-1
+ c-0.1-1.5,0.1,0.5-0.1-1c-0.2-1.5,0.1,0.5-0.2-1c-0.3-1.5,0.1,0.5-0.2-1c-0.5-1.6,0.2,0.5-0.3-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M371.1,139.3c-0.5-1.6,0.1,0.5-0.3-1c-0.4-1.5,0.1,0.5-0.2-1c-0.3-1.5,0.1,0.5-0.2-1c-0.1-1.5,0,0.5-0.1-1c0-1.5,0,0.5,0-1
+ c0.1-1.5-0.1,0.5,0.1-1c0.2-1.5-0.1,0.5,0.2-1c0.3-1.5-0.1,0.5,0.2-1c0.5-1.6-0.2,0.5,0.3-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.5,66.6C505.5,66.6,505.5,66.6,505.5,66.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.5,66.5c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.2c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.1c0-0.1,0,0,0-0.1c0-0.1,0,0,0-0.1
+ c0-0.1,0,0,0,0c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.5,67.4C505.5,67.4,505.5,67.4,505.5,67.4C505.5,67.3,505.5,67.4,505.5,67.4c0-0.1,0,0,0-0.1c0-0.1,0,0.1,0-0.1
+ c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.2c0-0.2,0,0.1,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.5,66.7C505.5,66.6,505.5,66.6,505.5,66.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.4,57.8c-0.1,0.4,0-0.1-0.1,0.2c-0.1,0.4,0-0.1,0,0.3c0,0.4,0-0.1,0,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.6,66.6c0,0.2,0-0.1,0,0.2c0,0.2,0-0.1,0,0.2c0,0.2,0-0.1,0,0.1c0,0.2,0-0.1,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1
+ c0,0.1,0,0,0,0c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.4,58.6c0-0.1,0.1-0.3,0.1-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.5,58.2c0.1-0.3,0,0.1,0.1-0.2c0-0.1,0,0,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.5,65.8C505.5,65.8,505.5,65.8,505.5,65.8C505.6,65.9,505.5,65.8,505.5,65.8c0,0.1,0,0,0,0.1c0,0.1,0-0.1,0,0.1
+ c0,0.2,0-0.1,0,0.1c0,0.2,0-0.1,0,0.1c0,0.2,0-0.1,0,0.2c0,0.2,0-0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.4,59.8c0,0.6,0-0.2,0,0.4c0,0.5,0-0.2,0,0.3c0,0.5,0-0.2,0,0.3c0,0.4,0-0.1,0,0.3c0,0.4,0-0.1,0,0.3c0,0.4,0-0.1,0,0.2
+ c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.2,0-0.1,0,0.2c0,0.2,0-0.1,0,0.1c0,0.2,0-0.1,0,0.1
+ c0,0.2,0-0.1,0,0.1c0,0.2,0-0.1,0,0.1c0,0.2,0-0.1,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1
+ c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M507.1,193.6c0.1-0.2,0,0.1,0.1-0.1c0.3-0.7-0.1,0.2,0.2-0.5c0.2-0.8-0.1,0.3,0.2-0.5c0.2-0.9-0.1,0.3,0.1-0.6
+ c0.2-1-0.1,0.3,0.1-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M507,193.9c-0.1,0.3,0-0.1-0.1,0.2c-0.2,0.4,0.1-0.1-0.2,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M506.4,183.8c-0.2,0,0.1,0-0.1,0c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.4,0.1-0.1-0.1,0.2
+ c-0.2,0.5,0.1-0.2-0.1,0.3c-0.2,0.6,0-0.2-0.1,0.4c-0.1,0.6,0-0.2-0.1,0.4c-0.1,0.7,0-0.2-0.1,0.5c-0.1,0.8,0-0.3-0.1,0.5
+ c-0.1,0.8,0-0.3,0,0.5c0,0.8,0-0.3,0,0.5c0,0.8,0-0.3,0,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M503.7,181.9c-0.3,0.4,0.1-0.1-0.2,0.2c-0.2,0.5,0.1-0.2-0.2,0.3c-0.2,0.5,0.1-0.2-0.1,0.4c-0.2,0.6,0.1-0.2-0.1,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M503.7,194.3c-0.3-0.4,0.1,0.1-0.2-0.2c-0.2-0.5,0.1,0.2-0.2-0.3c-0.2-0.5,0.1,0.2-0.1-0.4c-0.2-0.6,0.1,0.2-0.1-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M502.5,189.4c-0.1-1.3,0,0.4,0-0.9c0-1.3,0,0.5,0-0.9c0-1.3,0,0.4,0-0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M507.8,185c-0.2-1,0.1,0.3-0.1-0.7c-0.2-0.9,0.1,0.3-0.1-0.6c-0.2-0.8,0.1,0.3-0.2-0.5c-0.3-0.7,0.1,0.2-0.2-0.5
+ c-0.1-0.2,0,0.1-0.1-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M506.7,181.9c0.3,0.4-0.1-0.1,0.2,0.2c0.1,0.3,0-0.1,0.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M506.4,192.4c-0.2,0,0.1,0-0.1,0c-0.2-0.2,0.1,0.1-0.1-0.1c-0.2-0.3,0.1,0.1-0.1-0.2c-0.2-0.4,0.1,0.1-0.1-0.2
+ c-0.2-0.5,0.1,0.2-0.1-0.3c-0.2-0.6,0,0.2-0.1-0.4c-0.1-0.6,0,0.2-0.1-0.4c-0.1-0.7,0,0.2-0.1-0.5c-0.1-0.8,0,0.3-0.1-0.5
+ c-0.1-0.8,0,0.3,0-0.5c0-0.8,0,0.3,0-0.5c0-0.8,0,0.3,0-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M507.8,191.2c0.1-1.1,0,0.4,0.1-0.7c0.1-1.2,0,0.4,0.1-0.8c0.1-1.2,0,0.4,0-0.8c0-1.2,0,0.4,0-0.8c0-1.2,0,0.4,0-0.8
+ c-0.1-1.2,0,0.4,0-0.8c-0.1-1.2,0,0.4-0.1-0.8c-0.1-1.1,0.1,0.4-0.1-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M507.1,182.6c-0.2-0.4,0.1,0.1-0.1-0.2c0-0.1,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M507,182.3c-0.3-0.3,0.1,0.1-0.2-0.2c-0.3-0.3,0.1,0.1-0.2-0.2c-0.3-0.1,0.1,0-0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M507.5,188.1c0-0.8,0,0.3,0-0.6c0-0.8,0,0.3,0-0.5c-0.1-0.8,0,0.3,0-0.5c-0.1-0.8,0,0.3-0.1-0.5c-0.1-0.7,0,0.2-0.1-0.5
+ c-0.1-0.6,0.1,0.2-0.1-0.4c-0.2-0.6,0.1,0.2-0.1-0.4c-0.2-0.5,0.1,0.2-0.1-0.3c-0.2-0.4,0.1,0.1-0.1-0.2c-0.2-0.3,0.1,0.1-0.1-0.2
+ c-0.2-0.2,0.1,0-0.1-0.1c-0.2-0.1,0.1,0-0.1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505,185c-0.1,1.1,0-0.4-0.1,0.7c-0.1,1.2,0-0.4-0.1,0.8c-0.1,1.2,0-0.4,0,0.8c0,1.2,0-0.4,0,0.8c0,1.2,0-0.4,0,0.8
+ c0.1,1.2,0-0.4,0,0.8c0.1,1.2,0-0.4,0.1,0.8c0.1,1.1-0.1-0.4,0.1,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.5,189.4c-0.1-1.3,0,0.4,0-0.9c0-1.3,0,0.5,0-0.9c0-1.3,0,0.4,0-0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.1,183.2c0.2-0.6-0.1,0.2,0.1-0.4c0.2-0.6-0.1,0.2,0.1-0.4c0.2-0.5-0.1,0.1,0.2-0.3c0.2-0.4-0.1,0.1,0.2-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.7,194.3c-0.3-0.4,0.1,0.1-0.2-0.2c-0.2-0.5,0.1,0.2-0.2-0.3c-0.2-0.5,0.1,0.2-0.1-0.4c-0.2-0.6,0.1,0.2-0.1-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M506.4,194.3c0.3-0.1-0.1,0,0.2-0.1c0.3-0.2-0.1,0.1,0.2-0.2c0.3-0.3-0.1,0.1,0.2-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M507,193.9C507,193.8,506.9,193.9,507,193.9c0.2-0.4,0,0.1,0.2-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505,191.2c0.2,1-0.1-0.3,0.1,0.7c0.2,0.9-0.1-0.3,0.1,0.6c0.2,0.8-0.1-0.3,0.2,0.5c0.3,0.7-0.1-0.2,0.2,0.5
+ c0.3,0.5-0.1-0.2,0.2,0.4c0.3,0.4-0.1-0.1,0.2,0.3c0.3,0.3-0.1-0.1,0.2,0.2c0.3,0.1-0.1,0,0.2,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M506.4,181.9c-0.3,0.1,0.1,0-0.2,0.1c-0.3,0.2,0.1-0.1-0.2,0.2c-0.3,0.4,0.1-0.1-0.2,0.3c-0.3,0.5,0.1-0.2-0.2,0.4
+ c-0.3,0.7,0.1-0.2-0.2,0.5c-0.2,0.8,0.1-0.3-0.2,0.5c-0.2,0.9,0.1-0.3-0.1,0.6c-0.2,1,0.1-0.3-0.1,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M507.5,188.1c0,0.8,0-0.3,0,0.6c0,0.8,0-0.3,0,0.5c-0.1,0.8,0-0.3,0,0.5c-0.1,0.8,0-0.3-0.1,0.5c-0.1,0.7,0-0.2-0.1,0.5
+ c-0.1,0.6,0.1-0.2-0.1,0.4c-0.2,0.6,0.1-0.2-0.1,0.4c-0.2,0.5,0.1-0.2-0.1,0.3c-0.2,0.4,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2
+ c-0.2,0.2,0.1,0-0.1,0.1c-0.2,0.1,0.1,0-0.1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M506.9,188.1c0-0.8,0,0.3,0-0.6c0-0.8,0,0.3,0-0.5c-0.1-0.8,0,0.3,0-0.5c-0.1-0.8,0,0.3-0.1-0.5c-0.1-0.7,0,0.2-0.1-0.5
+ c-0.1-0.6,0.1,0.2-0.1-0.4c-0.2-0.6,0.1,0.2-0.1-0.4c-0.2-0.5,0.1,0.2-0.1-0.3c-0.2-0.4,0.1,0.1-0.1-0.2c-0.2-0.2,0.1,0.1-0.1-0.2"
+ />
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M506.9,188.1c0,0.8,0-0.3,0,0.6c0,0.8,0-0.3,0,0.5c-0.1,0.8,0-0.3,0,0.5c-0.1,0.8,0-0.3-0.1,0.5c-0.1,0.7,0-0.2-0.1,0.5
+ c-0.1,0.6,0.1-0.2-0.1,0.4c-0.2,0.6,0.1-0.2-0.1,0.4c-0.2,0.5,0.1-0.2-0.1,0.3c-0.2,0.4,0.1-0.1-0.1,0.2c-0.2,0.2,0.1-0.1-0.1,0.2"
+ />
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505.1,183.2c0,0.9,0-0.3,0,0.6c0,0.9,0-0.3,0,0.6c-0.1,0.9,0-0.3-0.1,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505,185c-0.1,0.7,0-0.2-0.1,0.4c-0.1,0.7,0.1-0.2-0.1,0.4c-0.2,0.7,0.1-0.2-0.1,0.4c-0.2,0.7,0.1-0.2-0.1,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.5,189.4c0.3,0.9-0.1-0.3,0.2,0.6c0.2,0.9-0.1-0.3,0.1,0.6c0.2,0.9,0-0.3,0.1,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505,191.2c0.1,0.7,0-0.2,0.1,0.4c0.1,0.7,0-0.2,0,0.4c0,0.7,0-0.2,0,0.4c0,0.7,0-0.2,0,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.6,181.3C504.6,181.3,504.6,181.3,504.6,181.3c-0.4-0.3,0.1,0.1-0.2-0.2c-0.4-0.1,0.1,0-0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.1,195.2c0.4-0.1-0.1,0.1,0.2-0.1c0.4-0.3-0.1,0.1,0.2-0.2c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.7,194.9c0.4-0.5-0.1,0.2,0.2-0.3c0.2-0.4-0.1,0.1,0.1-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M505,181.9c-0.2-0.4,0.1,0.1-0.1-0.2c-0.3-0.5,0.1,0.1-0.2-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M502.6,195.2c-0.3,0,0.1,0-0.2,0c-0.3-0.1,0.1,0.1-0.2-0.1c-0.3-0.2,0.1,0.1-0.2-0.2c-0.3-0.3,0.1,0.1-0.2-0.2
+ c-0.3-0.4,0.1,0.2-0.2-0.3c-0.2-0.5,0.1,0.2-0.2-0.4c-0.2-0.6,0.1,0.2-0.1-0.4c-0.2-0.7,0.1,0.2-0.1-0.5c-0.2-0.8,0.1,0.3-0.1-0.5
+ c-0.2-0.8,0,0.3-0.1-0.6c-0.1-0.9,0,0.3-0.1-0.6c-0.1-0.9,0,0.3-0.1-0.6c-0.1-1,0,0.3-0.1-0.7c-0.1-1,0,0.3,0-0.7c0-1,0,0.3,0-0.7
+ c0-0.7,0,0.2,0-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M500.8,188.3c0-0.3,0,0.1,0-0.2c0-0.3,0,0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M500.8,187.9c0-0.7,0,0.2,0-0.5c0-1,0,0.3,0-0.7c0.1-1,0,0.3,0-0.7c0.1-1,0,0.3,0.1-0.7c0.1-0.9,0,0.3,0.1-0.6
+ c0.1-0.9-0.1,0.3,0.1-0.6c0.2-0.8-0.1,0.3,0.1-0.6c0.2-0.8-0.1,0.3,0.1-0.5c0.2-0.7-0.1,0.2,0.1-0.5c0.2-0.6-0.1,0.2,0.1-0.4
+ c0.2-0.5-0.1,0.2,0.2-0.4c0.2-0.4-0.1,0.1,0.2-0.3c0.2-0.4-0.1,0.1,0.2-0.2c0.3-0.3-0.1,0.1,0.2-0.2c0.3-0.2-0.1,0,0.2-0.1
+ c0.3-0.1-0.1,0,0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.7,181.3C504.7,181.3,504.7,181.3,504.7,181.3C504.6,181.2,504.7,181.4,504.7,181.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.6,181.3c-0.2-0.2,0.1,0-0.2-0.1c-0.4-0.1,0.1,0-0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.1,181c-0.4,0.1,0.1-0.1-0.2,0.1c-0.4,0.3,0.1-0.1-0.2,0.2c-0.4,0.5,0.1-0.2-0.2,0.3c-0.3,0.7,0.1-0.2-0.2,0.4
+ c-0.3,0.8,0.1-0.3-0.2,0.6c-0.3,1,0.1-0.3-0.2,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M502.8,183.3c-0.2,1.1,0.1-0.4-0.2,0.7c-0.2,1.2,0.1-0.4-0.1,0.8c-0.2,1.3,0-0.4-0.1,0.9c-0.1,1.4,0-0.5-0.1,0.9
+ c-0.1,1.4,0-0.5,0,1c0,1.5,0-0.5,0,1c0,1.4,0-0.5,0,1c0.1,1.4,0-0.5,0.1,0.9c0.1,1.3-0.1-0.4,0.1,0.9c0.2,1.2-0.1-0.4,0.1,0.8
+ c0.2,1.1-0.1-0.4,0.2,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M502.8,193c0.3,1-0.1-0.3,0.2,0.7c0.3,0.8-0.1-0.3,0.2,0.6c0.3,0.7-0.1-0.2,0.2,0.4c0.3,0.5-0.1-0.2,0.2,0.3
+ c0.4,0.3-0.1-0.1,0.2,0.2c0.4,0.1-0.1,0,0.2,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.2,195.1c0.4-0.1-0.1,0.1,0.2-0.1c0.2-0.2-0.1,0.1,0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.6,194.9C504.7,194.8,504.6,195,504.6,194.9C504.7,194.9,504.7,194.9,504.6,194.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M504.2,181.1c-0.4,0.1,0.1-0.1-0.2,0.1c-0.4,0.3,0.1-0.1-0.2,0.2c-0.4,0.5,0.1-0.2-0.2,0.3c-0.3,0.7,0.1-0.2-0.2,0.4
+ c-0.3,0.8,0.1-0.3-0.2,0.6c-0.3,1,0.1-0.3-0.2,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M502.9,183.3c-0.2,1.1,0.1-0.4-0.2,0.7c-0.2,1.2,0.1-0.4-0.1,0.8c-0.2,1.3,0-0.4-0.1,0.9c-0.1,1.4,0-0.5-0.1,0.9
+ c-0.1,1.4,0-0.5,0,1c0,1.4,0-0.5,0,1c0,1.4,0-0.5,0,1c0.1,1.4,0-0.5,0.1,0.9c0.1,1.3-0.1-0.4,0.1,0.9c0.2,1.2-0.1-0.4,0.1,0.8
+ c0.2,1.1-0.1-0.4,0.2,0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M502.9,192.9c0.3,1-0.1-0.3,0.2,0.7c0.3,0.8-0.1-0.3,0.2,0.6c0.3,0.7-0.1-0.2,0.2,0.4c0.3,0.5-0.1-0.1,0.2,0.3
+ c0.3,0.3-0.1-0.1,0.2,0.2c0.4,0.1-0.1,0,0.2,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M477.6,214.1c-0.6-0.1,0.2,0.1-0.4-0.1c-0.5-0.3,0.2,0.1-0.4-0.2c-0.4-0.4,0.1,0.2-0.3-0.3c-0.3-0.5,0.1,0.2-0.2-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M476.5,213.4c0.1-0.1,0.1-0.2,0.1-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M493.8,213.2c0.1,0.5,0-0.2,0.1,0.4c0,0.2,0-0.1,0,0.2c0,0.2,0-0.1,0,0.1c0,0.2,0-0.1,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1
+ c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M408.1,213.2c-0.2,0.6,0.1-0.2-0.2,0.4c-0.4,0.5,0.2-0.1-0.3,0.3c-0.5,0.3,0.2-0.1-0.3,0.2c-0.6,0.1,0.2,0-0.4,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M407.8,213.2c0,0.1,0.1,0.2,0.2,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M390.6,214.1C390.6,214.1,390.6,214.1,390.6,214.1C390.6,214,390.6,214.1,390.6,214.1c0-0.2,0,0,0-0.2c0-0.2,0,0.1,0-0.1
+ c0-0.2,0,0.1,0-0.1c0-0.2,0,0.1,0-0.2c0.1-0.5,0,0.2,0.1-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M449.3,166.9c-1.4,0,0.5,0-0.9,0c-1.6,0,0.5,0-1,0c-1.7,0,0.6,0-1.1,0c-1.7,0,0.6,0-1.1,0c-1.7,0,0.6,0-1.1,0c-1.7,0,0.6,0-1.1,0
+ c-1.6,0,0.5,0-1,0c-1.4,0,0.5,0-0.9,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M462.4,158.2c0-1.4,0,0.5,0-0.9c0-1.6,0,0.5,0-1c0-1.7,0,0.6,0-1.1c0-1.7,0,0.6,0-1.1c0-1.7,0,0.6,0-1.1c0-1.7,0,0.6,0-1.1
+ c0-1.6,0,0.5,0-1c0-1.4,0,0.5,0-0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M445.6,142.9C445.6,142.9,445.6,142.9,445.6,142.9C445.5,142.8,445.6,142.9,445.6,142.9c-0.2-0.2,0,0-0.1-0.1
+ c-0.2-0.2,0.1,0.1-0.1-0.1c-0.2-0.2,0.1,0.1-0.1-0.1c-0.2-0.2,0.1,0.1-0.1-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M445.1,142.4c-0.2,0.2,0.1-0.1-0.2,0.2c-0.2,0.2,0.1-0.1-0.1,0.1c-0.2,0.2,0.1-0.1-0.1,0.1c-0.1,0.1,0,0-0.1,0.1c-0.1,0.1,0,0,0,0
+ c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M459.8,131.1c0-0.9,0,0.3,0-0.6c-0.1-0.8,0.1,0.3-0.1-0.5c-0.2-0.7,0.1,0.2-0.2-0.5c-0.3-0.6,0.1,0.2-0.2-0.4
+ c-0.4-0.5,0.1,0.1-0.3-0.3c-0.5-0.4,0.2,0.1-0.3-0.3c-0.6-0.3,0.2,0.1-0.4-0.2c-0.7-0.3,0.2,0.1-0.5-0.2c-0.8-0.2,0.3,0-0.5-0.1
+ c-0.9-0.1,0.3,0-0.6,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M458.7,131.1c0.1-0.7,0,0.2,0.1-0.5c0-0.6,0,0.2,0-0.4c-0.1-0.5,0,0.2-0.1-0.3c-0.2-0.4,0.1,0.1-0.1-0.3c-0.2-0.3,0.1,0.1-0.2-0.2
+ c-0.3-0.3,0.1,0.1-0.2-0.2c-0.4-0.2,0.1,0-0.3-0.1c-0.5-0.1,0.2,0-0.3-0.1c-0.6,0,0.2,0-0.4,0c-0.7,0.1,0.2,0-0.5,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M433.4,128.1c-0.9,0,0.3,0-0.6,0c-0.8,0.1,0.3-0.1-0.5,0.1c-0.7,0.2,0.2-0.1-0.5,0.2c-0.6,0.3,0.2-0.1-0.4,0.2
+ c-0.5,0.4,0.1-0.1-0.3,0.3c-0.4,0.5,0.1-0.2-0.3,0.3c-0.3,0.6,0.1-0.2-0.2,0.4c-0.3,0.7,0.1-0.2-0.2,0.5c-0.2,0.8,0-0.3-0.1,0.5
+ c-0.1,0.9,0-0.3,0,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M433.4,129.1c-0.7-0.1,0.2,0-0.5-0.1c-0.6,0,0.2,0-0.4,0c-0.5,0.1,0.2,0-0.3,0.1c-0.4,0.2,0.1-0.1-0.3,0.1
+ c-0.3,0.2,0.1-0.1-0.2,0.2c-0.3,0.3,0.1-0.1-0.2,0.2c-0.2,0.4,0-0.1-0.1,0.3c-0.1,0.5,0-0.2-0.1,0.3c0,0.6,0-0.2,0,0.4
+ c0.1,0.7,0-0.2,0.1,0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M430.4,161.3c0,0.9,0-0.3,0,0.6c0.1,0.8-0.1-0.3,0.1,0.5c0.2,0.7-0.1-0.2,0.2,0.5c0.3,0.6-0.1-0.2,0.2,0.4c0.4,0.5-0.1-0.1,0.3,0.3
+ c0.5,0.4-0.2-0.1,0.3,0.3c0.6,0.3-0.2-0.1,0.4,0.2c0.7,0.3-0.2-0.1,0.5,0.2c0.8,0.2-0.3,0,0.5,0.1c0.9,0.1-0.3,0,0.6,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M431.5,161.3c-0.1,0.7,0-0.2-0.1,0.5c0,0.6,0-0.2,0,0.4c0.1,0.5,0-0.2,0.1,0.3c0.2,0.4-0.1-0.1,0.1,0.3c0.2,0.3-0.1-0.1,0.2,0.2
+ c0.3,0.3-0.1-0.1,0.2,0.2c0.4,0.2-0.1,0,0.3,0.1c0.5,0.1-0.2,0,0.3,0.1c0.6,0-0.2,0,0.4,0c0.7-0.1-0.2,0,0.5-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M456.7,164.3c0.9,0-0.3,0,0.6,0c0.8-0.1-0.3,0.1,0.5-0.1c0.7-0.2-0.2,0.1,0.5-0.2c0.6-0.3-0.2,0.1,0.4-0.2c0.5-0.4-0.1,0.1,0.3-0.3
+ c0.4-0.5-0.1,0.2,0.3-0.3c0.3-0.6-0.1,0.2,0.2-0.4c0.3-0.7-0.1,0.2,0.2-0.5c0.2-0.8,0,0.3,0.1-0.5c0.1-0.9,0,0.3,0-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M456.7,163.3c0.7,0.1-0.2,0,0.5,0.1c0.6,0-0.2,0,0.4,0c0.5-0.1-0.2,0,0.3-0.1c0.4-0.2-0.1,0.1,0.3-0.1c0.3-0.2-0.1,0.1,0.2-0.2
+ c0.3-0.3-0.1,0.1,0.2-0.2c0.2-0.4,0,0.1,0.1-0.3c0.1-0.5,0,0.2,0.1-0.3c0-0.6,0,0.2,0-0.4c-0.1-0.7,0,0.2-0.1-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M454.6,157.2c-0.6,0.8,0.2-0.3-0.4,0.6c-0.7,0.8,0.3-0.3-0.5,0.5c-0.8,0.7,0.3-0.2-0.5,0.5c-0.8,0.6,0.3-0.2-0.6,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M453.3,157.8c0.7-0.4-0.2,0.1,0.5-0.2c0.7-0.4-0.2,0.1,0.4-0.2c0.6-0.3-0.2,0.1,0.4-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M453.3,157.8c-0.4,0.7,0.1-0.2-0.2,0.5c-0.4,0.7,0.1-0.2-0.2,0.4c-0.3,0.6,0.1-0.2-0.2,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M437.6,159.1c-0.3-0.6,0.1,0.2-0.2-0.4c-0.4-0.7,0.1,0.2-0.2-0.4c-0.4-0.7,0.1,0.2-0.2-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M435.6,157.2c0.6,0.8-0.2-0.3,0.4,0.6c0.7,0.8-0.3-0.3,0.5,0.5c0.8,0.7-0.3-0.2,0.5,0.5c0.8,0.6-0.3-0.2,0.5,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M435.6,157.2c0.6,0.3-0.2-0.1,0.4,0.2c0.7,0.4-0.2-0.1,0.4,0.2c0.7,0.4-0.2-0.1,0.5,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M435.6,135.2c0.6-0.8-0.2,0.3,0.4-0.6c0.7-0.8-0.3,0.3,0.5-0.5c0.8-0.7-0.3,0.2,0.5-0.5c0.8-0.6-0.3,0.2,0.5-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M436.9,134.6c-0.7,0.4,0.2-0.1-0.5,0.2c-0.7,0.4,0.2-0.1-0.4,0.2c-0.6,0.3,0.2-0.1-0.4,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M436.9,134.6c0.4-0.7-0.1,0.2,0.2-0.5c0.4-0.7-0.1,0.2,0.2-0.4c0.3-0.6-0.1,0.2,0.2-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M452.6,133.3c0.8,0.6-0.3-0.2,0.6,0.4c0.8,0.7-0.3-0.3,0.5,0.5c0.7,0.8-0.2-0.3,0.5,0.5c0.6,0.8-0.2-0.3,0.4,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M453.3,134.6c-0.4-0.7,0.1,0.2-0.2-0.5c-0.4-0.7,0.1,0.2-0.2-0.4c-0.3-0.6,0.1,0.2-0.2-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M453.3,134.6c0.7,0.4-0.2-0.1,0.5,0.2c0.7,0.4-0.2-0.1,0.4,0.2c0.6,0.3-0.2-0.1,0.4,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M410,88.8c-0.1-0.9,0.1,0.3-0.1-0.6c-0.3-0.9,0.2,0.3-0.2-0.6c-0.5-0.7,0.2,0.2-0.4-0.5c-0.7-0.5,0.3,0.1-0.5-0.3
+ c-0.8-0.2,0.3,0-0.5-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M410,88.8c-0.1,0.8,0.1-0.3-0.1,0.5c-0.2,0.7,0.1-0.2-0.2,0.5c-0.4,0.7,0.2-0.2-0.3,0.4c-0.5,0.5,0.2-0.1-0.4,0.3
+ c-0.6,0.3,0.2-0.1-0.4,0.2c-0.7,0.1,0.2,0-0.4,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M407.8,86.8c0.1,0,0.3-0.1,0.4-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M408.3,90.9c-0.1,0-0.3,0-0.4-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380,139.3c0-2.3,0,0.8,0-1.5c-0.1-2.1,0,0.7-0.1-1.4c-0.1-1.9,0,0.6-0.1-1.3c-0.1-1.6,0,0.4-0.1-1c-0.1-0.9,0,0.5-0.1-0.7
+ c-0.1-0.7,0,0,0-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380,177.6c0-2.1,0,0.7,0-1.4c-0.1-2,0,0.7,0-1.3c-0.1-1.7,0,0.6-0.1-1.2c-0.1-1.4,0.1,0.4-0.1-0.9c-0.1-0.9,0,0.4-0.1-0.7
+ c0-0.6,0.1,0.1,0-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M379.7,183.4c0.1,0,0-0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380,177.6c0,2.1,0-0.7,0,1.4c-0.1,2,0-0.7,0,1.3c-0.1,1.7,0-0.6-0.1,1.2c-0.1,1.5,0-0.4-0.1,0.9c-0.1,0.9,0-0.4-0.1,0.7
+ c-0.1,0.6,0,0,0,0.3c0-0.3,0,0.1,0-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M379.7,145.4c0,0.1,0,0.2,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380,139.3c0,2.3,0-0.8,0,1.5c-0.1,2.1,0-0.7-0.1,1.4c-0.1,1.9,0-0.6-0.1,1.3c-0.1,1.5,0-0.5-0.1,1c-0.1,1.1,0-0.4-0.1,0.7
+ c0,0.2,0-0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M453.9,187.4c-0.2,1.4,0.1-0.4-0.2,0.9c-0.6,1.4,0.3-0.4-0.5,0.9c-1.1,1.3,0.4-0.4-0.7,0.8c-1.4,1.1,0.5-0.3-1,0.7
+ c-1.8,1,0.6-0.3-1.2,0.7c-2.2,0.9,0.7-0.2-1.4,0.6c-2.4,0.7,0.8-0.2-1.6,0.4c-2.8,0.5,0.9-0.1-1.8,0.3c-3.1,0.3,1-0.1-2.1,0.2
+ c-3.2,0,1.1,0-2.1,0c-3.1-0.2,1,0.1-2.1-0.2c-2.8-0.4,0.9,0.2-1.9-0.3c-2.5-0.6,0.8,0.3-1.7-0.4c-2.2-0.8,0.7,0.3-1.4-0.6
+ c-1.9-0.9,0.6,0.4-1.2-0.6c-1.6-1.1,0.5,0.4-1-0.8c-1.2-1.2,0.3,0.5-0.8-0.8c-0.8-1.3,0.2,0.5-0.5-0.9c-0.3-1.3,0,0.5-0.1-0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M431.2,124.6c2.3-0.9-0.8,0.2,1.5-0.5c2.7-0.5-0.9,0.1,1.8-0.3c3-0.3-1,0,2-0.2c3.3-0.1-1.1,0,2.2-0.1c3.5,0-1.2,0,2.3,0
+ c3.5,0-1.2,0,2.4,0c3.5,0-1.2,0,2.3,0c3.3,0.1-1.1,0,2.2,0.1c3,0.2-1-0.1,2,0.2c2.7,0.4-0.9-0.2,1.8,0.3c2.3,0.8-0.7-0.3,1.5,0.5"
+ />
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380.2,189.2c0-0.4,0,0.1,0-0.3c0-1.2,0,0.4,0-0.8c0.1-1.1,0,0.4,0.1-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M497.8,202.2c-0.4,0,0.1,0-0.3,0c-0.9-0.5,0.3,0.2-0.6-0.4c-0.9-1,0.2,0.4-0.6-0.7c-0.8-1.5,0.2,0.5-0.5-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M388.6,200c-0.8,1.6,0.3-0.5-0.5,1c-0.8,1.1,0.3-0.3-0.6,0.7c-0.8,0.6,0.3-0.1-0.6,0.4c-0.4,0.1,0.1,0-0.3,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M384.3,187.4c0.2,1.1,0-0.4,0.1,0.7c0.1,2.4,0-0.8,0.1,1.6c-0.1,2.3,0.1-0.8-0.1,1.6c-0.3,2.1,0.1-0.7-0.2,1.4
+ c-0.4,1.8,0.2-0.6-0.3,1.2c-0.5,1.5,0.2-0.5-0.3,1c-0.5,1.3,0.2-0.4-0.4,0.8c-0.6,1,0.2-0.3-0.4,0.7c-0.6,0.7,0.2-0.2-0.4,0.5
+ c-0.6,0.4,0.2-0.1-0.4,0.2c-0.5,0.1,0.2,0-0.4,0c-0.5-0.3,0.1,0.1-0.3-0.2c-0.5-0.6,0.1,0.2-0.3-0.4c-0.4-0.9,0.1,0.3-0.2-0.6
+ c-0.3-1.2,0.1,0.4-0.2-0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M492.6,202.2c-0.3-0.1,0.1,0-0.2-0.1c0.1-0.3-0.1,0.1,0.1-0.2c0.7-0.5-0.2,0.1,0.4-0.3c1.2-0.7-0.4,0.2,0.8-0.5
+ c1.7-0.9-0.6,0.3,1.1-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M503.8,195.2c-0.2,0.9,0.1-0.3-0.1,0.6c-0.3,1,0.1-0.3-0.2,0.7c-0.4,0.7,0.2-0.2-0.3,0.5c-0.5,0.4,0.2-0.1-0.3,0.2
+ c-0.5,0.1,0.2,0-0.4,0c-0.6-0.3,0.2,0.1-0.4-0.2c-0.6-0.6,0.2,0.2-0.4-0.4c-0.6-0.9,0.2,0.3-0.4-0.6c-0.6-1.2,0.2,0.4-0.4-0.8
+ c-0.5-1.5,0.1,0.5-0.3-1c-0.4-1.8,0.1,0.6-0.3-1.2c-0.3-2.1,0.1,0.7-0.2-1.4c-0.1-0.7,0,0.2,0-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M384.3,187.4c0.3,1.1-0.1-0.4,0.2,0.7c0.3,1.2-0.1-0.4,0.2,0.8c0.3,1.4-0.1-0.5,0.2,0.9c0.4,1.5-0.1-0.5,0.2,1
+ c0.4,1.7-0.1-0.6,0.3,1.1c0.5,1.9-0.2-0.6,0.3,1.2c0.6,2-0.2-0.7,0.4,1.3c0.7,2.1-0.3-0.7,0.5,1.4c0.8,1.9-0.3-0.6,0.5,1.3
+ c0.8,1.7-0.3-0.5,0.5,1.1c0.7,1.4-0.3-0.5,0.5,1c0.7,1.2-0.2-0.4,0.4,0.8"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M384.3,187.4c0.4,0.7-0.1-0.3,0.3,0.5c0.5,0.9-0.2-0.3,0.3,0.6c0.6,1.1-0.2-0.4,0.4,0.7c0.7,1.3-0.2-0.4,0.4,0.9
+ c0.8,1.6-0.3-0.5,0.5,1c1,1.8-0.3-0.6,0.6,1.2c1.2,2.1-0.4-0.7,0.8,1.4c1.3,2.3-0.5-0.7,0.9,1.5c1.4,2.2-0.5-0.7,0.9,1.4
+ c1.3,1.9-0.5-0.6,0.9,1.3c1.2,1.6-0.4-0.5,0.8,1.1c1.1,1.3-0.4-0.4,0.7,0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M388.6,200c0.7,0.4-0.2-0.1,0.4,0.3c0.7,0.4-0.2-0.1,0.5,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M388.6,200c1.7-0.5-0.6,0.1,1.1-0.3c1.7-0.1-0.6,0,1.1,0c1.6,0.3-0.5-0.2,1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M391.9,199.9c0.4,0.4-0.1-0.1,0.2,0.3c0.3,0.3-0.1-0.1,0.2,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M392.3,200.4C392.3,200.4,392.4,200.4,392.3,200.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M389.5,200.6c1.7,0.9-0.6-0.3,1.2,0.6c1.2,0.7-0.4-0.2,0.8,0.5c0.6,0.4-0.2-0.2,0.4,0.3c0.2,0.3,0-0.1,0.1,0.2
+ c-0.2,0.1,0.1,0-0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M389.5,200.6c1.5-0.4-0.5,0.1,1-0.2c1.5-0.1-0.5,0,1,0c1.4,0.2-0.4-0.1,0.9,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M392.4,200.5C392.4,200.5,392.4,200.5,392.4,200.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M392.5,200.5C392.5,200.6,392.5,200.6,392.5,200.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M392.2,202.2C392.2,202.2,392.2,202.2,392.2,202.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M392.2,202.2C392.2,202.2,392.1,202.2,392.2,202.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380.2,190c0-0.2,0-0.4,0-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380.2,189.5c0-0.4,0,0.1,0-0.3c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380.2,189.2c0-1.1,0,0.4,0-0.7c0.1-0.9,0,0.3,0.1-0.6c0.1-0.7-0.1,0.2,0.1-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M453.3,124.6c0.3,0.1-0.1-0.1,0.2,0.1c0.2,0.2-0.1-0.1,0.2,0.1c0.2,0.2-0.1-0.1,0.1,0.1c0.2,0.2,0-0.1,0.1,0.1c0.1,0.2,0-0.1,0,0.2
+ "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M430.6,125.2c0-0.2,0,0.1,0-0.2c0.1-0.2-0.1,0.1,0.1-0.1c0.2-0.2-0.1,0.1,0.1-0.1c0.2-0.2-0.1,0.1,0.2-0.1c0.3-0.1-0.1,0,0.2-0.1"
+ />
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M492.3,202.2C492.3,202.2,492.3,202.2,492.3,202.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M491.9,200.6C491.9,200.6,492,200.6,491.9,200.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M492,200.5C492,200.5,492,200.5,492,200.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M494.9,200.6c0.7-0.4-0.2,0.1,0.5-0.3c0.7-0.4-0.2,0.1,0.4-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M494.9,200.6c-1.5-0.4,0.5,0.1-1-0.2c-1.5-0.1,0.5,0-1,0c-1.4,0.2,0.4-0.1-0.9,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M492.1,200.5C492.1,200.4,492.1,200.4,492.1,200.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M492.2,200.4c0.3-0.3-0.1,0.1,0.2-0.2c0.4-0.4-0.1,0.1,0.2-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M495.9,200c0.7-1.2-0.2,0.4,0.4-0.8c0.8-1.4-0.2,0.5,0.5-1c0.8-1.7-0.3,0.6,0.5-1.1c0.8-1.9-0.3,0.6,0.5-1.3
+ c0.8-2.1-0.2,0.7,0.5-1.4c0.6-2-0.2,0.7,0.4-1.3c0.5-1.8-0.2,0.6,0.3-1.2c0.4-1.7-0.1,0.6,0.3-1.1c0.4-1.5-0.1,0.5,0.2-1
+ c0.3-1.4-0.1,0.5,0.2-0.9c0.3-1.2-0.1,0.4,0.2-0.8c0.3-1.1-0.1,0.4,0.2-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M495.9,200c-1.7-0.5,0.6,0.1-1.1-0.3c-1.7-0.1,0.6,0-1.1,0c-1.6,0.3,0.5-0.2-1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M492.6,199.9c1.1-1.3-0.4,0.4,0.7-0.9c1.3-1.6-0.4,0.5,0.8-1.1c1.4-1.9-0.4,0.6,0.9-1.3c1.4-2.1-0.5,0.7,0.9-1.4
+ c1.4-2.3-0.4,0.8,0.9-1.5c1.2-2.1-0.4,0.7,0.8-1.4c1-1.8-0.3,0.6,0.6-1.2c0.8-1.6-0.3,0.5,0.5-1c0.7-1.3-0.2,0.4,0.4-0.9
+ c0.6-1.1-0.2,0.4,0.4-0.7c0.5-0.9-0.2,0.3,0.3-0.6c0.4-0.7-0.1,0.2,0.3-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380.6,195.1c-0.2-1.5,0.1,0.5-0.2-1c-0.2-1.8,0,0.6-0.1-1.2c-0.1-2.1,0,0.7-0.1-1.4c-0.1-2.3,0,0.8,0-1.5c0-0.8,0,0.3,0-0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M380.3,189.4c0-1.6,0,0.5,0-1.1c0.1-1.4,0,0.5,0-0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M500.1,191c-0.1-1.6,0,0.5,0-1c0-2.4-0.1,0.8,0.1-1.6c0.1-1.5-0.1,0.5,0.1-1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M494.2,213.3c0,0.6,0-0.2,0,0.4c0,0.5,0-0.2,0,0.4c0,0.1,0,0,0,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M468,213.3c0.2,1.1-0.1-0.4,0.1,0.7c0.5,0.9-0.2-0.3,0.4,0.6c0.7,0.6-0.3-0.2,0.5,0.4c0.9,0.3-0.3,0,0.6,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M477.6,215.1c-1.1-0.1,0.4,0.1-0.7-0.1c-1-0.5,0.3,0.2-0.6-0.4c-0.8-0.9,0.2,0.3-0.5-0.6c-0.4-1.1,0.1,0.4-0.3-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M390.2,214.1C390.2,214,390.2,214.1,390.2,214.1c0-0.6,0,0.1,0-0.4c0-0.6,0,0.2,0-0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M414.9,215.1c0.9-0.1-0.3,0.1,0.6-0.1c0.8-0.5-0.2,0.2,0.5-0.4c0.6-0.9-0.1,0.3,0.4-0.6c0.3-1.1,0,0.4,0.1-0.7"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M409,213.3c-0.3,1.1,0.2-0.3-0.3,0.7c-0.7,0.9,0.3-0.3-0.5,0.6c-0.9,0.6,0.4-0.1-0.6,0.4c-1.1,0.3,0.4,0-0.7,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M104.8,279.6c0.1-0.5,0,0.2,0.1-0.3c0.1-0.5,0,0.2,0.1-0.3c0.1-0.4-0.1,0.1,0.1-0.3c0.1-0.4-0.1,0.1,0.1-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M105.1,278.4C105.1,278.4,105.1,278.4,105.1,278.4c0.2-0.4-0.1,0.1,0.1-0.3c0.2-0.3-0.1,0.1,0.2-0.2c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M105.4,277.9c0.3-0.3-0.1,0.1,0.2-0.2c0.3-0.3-0.1,0.1,0.2-0.2c0.4-0.3-0.1,0.1,0.2-0.2c0.4-0.3-0.1,0.1,0.3-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M106.3,277.2c0,0,0-0.1,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M106.3,277C106.3,276.9,106.3,277,106.3,277c0-0.3,0,0,0-0.2c0-0.2,0,0.1,0-0.2c0-0.2,0,0.1,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M106.3,276.5C106.3,276.5,106.3,276.5,106.3,276.5c0.1-0.2,0,0,0.1-0.1c0.1-0.2,0,0,0.1-0.1c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M106.5,276.2c0.2-0.1-0.1,0,0.1-0.1c0.2-0.1-0.1,0,0.1-0.1c0.3-0.1-0.1,0,0.2-0.1c0.3-0.1-0.1,0,0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M106.5,282.4c0.2-0.1-0.1,0,0.2-0.1c0.2-0.1-0.1,0.1,0.1-0.1c0.2-0.2-0.1,0.1,0.1-0.1c0.2-0.2,0,0.1,0.1-0.1c0.1-0.1,0,0,0.1-0.1"
+ />
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M107.1,281.9C107.2,281.8,107.1,281.9,107.1,281.9c0.1-0.2,0,0,0.1-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M109.4,278.5C109.4,278.4,109.3,278.5,109.4,278.5c0.1-0.1,0-0.1,0.1-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M109.4,278.4C109.5,278.2,109.4,278.4,109.4,278.4c0.2-0.3,0,0,0.1-0.2c0.1-0.2,0,0.1,0-0.2c0.1-0.3,0,0.1,0-0.2c0-0.3,0,0.1,0-0.2
+ "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M104,280.8c-0.1-0.3,0,0.1,0-0.2c0-0.3,0,0.1,0-0.2c0-0.2,0,0.1,0-0.2c0-0.2,0,0.1,0-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M104,280.1C104,280.1,104,280.1,104,280.1c0.1-0.2,0,0,0.1-0.1c0.1-0.2,0,0,0.1-0.1c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M104.2,279.8c0.2-0.1-0.1,0,0.1-0.1c0.2-0.1-0.1,0,0.1-0.1c0.3-0.1-0.1,0,0.2-0.1c0.1,0,0,0,0.1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M104.6,279.6c0,0,0.1,0,0.1,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M227.1,335.3c-0.2,0.3,0.1-0.1-0.2,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.1,0.3,0-0.1-0.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M231.4,331.8c0,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4c-0.1,0.6,0-0.2-0.1,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M231.3,333.4c0.1,0.3,0-0.1,0.1,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c-0.1,0.3,0-0.1,0,0.2c-0.1,0.2,0-0.1-0.1,0.2
+ c-0.2,0.2,0.1-0.1-0.1,0.2c-0.2,0.2,0.1-0.1-0.2,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.9,334.7c-0.2,0.5,0.1-0.2-0.1,0.4c-0.2,0.5,0.1-0.2-0.2,0.4c-0.3,0.5,0.1-0.2-0.2,0.4c-0.3,0.5,0.1-0.2-0.2,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M227.2,333.7c-0.1,0.6,0-0.2-0.1,0.4c-0.1,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4c0,0.6,0-0.2,0,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M228.2,331c-0.3,0.5,0.1-0.2-0.2,0.4c-0.3,0.5,0.1-0.2-0.2,0.4c-0.3,0.5,0.1-0.2-0.2,0.4c-0.2,0.5,0.1-0.2-0.1,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.3,336.9c0.1,0.2,0-0.1,0.1,0.1c0.1,0.2,0-0.1,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1c-0.1,0.1,0,0-0.1,0.1
+ c-0.1,0.1,0.1,0-0.1,0.1c-0.2,0.1,0.1,0-0.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M232.1,330.5c0.1,0.2,0-0.1,0.1,0.1c0.1,0.2,0-0.1,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1c-0.1,0.1,0,0-0.1,0.1
+ c-0.1,0.1,0.1,0-0.1,0.1c-0.2,0.1,0.1,0-0.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M231.9,331.1c-0.1,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.2,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M228.1,330.1c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M228.8,328.8c-0.2,0.3,0.1-0.1-0.2,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.1,0.3,0-0.1-0.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.2,337.6c-0.1,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.3,0.1-0.1-0.2,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M230.2,336.1c0.1,0.3,0-0.1,0.1,0.2c0.1,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M232,329.7c0.1,0.3,0-0.1,0.1,0.2c0.1,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M226.4,336.6c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0.1,0.3,0-0.1,0.1,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M165.3,380.2c-0.4-0.1,0.1,0-0.2-0.1c-0.6-0.1,0.2,0-0.4-0.1c-0.6-0.1,0.2,0-0.4-0.1c-0.7-0.1,0.2,0-0.4,0c-0.7,0,0.2,0-0.5,0
+ c-0.7,0,0.2,0-0.5,0c-0.7,0.1,0.2,0-0.4,0c-0.6,0.1,0.2,0-0.4,0.1c-0.6,0.1,0.2-0.1-0.4,0.1c-0.4,0.1,0.1,0-0.2,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M167.8,378.1C167.7,378,167.8,378.1,167.8,378.1C167.7,378,167.7,378,167.8,378.1c-0.1-0.1,0-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0"
+ />
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M161.8,380.4c0.3,0.2-0.1,0,0.2,0.1c0.4,0.1-0.1,0,0.3,0.1c0.5,0.1-0.2,0,0.3,0.1c0.5,0.1-0.2,0,0.3,0c0.5,0-0.2,0,0.4,0
+ c0.5,0-0.2,0,0.4,0c0.5,0-0.2,0,0.3,0c0.5-0.1-0.2,0,0.3-0.1c0.4-0.1-0.1,0,0.3-0.1c0.3-0.1-0.1,0.1,0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M158.9,378.1C159,378,158.9,378.1,158.9,378.1C159,378,158.9,378,158.9,378.1c0.1-0.1,0-0.1,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M166,379.8c0-0.2,0,0.1,0-0.2c-0.2-0.2,0.1,0.1-0.1-0.2c-0.3-0.2,0.1,0.1-0.2-0.1c-0.4-0.2,0.1,0.1-0.3-0.1c-0.5-0.2,0.2,0-0.3-0.1
+ c-0.6-0.1,0.2,0-0.4-0.1c-0.6-0.1,0.2,0-0.4-0.1c-0.7-0.1,0.2,0-0.4,0c-0.7,0,0.2,0-0.5,0c-0.7,0,0.2,0-0.5,0c-0.7,0.1,0.2,0-0.4,0
+ c-0.6,0.1,0.2,0-0.4,0.1c-0.6,0.1,0.2-0.1-0.4,0.1c-0.5,0.2,0.2-0.1-0.3,0.1c-0.4,0.2,0.1-0.1-0.3,0.1c-0.3,0.2,0.1-0.1-0.2,0.1
+ c-0.2,0.2,0-0.1-0.1,0.2c-0.1,0.2,0-0.1,0,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M160.1,378.2C160.1,378.1,160.1,378.2,160.1,378.2c0-0.1,0,0,0-0.1c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M160.1,378.2c-0.9-0.1,0.3,0-0.6,0c-0.9-0.1,0.3,0-0.6-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M165.8,378.3C165.8,378.2,165.8,378.3,165.8,378.3c0-0.1,0,0,0-0.1c0,0,0,0,0,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M165.8,378.3c-2.4,0.1,0.8,0-1.6,0.1c-2.4,0,0.8,0-1.6,0c-2.4-0.1,0.8,0-1.6-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M160.9,378.1C160.9,378.2,160.9,378.1,160.9,378.1C160.9,378.2,160.9,378.1,160.9,378.1c0,0.2,0,0,0,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M166.6,378.1C166.6,378.1,166.6,378.1,166.6,378.1C166.6,378.2,166.6,378.1,166.6,378.1c0,0.2,0,0,0,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M167.8,378.1c-0.9,0.1,0.3,0-0.6,0.1c-0.9,0.1,0.3,0-0.6,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M152.4,381.5c-0.5,0,0.2,0-0.4,0c-0.5,0,0.2,0-0.3,0c-0.5-0.1,0.2,0-0.3-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M151.3,381.4c-0.4-0.1,0.1,0-0.2-0.1c-0.4-0.1,0.1,0.1-0.2-0.1c-0.3-0.2,0.1,0.1-0.2-0.1c-0.3-0.2,0.1,0.1-0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M148.2,380.4c-1-0.1,0.3,0-0.7-0.1c-1-0.2,0.3,0.1-0.7-0.1c-1-0.2,0.3,0.1-0.7-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M146.2,380c-0.7-0.2,0.2,0.1-0.5-0.1c-0.7-0.2,0.2,0.1-0.5-0.2c-0.7-0.3,0.2,0.1-0.5-0.2c-0.7-0.3,0.2,0.1-0.5-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M142,378.7c-0.5,0,0.2,0-0.4,0c-0.5,0,0.2,0-0.3,0c-0.5-0.1,0.2,0-0.3-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M141,378.6c-0.4-0.1,0.1,0-0.2-0.1c-0.4-0.1,0.1,0.1-0.2-0.1c-0.3-0.2,0.1,0.1-0.2-0.1c-0.3-0.2,0.1,0.1-0.2-0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M168.5,244.7c0.9-0.5-0.3,0.1,0.6-0.3c0.9-0.4-0.3,0.1,0.6-0.2c0.8-0.3-0.3,0.1,0.6-0.2c0.8-0.1-0.3,0,0.6-0.1c0.8,0-0.3,0,0.6,0
+ c0.9,0.1-0.3-0.1,0.6,0.1c0.9,0.2-0.3-0.1,0.6,0.2c0.9,0.3-0.3-0.1,0.6,0.2c0.9,0.5-0.3-0.2,0.6,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M168.5,248c0.9,0.5-0.3-0.1,0.6,0.3c0.9,0.4-0.3-0.1,0.6,0.2c0.8,0.3-0.3-0.1,0.6,0.2c0.8,0.1-0.3,0,0.6,0.1c0.5,0-0.2,0,0.4,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M171.2,248.8c0.3,0-0.1,0,0.2,0c0.9-0.1-0.3,0.1,0.6-0.1c0.9-0.2-0.3,0.1,0.6-0.2c0.9-0.3-0.3,0.1,0.6-0.2c0.9-0.5-0.3,0.2,0.6-0.3
+ "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M158.1,244.7c1.8-0.5-0.6,0.1,1.2-0.3c1.7-0.4-0.6,0.1,1.2-0.2c1.7-0.3-0.6,0.1,1.1-0.2c1.7-0.1-0.6,0,1.1-0.1c1.7,0-0.6,0,1.1,0
+ c1.7,0.1-0.6-0.1,1.1,0.1c1.7,0.2-0.6-0.1,1.1,0.2c1.7,0.3-0.6-0.1,1.2,0.2c1.8,0.5-0.6-0.2,1.2,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M158.1,248c1.8,0.5-0.6-0.1,1.2,0.3c1.7,0.4-0.6-0.1,1.2,0.2c1.7,0.3-0.6-0.1,1.1,0.2c1.7,0.1-0.6,0,1.1,0.1c1.7,0-0.6,0,1.1,0
+ c1.7-0.1-0.6,0.1,1.1-0.1c1.7-0.2-0.6,0.1,1.1-0.2c1.7-0.3-0.6,0.1,1.2-0.2c1.8-0.5-0.6,0.2,1.2-0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M152.9,244.7c0.9-0.5-0.3,0.1,0.6-0.3c0.9-0.4-0.3,0.1,0.6-0.2c0.8-0.3-0.3,0.1,0.6-0.2c0.8-0.1-0.3,0,0.6-0.1c0.9,0-0.3,0,0.6,0
+ c0.9,0.1-0.3-0.1,0.6,0.1c0.9,0.2-0.3-0.1,0.6,0.2c0.9,0.3-0.3-0.1,0.6,0.2c0.9,0.5-0.3-0.2,0.6,0.3"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M152.9,248c0.9,0.5-0.3-0.1,0.6,0.3c0.9,0.4-0.3-0.1,0.6,0.2c0.8,0.3-0.3-0.1,0.6,0.2c0.8,0.1-0.3,0,0.6,0.1c0.3,0-0.1,0,0.2,0"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M155.5,248.8c0.5,0-0.2,0,0.4,0c0.9-0.1-0.3,0.1,0.6-0.1c0.9-0.2-0.3,0.1,0.6-0.2c0.9-0.3-0.3,0.1,0.6-0.2c0.9-0.5-0.3,0.2,0.6-0.3
+ "/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,310.5c0.1,0.4,0-0.1,0,0.2c0.2,0.4-0.1-0.1,0.1,0.2c0.3,0.3-0.1-0.1,0.2,0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M82.2,326.2c-0.3,0.8,0.1-0.3-0.2,0.5c-0.1,0.8,0-0.3-0.1,0.5c0.1,0.7-0.1-0.2,0.1,0.5c0.3,0.6-0.1-0.2,0.2,0.4"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M81.8,326.9c0.1-0.4,0,0.1,0-0.2c0.2-0.4-0.1,0.1,0.1-0.2c0.3-0.3-0.1,0.1,0.2-0.2"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M82.2,309.3c-0.3,0.6,0.1-0.2-0.2,0.4c-0.1,0.7,0-0.2-0.1,0.5c0.1,0.8-0.1-0.3,0.1,0.5c0.3,0.8-0.1-0.3,0.2,0.6"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M84.9,332.4C85,332.4,84.9,332.3,84.9,332.4C85.1,332.4,85,332.4,84.9,332.4c0.1-0.1,0.1,0.1,0.1,0c0-0.2,0,0.1,0-0.1
+ c0-0.2,0,0.1,0-0.2c0-0.3,0,0.1,0-0.2c0-0.4,0,0.1,0-0.3c0-0.5,0,0.2,0-0.3c-0.1-0.6,0,0.2,0-0.4c-0.1-0.7,0,0.2-0.1-0.5"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M84.9,307.1c0.1-0.7,0,0.2,0.1-0.5c0.1-0.6,0,0.2,0-0.4c0-0.5,0,0.2,0-0.3c0-0.4,0,0.1,0-0.3c0-0.3,0,0.1,0-0.2c0-0.2,0,0.1,0-0.2
+ c0-0.2,0,0.1,0-0.1c0-0.1,0,0,0-0.1c-0.1,0,0,0,0,0c-0.1,0.1,0,0-0.1,0.1"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M99.6,302.9C99.6,303,99.6,302.9,99.6,302.9c-0.2,0.3,0,0-0.1,0.2c-0.2,0.5,0.1-0.2-0.2,0.3c-0.1,0.3,0-0.1-0.1,0.2
+ c-0.2,0.4,0.1-0.1-0.1,0.3c-0.2,0.5,0.1-0.2-0.1,0.3c-0.2,0.6,0.1-0.2-0.1,0.4c-0.3,1.3,0.1-0.4-0.2,0.8c-0.2,1.4,0-0.5-0.1,0.9
+ c-0.1,1.4,0-0.5,0,0.9"/>
+
+ <path fill="none" stroke="#000000" stroke-width="0.1772" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="500" d="
+ M98.6,330.1c0,1.4,0-0.5,0,0.9c0.2,1.4-0.1-0.5,0.1,0.9c0.3,1.3-0.1-0.4,0.2,0.8c0.2,0.6-0.1-0.2,0.1,0.4c0.2,0.5-0.1-0.2,0.1,0.3
+ c0.2,0.4-0.1-0.1,0.1,0.3c0.1,0.3-0.1-0.1,0.1,0.2c0.2,0.5-0.1-0.2,0.2,0.3c0.1,0.2,0-0.1,0.1,0.2c0,0.1,0,0,0,0"/>
+</g>
+</svg>
diff --git a/src/test/res/missing.svg b/src/test/res/missing.svg
new file mode 100644
index 0000000..8fb23d2
--- /dev/null
+++ b/src/test/res/missing.svg
@@ -0,0 +1,1090 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="697.1" height="588.2"
+ viewBox="0 0 697.1 588.2" overflow="visible" enable-background="new 0 0 697.1 588.2" xml:space="preserve">
+<g>
+
+ <circle display="none" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" cx="391.4" cy="158.4" r="0.1"/>
+</g>
+<g>
+ <line fill="none" stroke="#000000" x1="295.7" y1="344.9" x2="322.4" y2="344.9"/>
+ <line fill="none" stroke="#000000" x1="328.2" y1="344.9" x2="332.3" y2="344.9"/>
+ <line fill="none" stroke="#000000" x1="472.2" y1="344.8" x2="486.7" y2="344.8"/>
+ <line fill="none" stroke="#000000" x1="493.3" y1="344.8" x2="507" y2="344.8"/>
+ <line fill="none" stroke="#000000" x1="353.7" y1="249.1" x2="370.1" y2="249.1"/>
+ <line fill="none" stroke="#000000" x1="372.3" y1="249.1" x2="375.3" y2="249.1"/>
+ <line fill="none" stroke="#000000" x1="299.7" y1="216" x2="322.3" y2="216"/>
+ <line fill="none" stroke="#000000" x1="328.1" y1="216" x2="336.8" y2="216"/>
+ <polyline fill="none" stroke="#000000" points="313.8,206.7 309.5,205.4 310.4,204 313.8,206.7 "/>
+ <polyline fill="none" stroke="#000000" points="315.7,335.8 312.8,332.7 314.3,331.9 315.7,335.8 "/>
+ <line fill="none" stroke="#000000" x1="498.5" y1="389.8" x2="476.2" y2="389.8"/>
+ <line fill="none" stroke="#000000" x1="379.2" y1="389.8" x2="335" y2="389.8"/>
+ <line fill="none" stroke="#000000" x1="334.4" y1="389.3" x2="379.8" y2="389.3"/>
+ <line fill="none" stroke="#000000" x1="475.6" y1="389.3" x2="499.1" y2="389.3"/>
+ <line fill="none" stroke="#000000" x1="334.4" y1="380.2" x2="379.8" y2="380.2"/>
+ <line fill="none" stroke="#000000" x1="475.6" y1="380.2" x2="499.1" y2="380.2"/>
+ <line fill="none" stroke="#000000" x1="331.7" y1="379.7" x2="381.5" y2="379.7"/>
+ <line fill="none" stroke="#000000" x1="473.4" y1="379.7" x2="502.5" y2="379.7"/>
+ <line fill="none" stroke="#000000" x1="331.7" y1="377" x2="361.2" y2="377"/>
+ <line fill="none" stroke="#000000" x1="487.4" y1="377" x2="502.5" y2="377"/>
+ <line fill="none" stroke="#000000" x1="338" y1="377" x2="354.3" y2="377"/>
+ <line fill="none" stroke="#000000" x1="486.8" y1="377" x2="495.5" y2="377"/>
+ <line fill="none" stroke="#000000" x1="337.4" y1="376.5" x2="354.9" y2="376.5"/>
+ <line fill="none" stroke="#000000" x1="485" y1="376.5" x2="496.1" y2="376.5"/>
+ <line fill="none" stroke="#000000" x1="415" y1="376.4" x2="441.2" y2="376.4"/>
+ <line fill="none" stroke="#000000" x1="337.4" y1="375.2" x2="354.9" y2="375.2"/>
+ <line fill="none" stroke="#000000" x1="483.6" y1="375.2" x2="496.1" y2="375.2"/>
+ <line fill="none" stroke="#000000" x1="495.5" y1="374.7" x2="483.4" y2="374.7"/>
+ <line fill="none" stroke="#000000" x1="354.3" y1="374.7" x2="338" y2="374.7"/>
+ <line fill="none" stroke="#000000" x1="480.1" y1="373.9" x2="466.9" y2="373.9"/>
+ <line fill="none" stroke="#000000" x1="341.8" y1="373.9" x2="363.7" y2="373.9"/>
+ <line fill="none" stroke="#000000" x1="417.1" y1="373.2" x2="403" y2="373.2"/>
+ <line fill="none" stroke="#000000" x1="390" y1="373.2" x2="375.9" y2="373.2"/>
+ <line fill="none" stroke="#000000" x1="417.1" y1="373" x2="375.9" y2="373"/>
+ <line fill="none" stroke="#000000" x1="491.9" y1="351.9" x2="495.4" y2="351.2"/>
+ <line fill="none" stroke="#000000" x1="417.1" y1="371.2" x2="375.9" y2="371.2"/>
+ <line fill="none" stroke="#000000" x1="480.1" y1="369.2" x2="466.9" y2="369.2"/>
+ <line fill="none" stroke="#000000" x1="341.8" y1="369.2" x2="363.7" y2="369.2"/>
+ <line fill="none" stroke="#000000" x1="375.7" y1="368.7" x2="417.3" y2="368.7"/>
+ <line fill="none" stroke="#000000" x1="338" y1="367.4" x2="335.7" y2="367.4"/>
+ <line fill="none" stroke="#000000" x1="449.7" y1="367" x2="448.7" y2="367"/>
+ <line fill="none" stroke="#000000" x1="375.7" y1="366.8" x2="417.3" y2="366.8"/>
+ <line fill="none" stroke="#000000" x1="459.2" y1="366.1" x2="476.6" y2="366.1"/>
+ <line fill="none" stroke="#000000" x1="422" y1="364.8" x2="420.1" y2="364.8"/>
+ <line fill="none" stroke="#000000" x1="371" y1="364.8" x2="372.9" y2="364.8"/>
+ <line fill="none" stroke="#000000" x1="366.3" y1="364.6" x2="368.5" y2="364.6"/>
+ <line fill="none" stroke="#000000" x1="424.5" y1="364.6" x2="426.7" y2="364.6"/>
+ <line fill="none" stroke="#000000" x1="344.5" y1="363.8" x2="329.9" y2="363.8"/>
+ <line fill="none" stroke="#000000" x1="460.9" y1="363.8" x2="460.4" y2="363.8"/>
+ <line fill="none" stroke="#000000" x1="345.9" y1="363.4" x2="366.3" y2="363.4"/>
+ <line fill="none" stroke="#000000" x1="462.1" y1="363.4" x2="476.6" y2="363.4"/>
+ <line fill="none" stroke="#000000" x1="471" y1="363.4" x2="460.1" y2="363.4"/>
+ <line fill="none" stroke="#000000" x1="328.3" y1="363.4" x2="324.8" y2="363.4"/>
+ <line fill="none" stroke="#000000" x1="334.3" y1="363.4" x2="366.3" y2="363.4"/>
+ <line fill="none" stroke="#000000" x1="471" y1="363.4" x2="471.1" y2="363.4"/>
+ <line fill="none" stroke="#000000" x1="336.1" y1="363" x2="332.6" y2="363"/>
+ <line fill="none" stroke="#000000" x1="326.6" y1="363" x2="323.1" y2="363"/>
+ <line fill="none" stroke="#000000" x1="311.5" y1="295" x2="311.5" y2="301.4"/>
+ <line fill="none" stroke="#000000" x1="313.6" y1="205.6" x2="313.6" y2="206.5"/>
+ <line fill="none" stroke="#000000" x1="313.6" y1="225.4" x2="313.6" y2="295"/>
+ <line fill="none" stroke="#000000" x1="313.9" y1="335.4" x2="313.9" y2="308.6"/>
+ <line fill="none" stroke="#000000" x1="335.5" y1="362.4" x2="321.4" y2="362.4"/>
+ <line fill="none" stroke="#000000" x1="384.2" y1="358.9" x2="408.8" y2="358.9"/>
+ <line fill="none" stroke="#000000" x1="385.1" y1="357" x2="407.9" y2="357"/>
+ <line fill="none" stroke="#000000" x1="479.1" y1="356.2" x2="459.8" y2="356.2"/>
+ <line fill="none" stroke="#000000" x1="328.5" y1="356.2" x2="366.3" y2="356.2"/>
+ <line fill="none" stroke="#000000" x1="426.6" y1="356.2" x2="437.7" y2="356.2"/>
+ <line fill="none" stroke="#000000" x1="311.9" y1="354.3" x2="324.7" y2="354.3"/>
+ <line fill="none" stroke="#000000" x1="460.3" y1="354" x2="459.8" y2="354"/>
+ <line fill="none" stroke="#000000" x1="437.1" y1="354" x2="437.7" y2="354"/>
+ <line fill="none" stroke="#000000" x1="331.7" y1="379.7" x2="331.7" y2="377"/>
+ <line fill="none" stroke="#000000" x1="329.9" y1="353.3" x2="325.4" y2="353.3"/>
+ <line fill="none" stroke="#000000" x1="482.7" y1="352" x2="491.9" y2="352"/>
+ <line fill="none" stroke="#000000" x1="315.4" y1="351" x2="314.4" y2="351"/>
+ <line fill="none" stroke="#000000" x1="479.9" y1="350.1" x2="479.1" y2="350.1"/>
+ <line fill="none" stroke="#000000" x1="316.5" y1="350.1" x2="308.4" y2="350.1"/>
+ <line fill="none" stroke="#000000" x1="484" y1="349" x2="481" y2="349"/>
+ <line fill="none" stroke="#000000" x1="449.7" y1="346.5" x2="448.7" y2="346.5"/>
+ <line fill="none" stroke="#000000" x1="322.4" y1="344.9" x2="328.2" y2="344.9"/>
+ <line fill="none" stroke="#000000" x1="493.3" y1="344.8" x2="486.7" y2="344.8"/>
+ <line fill="none" stroke="#000000" x1="334.3" y1="379.7" x2="334.3" y2="377"/>
+ <line fill="none" stroke="#000000" x1="334.4" y1="380.2" x2="334.4" y2="389.3"/>
+ <line fill="none" stroke="#000000" x1="337.4" y1="375.2" x2="337.4" y2="376.5"/>
+ <line fill="none" stroke="#000000" x1="341.8" y1="369.2" x2="341.8" y2="373.9"/>
+ <line fill="none" stroke="#000000" x1="342.3" y1="379.7" x2="342.3" y2="377"/>
+ <line fill="none" stroke="#000000" x1="484" y1="340.6" x2="481" y2="340.6"/>
+ <line fill="none" stroke="#000000" x1="308.4" y1="339.7" x2="316.5" y2="339.7"/>
+ <line fill="none" stroke="#000000" x1="479.9" y1="339.5" x2="479.1" y2="339.5"/>
+ <line fill="none" stroke="#000000" x1="315.4" y1="338.7" x2="314.4" y2="338.7"/>
+ <line fill="none" stroke="#000000" x1="482.7" y1="337.6" x2="491.9" y2="337.6"/>
+ <line fill="none" stroke="#000000" x1="329.9" y1="336.5" x2="325.4" y2="336.5"/>
+ <line fill="none" stroke="#000000" x1="311.9" y1="335.4" x2="324.7" y2="335.4"/>
+ <line fill="none" stroke="#000000" x1="420.1" y1="364.8" x2="409.8" y2="357.8"/>
+ <line fill="none" stroke="#000000" x1="404.8" y1="334.5" x2="388.2" y2="334.5"/>
+ <line fill="none" stroke="#000000" x1="404.8" y1="332.6" x2="388.2" y2="332.6"/>
+ <line fill="none" stroke="#000000" x1="427.9" y1="332.1" x2="365.1" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="427.9" y1="327.9" x2="365.1" y2="327.9"/>
+ <line fill="none" stroke="#000000" x1="404.8" y1="327.1" x2="388.2" y2="327.1"/>
+ <line fill="none" stroke="#000000" x1="383.2" y1="323.8" x2="372.9" y2="316.9"/>
+ <line fill="none" stroke="#000000" x1="417.3" y1="366.8" x2="408.8" y2="358.9"/>
+ <line fill="none" stroke="#000000" x1="353.7" y1="379.7" x2="353.7" y2="377"/>
+ <line fill="none" stroke="#000000" x1="354.9" y1="375.2" x2="354.9" y2="376.5"/>
+ <line fill="none" stroke="#000000" x1="357.9" y1="380.2" x2="357.9" y2="389.3"/>
+ <line fill="none" stroke="#000000" x1="363.7" y1="369.2" x2="363.7" y2="373.9"/>
+ <line fill="none" stroke="#000000" x1="404.8" y1="325.1" x2="388.2" y2="325.1"/>
+ <line fill="none" stroke="#000000" x1="385.1" y1="324.6" x2="407.9" y2="324.6"/>
+ <line fill="none" stroke="#000000" x1="384.2" y1="322.8" x2="408.8" y2="322.8"/>
+ <line fill="none" stroke="#000000" x1="426.7" y1="317" x2="424.5" y2="317"/>
+ <line fill="none" stroke="#000000" x1="366.3" y1="317" x2="368.5" y2="317"/>
+ <line fill="none" stroke="#000000" x1="422" y1="316.9" x2="420.1" y2="316.9"/>
+ <line fill="none" stroke="#000000" x1="371" y1="316.9" x2="372.9" y2="316.9"/>
+ <line fill="none" stroke="#000000" x1="491.9" y1="337.7" x2="495.4" y2="338.4"/>
+ <line fill="none" stroke="#000000" x1="384.2" y1="322.8" x2="375.7" y2="314.9"/>
+ <line fill="none" stroke="#000000" x1="365.1" y1="327.9" x2="365.1" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="365.7" y1="373.9" x2="365.7" y2="369.2"/>
+ <line fill="none" stroke="#000000" x1="366.3" y1="317" x2="366.3" y2="325.5"/>
+ <line fill="none" stroke="#000000" x1="366.3" y1="334.2" x2="366.3" y2="364.6"/>
+ <line fill="none" stroke="#000000" x1="366.4" y1="332.5" x2="366.4" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="366.4" y1="327.9" x2="366.4" y2="327.2"/>
+ <line fill="none" stroke="#000000" x1="366.5" y1="364.6" x2="366.5" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="366.5" y1="327.9" x2="366.5" y2="317"/>
+ <line fill="none" stroke="#000000" x1="368.5" y1="364.6" x2="368.5" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="368.5" y1="327.9" x2="368.5" y2="317"/>
+ <line fill="none" stroke="#000000" x1="368.5" y1="327.9" x2="368.5" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="371" y1="316.9" x2="371" y2="327.9"/>
+ <line fill="none" stroke="#000000" x1="371" y1="332.1" x2="371" y2="364.8"/>
+ <line fill="none" stroke="#000000" x1="372.9" y1="316.9" x2="372.9" y2="327.9"/>
+ <line fill="none" stroke="#000000" x1="372.9" y1="332.1" x2="372.9" y2="364.8"/>
+ <line fill="none" stroke="#000000" x1="417.3" y1="314.9" x2="375.7" y2="314.9"/>
+ <line fill="none" stroke="#000000" x1="417.3" y1="313" x2="375.7" y2="313"/>
+ <line fill="none" stroke="#000000" x1="375.9" y1="310.5" x2="417.1" y2="310.5"/>
+ <line fill="none" stroke="#000000" x1="375.9" y1="308.6" x2="417.1" y2="308.6"/>
+ <line fill="none" stroke="#000000" x1="313.9" y1="308.6" x2="374.1" y2="308.6"/>
+ <line fill="none" stroke="#000000" x1="418.9" y1="308.6" x2="479.1" y2="308.6"/>
+ <line fill="none" stroke="#000000" x1="417.1" y1="308.4" x2="375.9" y2="308.4"/>
+ <line fill="none" stroke="#000000" x1="375.9" y1="308.6" x2="375.9" y2="308.4"/>
+ <line fill="none" stroke="#000000" x1="375.9" y1="308.6" x2="375.9" y2="310.5"/>
+ <line fill="none" stroke="#000000" x1="375.7" y1="313" x2="375.7" y2="314.9"/>
+ <line fill="none" stroke="#000000" x1="379.8" y1="380.2" x2="379.8" y2="389.3"/>
+ <line fill="none" stroke="#000000" x1="381.5" y1="379.7" x2="381.5" y2="378.3"/>
+ <line fill="none" stroke="#000000" x1="381.8" y1="327.9" x2="381.8" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="383.2" y1="323.8" x2="383.2" y2="327.9"/>
+ <line fill="none" stroke="#000000" x1="383.2" y1="332.1" x2="383.2" y2="357.8"/>
+ <line fill="none" stroke="#000000" x1="383.6" y1="327.9" x2="383.6" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="375.7" y1="368.7" x2="375.7" y2="366.8"/>
+ <line fill="none" stroke="#000000" x1="375.9" y1="373" x2="375.9" y2="371.2"/>
+ <line fill="none" stroke="#000000" x1="375.9" y1="373.2" x2="375.9" y2="373"/>
+ <line fill="none" stroke="#000000" x1="463.4" y1="182.6" x2="466.5" y2="179.5"/>
+ <line fill="none" stroke="#000000" x1="312.7" y1="305" x2="480.3" y2="305"/>
+ <line fill="none" stroke="#000000" x1="311.5" y1="301.4" x2="481.5" y2="301.4"/>
+ <line fill="none" stroke="#000000" x1="385.1" y1="324.6" x2="385.1" y2="327.9"/>
+ <line fill="none" stroke="#000000" x1="385.1" y1="332.1" x2="385.1" y2="357"/>
+ <line fill="none" stroke="#000000" x1="388.2" y1="332.6" x2="388.2" y2="334.5"/>
+ <line fill="none" stroke="#000000" x1="388.2" y1="327.1" x2="388.2" y2="325.1"/>
+ <line fill="none" stroke="#000000" x1="466.4" y1="184" x2="465" y2="185.9"/>
+ <line fill="none" stroke="#000000" x1="311.5" y1="295" x2="481.5" y2="295"/>
+ <line fill="none" stroke="#000000" x1="404.8" y1="332.6" x2="404.8" y2="334.5"/>
+ <line fill="none" stroke="#000000" x1="404.8" y1="327.1" x2="404.8" y2="325.1"/>
+ <line fill="none" stroke="#000000" x1="468.1" y1="184.7" x2="466.5" y2="186.7"/>
+ <line fill="none" stroke="#000000" x1="407.9" y1="357" x2="407.9" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="407.9" y1="327.9" x2="407.9" y2="324.6"/>
+ <line fill="none" stroke="#000000" x1="409.4" y1="327.9" x2="409.4" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="409.8" y1="357.8" x2="409.8" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="409.8" y1="327.9" x2="409.8" y2="323.8"/>
+ <line fill="none" stroke="#000000" x1="411.2" y1="327.9" x2="411.2" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="417.1" y1="308.4" x2="417.1" y2="308.6"/>
+ <line fill="none" stroke="#000000" x1="417.1" y1="308.6" x2="417.1" y2="310.5"/>
+ <line fill="none" stroke="#000000" x1="417.3" y1="313" x2="417.3" y2="314.9"/>
+ <line fill="none" stroke="#000000" x1="420.1" y1="364.8" x2="420.1" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="420.1" y1="327.9" x2="420.1" y2="316.9"/>
+ <line fill="none" stroke="#000000" x1="422" y1="364.8" x2="422" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="422" y1="327.9" x2="422" y2="316.9"/>
+ <line fill="none" stroke="#000000" x1="424.5" y1="317" x2="424.5" y2="364.6"/>
+ <line fill="none" stroke="#000000" x1="426.5" y1="317" x2="426.5" y2="327.9"/>
+ <line fill="none" stroke="#000000" x1="426.5" y1="332.1" x2="426.5" y2="364.6"/>
+ <line fill="none" stroke="#000000" x1="426.6" y1="332.5" x2="426.6" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="426.6" y1="327.9" x2="426.6" y2="327.2"/>
+ <line fill="none" stroke="#000000" x1="426.7" y1="317" x2="426.7" y2="325.5"/>
+ <line fill="none" stroke="#000000" x1="426.7" y1="334.2" x2="426.7" y2="349.5"/>
+ <line fill="none" stroke="#000000" x1="426.7" y1="361.1" x2="426.7" y2="364.6"/>
+ <line fill="none" stroke="#000000" x1="417.3" y1="368.7" x2="417.3" y2="366.8"/>
+ <line fill="none" stroke="#000000" x1="417.1" y1="373" x2="417.1" y2="371.2"/>
+ <line fill="none" stroke="#000000" x1="417.1" y1="373" x2="417.1" y2="373.2"/>
+ <line fill="none" stroke="#000000" x1="427.9" y1="327.9" x2="427.9" y2="332.1"/>
+ <line fill="none" stroke="#000000" x1="437.1" y1="356.2" x2="437.1" y2="354"/>
+ <line fill="none" stroke="#000000" x1="463.4" y1="182.6" x2="462.7" y2="184.7"/>
+ <line fill="none" stroke="#000000" x1="361.7" y1="253.7" x2="369.5" y2="253.7"/>
+ <line fill="none" stroke="#000000" x1="437.7" y1="356.2" x2="437.7" y2="354"/>
+ <line fill="none" stroke="#000000" x1="471.5" y1="189.9" x2="474" y2="182.6"/>
+ <line fill="none" stroke="#000000" x1="475.7" y1="183.3" x2="473" y2="191.2"/>
+ <line fill="none" stroke="#000000" x1="408.8" y1="322.8" x2="417.3" y2="314.9"/>
+ <line fill="none" stroke="#000000" x1="409.8" y1="323.8" x2="420.1" y2="316.9"/>
+ <line fill="none" stroke="#000000" x1="370.1" y1="249.1" x2="372.3" y2="249.1"/>
+ <line fill="none" stroke="#000000" x1="361.7" y1="244.4" x2="369.5" y2="244.4"/>
+ <line fill="none" stroke="#000000" x1="482.1" y1="351" x2="482.5" y2="351.7"/>
+ <line fill="none" stroke="#000000" x1="375.7" y1="366.8" x2="384.2" y2="358.9"/>
+ <line fill="none" stroke="#000000" x1="492.1" y1="337.9" x2="492.4" y2="338.6"/>
+ <line fill="none" stroke="#000000" x1="462" y1="366.1" x2="462" y2="363.4"/>
+ <line fill="none" stroke="#000000" x1="466.9" y1="373.9" x2="466.9" y2="369.2"/>
+ <line fill="none" stroke="#000000" x1="459.8" y1="354" x2="459.8" y2="356.2"/>
+ <line fill="none" stroke="#000000" x1="460.3" y1="354" x2="460.3" y2="356.2"/>
+ <line fill="none" stroke="#000000" x1="372.9" y1="364.8" x2="383.2" y2="357.8"/>
+ <line fill="none" stroke="#000000" x1="311.8" y1="225.4" x2="324.6" y2="225.4"/>
+ <line fill="none" stroke="#000000" x1="325.3" y1="224.4" x2="328.6" y2="224.4"/>
+ <line fill="none" stroke="#000000" x1="315.3" y1="222.1" x2="314.3" y2="222.1"/>
+ <line fill="none" stroke="#000000" x1="481.5" y1="349" x2="481.6" y2="349.4"/>
+ <line fill="none" stroke="#000000" x1="470.3" y1="187.3" x2="470" y2="184"/>
+ <line fill="none" stroke="#000000" x1="473.9" y1="366.1" x2="473.9" y2="363.4"/>
+ <line fill="none" stroke="#000000" x1="475.6" y1="380.2" x2="475.6" y2="389.3"/>
+ <line fill="none" stroke="#000000" x1="479.1" y1="356.2" x2="479.1" y2="308.6"/>
+ <line fill="none" stroke="#000000" x1="316.4" y1="221.2" x2="308.3" y2="221.2"/>
+ <line fill="none" stroke="#000000" x1="322.3" y1="216" x2="328.1" y2="216"/>
+ <line fill="none" stroke="#000000" x1="485.6" y1="342.2" x2="485.2" y2="340.2"/>
+ <line fill="none" stroke="#000000" x1="479.4" y1="205.6" x2="479.4" y2="295"/>
+ <line fill="none" stroke="#000000" x1="480.1" y1="373.9" x2="480.1" y2="369.2"/>
+ <line fill="none" stroke="#000000" x1="481.5" y1="295" x2="481.5" y2="301.4"/>
+ <line fill="none" stroke="#000000" x1="483.3" y1="369.2" x2="483.3" y2="373.9"/>
+ <line fill="none" stroke="#000000" x1="308.3" y1="210.8" x2="316.4" y2="210.8"/>
+ <line fill="none" stroke="#000000" x1="315.3" y1="209.8" x2="314.3" y2="209.8"/>
+ <line fill="none" stroke="#000000" x1="325.3" y1="207.6" x2="328.6" y2="207.6"/>
+ <line fill="none" stroke="#000000" x1="311.8" y1="206.5" x2="324.6" y2="206.5"/>
+ <line fill="none" stroke="#000000" x1="313.6" y1="205.6" x2="479.4" y2="205.6"/>
+ <line fill="none" stroke="#000000" x1="496.1" y1="375.2" x2="496.1" y2="376.5"/>
+ <line fill="none" stroke="#000000" x1="499.1" y1="380.2" x2="499.1" y2="389.3"/>
+ <line fill="none" stroke="#000000" x1="499.6" y1="379.7" x2="499.6" y2="377"/>
+ <line fill="none" stroke="#000000" x1="481.6" y1="340.2" x2="481.5" y2="340.6"/>
+ <line fill="none" stroke="#000000" x1="485.2" y1="349.4" x2="485.6" y2="347.4"/>
+ <line fill="none" stroke="#000000" x1="502.5" y1="379.7" x2="502.5" y2="377"/>
+ <line fill="none" stroke="#000000" x1="482.1" y1="338.6" x2="482.5" y2="337.9"/>
+ <line fill="none" stroke="#000000" x1="324.7" y1="187.7" x2="468.3" y2="187.7"/>
+ <line fill="none" stroke="#000000" x1="472.9" y1="179.5" x2="474" y2="182.6"/>
+ <line fill="none" stroke="#000000" x1="474.6" y1="180.2" x2="475.7" y2="183.3"/>
+ <line fill="none" stroke="#000000" x1="492.1" y1="351.7" x2="492.4" y2="351"/>
+ <line fill="none" stroke="#000000" x1="472.9" y1="179.5" x2="466.5" y2="179.5"/>
+ <line fill="none" stroke="#000000" x1="466.4" y1="184" x2="468.1" y2="184.7"/>
+ <line fill="none" stroke="#000000" x1="475.7" y1="183.3" x2="474" y2="182.6"/>
+ <line fill="none" stroke="#000000" x1="474.6" y1="180.2" x2="472.9" y2="179.5"/>
+ <path fill="none" stroke="#000000" d="M379.2,389.8c0.3,0,0.6-0.2,0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M379.8,380.2c0-0.3-0.3-0.5-0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M498.5,389.8c0.3,0,0.6-0.2,0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M475.6,389.3c0,0.3,0.3,0.5,0.6,0.5"/>
+ <path fill="none" stroke="#000000" d="M499.1,380.2c0-0.3-0.3-0.5-0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M476.2,379.7c-0.3,0-0.6,0.2-0.6,0.5"/>
+ <path fill="none" stroke="#000000" d="M495.5,377c0.3,0,0.6-0.2,0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M496.1,375.2c0-0.3-0.3-0.5-0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M494.8,377c-0.1,0-0.1,0-0.2,0"/>
+ <path fill="none" stroke="#000000" d="M357.3,389.8c0.3,0,0.6-0.2,0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M334.4,389.3c0,0.3,0.3,0.5,0.6,0.5"/>
+ <path fill="none" stroke="#000000" d="M357.9,380.2c0-0.3-0.3-0.5-0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M335,379.7c-0.3,0-0.6,0.2-0.6,0.5"/>
+ <path fill="none" stroke="#000000" d="M354.3,377c0.3,0,0.6-0.2,0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M337.4,376.5c0,0.3,0.3,0.5,0.6,0.5"/>
+ <path fill="none" stroke="#000000" d="M354.9,375.2c0-0.3-0.3-0.5-0.6-0.5"/>
+ <path fill="none" stroke="#000000" d="M338,374.7c-0.3,0-0.6,0.2-0.6,0.5"/>
+ <path fill="none" stroke="#000000" d="M353.6,377c-0.1,0-0.1,0-0.2,0"/>
+ <path fill="none" stroke="#000000" d="M338.9,377c0,0-0.1,0-0.2,0"/>
+ <path fill="none" stroke="#000000" d="M465.7,363.4L465.7,363.4"/>
+ <path fill="none" stroke="#000000" d="M462.1,362.5c-1,0-2,0.2-2.9,0.6"/>
+ <path fill="none" stroke="#000000" d="M466.9,373.9c0,3.2,2.9,5.8,6.5,5.8"/>
+ <path fill="none" stroke="#000000" d="M466.9,369.2c0-1-0.5-1.9-1.4-2.5"/>
+ <path fill="none" stroke="#000000" d="M358.2,363.4C358.1,363.4,358.1,363.4,358.2,363.4"/>
+ <path fill="none" stroke="#000000" d="M365.3,363.4C365.3,363.4,365.2,363.4,365.3,363.4"/>
+ <path fill="none" stroke="#000000" d="M404.8,327.1c0.6,0,1.1-0.4,1.1-1c0-0.5-0.5-1-1.1-1"/>
+ <path fill="none" stroke="#000000" d="M388.2,325.1c-0.6,0-1.1,0.4-1.1,1c0,0.5,0.5,1,1.1,1"/>
+ <path fill="none" stroke="#000000" d="M404.8,334.5c0.6,0,1.1-0.4,1.1-1c0-0.5-0.5-1-1.1-1"/>
+ <path fill="none" stroke="#000000" d="M388.2,332.6c-0.6,0-1.1,0.4-1.1,1c0,0.5,0.5,1,1.1,1"/>
+ <path fill="none" stroke="#000000" d="M426.7,317c0-4.8-4.3-8.6-9.6-8.6"/>
+ <path fill="none" stroke="#000000" d="M417.1,373.2c5.3,0,9.6-3.9,9.6-8.6"/>
+ <path fill="none" stroke="#000000" d="M366.3,364.6c0,4.8,4.3,8.6,9.6,8.6"/>
+ <path fill="none" stroke="#000000" d="M375.9,308.4c-5.3,0-9.6,3.9-9.6,8.6"/>
+ <path fill="none" stroke="#000000" d="M426.5,317c0-4.6-4.2-8.4-9.4-8.4"/>
+ <path fill="none" stroke="#000000" d="M424.5,317c0-3.6-3.3-6.6-7.4-6.6"/>
+ <path fill="none" stroke="#000000" d="M417.1,373c5.2,0,9.4-3.8,9.4-8.4"/>
+ <path fill="none" stroke="#000000" d="M417.1,371.2c4.1,0,7.4-3,7.4-6.6"/>
+ <path fill="none" stroke="#000000" d="M366.5,364.6c0,4.6,4.2,8.4,9.4,8.4"/>
+ <path fill="none" stroke="#000000" d="M368.5,364.6c0,3.6,3.3,6.6,7.4,6.6"/>
+ <path fill="none" stroke="#000000" d="M375.9,308.6c-5.2,0-9.4,3.8-9.4,8.4"/>
+ <path fill="none" stroke="#000000" d="M375.9,310.5c-4.1,0-7.4,2.9-7.4,6.6"/>
+ <path fill="none" stroke="#000000" d="M329.9,363.8c-0.4-0.2-0.9-0.3-1.4-0.4"/>
+ <path fill="none" stroke="#000000" d="M471.1,363.4c4.4,0,8-3.2,8-7.2"/>
+ <path fill="none" stroke="#000000" d="M311.5,301.4c0,1.3,0.4,2.5,1.2,3.6"/>
+ <path fill="none" stroke="#000000" d="M313.9,308.6c0-1.3-0.4-2.5-1.2-3.6"/>
+ <path fill="none" stroke="#000000" d="M480.3,305c0.8-1.1,1.2-2.3,1.2-3.6"/>
+ <path fill="none" stroke="#000000" d="M480.3,305c-0.8,1.1-1.2,2.3-1.2,3.6"/>
+ <path fill="none" stroke="#000000" d="M329.9,363.8c3.8,1.9,7.8,3.6,11.8,5.2"/>
+ <path fill="none" stroke="#000000" d="M365.4,375.9c19.6,4,39.9,4.2,59.5,0.5"/>
+ <path fill="none" stroke="#000000" d="M324.7,187.7c-6.9,3.9-11.1,10.7-11.1,18"/>
+ <path fill="none" stroke="#000000" d="M468.3,187.7c-43.9-24.6-99.6-24.6-143.6,0"/>
+ <path fill="none" stroke="#000000" d="M479.4,205.6c0-7.3-4.2-14.1-11.1-18"/>
+ <path fill="none" stroke="#000000" d="M372.3,249.1c-0.4-0.8,0.1,0.3-0.3-0.5c-0.4-0.8,0.1,0.3-0.3-0.5c-0.4-0.8,0.1,0.3-0.3-0.5
+ c-0.4-0.8,0.1,0.3-0.3-0.5c-0.5-0.8,0.2,0.3-0.3-0.5s0.2,0.3-0.3-0.5s0.2,0.3-0.3-0.5s0.2,0.3-0.4-0.5s0.2,0.3-0.4-0.5"/>
+ <path fill="none" stroke="#000000" d="M369.5,253.7c0.6-0.8-0.2,0.3,0.4-0.5c0.5-0.8-0.2,0.3,0.4-0.5c0.5-0.8-0.2,0.3,0.3-0.5
+ c0.5-0.8-0.2,0.3,0.3-0.5c0.5-0.8-0.2,0.3,0.3-0.5c0.4-0.8-0.1,0.3,0.3-0.5c0.4-0.8-0.1,0.3,0.3-0.5c0.4-0.8-0.1,0.3,0.3-0.5
+ c0.4-0.8-0.1,0.3,0.3-0.5"/>
+ <path fill="none" stroke="#000000" d="M358.9,249.1c0.3,0.8-0.1-0.3,0.2,0.5c0.3,0.7-0.1-0.2,0.2,0.5c0.2,0.4-0.1-0.1,0.1,0.2"/>
+ <path fill="none" stroke="#000000" d="M360.5,252.1c0.2,0.2-0.1-0.1,0.1,0.2c0.5,0.7-0.2-0.2,0.3,0.5s-0.2-0.2,0.4,0.5
+ c0.6,0.8-0.2-0.3,0.4,0.5"/>
+ <path fill="none" stroke="#000000" d="M364.3,244.5c0.5,0-0.2,0,0.3,0c1.1,0.1-0.4-0.1,0.7,0.1c1,0.3-0.3-0.1,0.7,0.2
+ c1,0.4-0.3-0.2,0.7,0.3c0.9,0.6-0.3-0.2,0.6,0.4c0.8,0.7-0.2-0.2,0.5,0.5c0.7,0.8-0.2-0.3,0.4,0.5c0.6,0.9-0.2-0.3,0.4,0.6
+ c0.4,1-0.1-0.3,0.3,0.6c0.3,1-0.1-0.3,0.2,0.7c0.1,1,0-0.3,0.1,0.7c-0.1,1,0-0.3-0.1,0.7c-0.2,1,0.1-0.3-0.2,0.7
+ c-0.4,1,0.2-0.3-0.3,0.6c-0.5,0.9,0.2-0.3-0.4,0.6c-0.7,0.8,0.2-0.3-0.4,0.5c-0.8,0.7,0.3-0.2-0.5,0.5c-0.9,0.6,0.3-0.2-0.6,0.4"/>
+ <path fill="none" stroke="#000000" d="M361.7,244.4c-0.6,0.8,0.2-0.3-0.4,0.5c-0.5,0.7,0.2-0.2-0.4,0.5c-0.5,0.7,0.2-0.2-0.3,0.5
+ c-0.2,0.3,0.1-0.1-0.1,0.2"/>
+ <path fill="none" stroke="#000000" d="M359.4,247.8c-0.2,0.4,0.1-0.1-0.1,0.2c-0.3,0.7,0.1-0.2-0.2,0.5c-0.3,0.8,0.1-0.3-0.2,0.5"
+ />
+ <path fill="none" stroke="#000000" d="M363.9,244.5c-0.5,0,0.2,0-0.3,0c-1,0.2,0.3-0.1-0.7,0.1c-1,0.3,0.3-0.1-0.6,0.2
+ c-0.7,0.3,0.2-0.1-0.5,0.2"/>
+ <path fill="none" stroke="#000000" d="M361.8,245.1c0,0-0.1,0-0.1,0.1"/>
+ <path fill="none" stroke="#000000" d="M364.3,253.7c0.5,0-0.2,0,0.3,0c1.1-0.1-0.4,0.1,0.7-0.1c1-0.3-0.3,0.1,0.7-0.2
+ c1-0.4-0.3,0.2,0.7-0.3"/>
+ <path fill="none" stroke="#000000" d="M361.7,245.1c-0.9,0.6,0.3-0.2-0.6,0.4c-0.8,0.7,0.2-0.2-0.5,0.5c-0.7,0.8,0.2-0.3-0.5,0.5
+ c-0.6,0.9,0.2-0.3-0.4,0.6c-0.4,0.9,0.1-0.3-0.3,0.6c-0.3,1,0.1-0.3-0.2,0.7c-0.1,1,0-0.3-0.1,0.7c0,1,0-0.3,0,0.7
+ c0.2,1-0.1-0.3,0.1,0.7c0.4,0.9-0.1-0.3,0.3,0.6c0.5,0.9-0.2-0.3,0.3,0.6c0.6,0.8-0.2-0.3,0.4,0.5c0.7,0.7-0.3-0.2,0.5,0.5
+ c0.8,0.6-0.3-0.2,0.6,0.4c0.9,0.5-0.3-0.1,0.6,0.3c1,0.4-0.3-0.1,0.7,0.2c1,0.2-0.4-0.1,0.7,0.1c1,0.1-0.3,0,0.7,0"/>
+ <path fill="none" stroke="#000000" d="M367.3,253.7c0.3-0.8-0.1,0.3,0.2-0.5c0.3-0.7-0.1,0.2,0.2-0.5c0.3-0.7-0.1,0.2,0.2-0.5
+ c0.4-0.7-0.1,0.2,0.2-0.4c0.4-0.7-0.1,0.2,0.3-0.4c0.4-0.7-0.1,0.2,0.3-0.4c0.4-0.7-0.2,0.2,0.3-0.4c0.5-0.7-0.2,0.2,0.3-0.5
+ s-0.2,0.2,0.4-0.5c0.6-0.8-0.2,0.3,0.4-0.5"/>
+ <path fill="none" stroke="#000000" d="M363.6,244.5c0.1,0,0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M363.8,244.5L363.8,244.5"/>
+ <path fill="none" stroke="#000000" d="M363.8,244.5C363.9,244.5,363.8,244.5,363.8,244.5c0.2,0,0,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M364,244.5L364,244.5"/>
+ <path fill="none" stroke="#000000" d="M364.1,244.5c0.1,0,0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M362.2,247.3c-0.5,0.3,0.1-0.1-0.3,0.2c-0.4,0.4,0.1-0.1-0.3,0.2c-0.3,0.4,0.1-0.1-0.2,0.3
+ c-0.2,0.5,0.1-0.2-0.2,0.3c-0.2,0.5,0-0.2-0.1,0.3c-0.1,0.5,0-0.2,0,0.3s0-0.2,0,0.3c0.1,0.5-0.1-0.2,0.1,0.3
+ c0.2,0.5-0.1-0.2,0.2,0.3c0.3,0.4-0.1-0.1,0.2,0.3c0.4,0.4-0.1-0.1,0.3,0.2c0.4,0.3-0.2-0.1,0.3,0.2c0.5,0.2-0.2-0.1,0.3,0.1
+ c0.5,0.1-0.2,0,0.3,0.1c0.5,0.1-0.2,0,0.4,0c0.5,0-0.2,0,0.4,0c0.5-0.1-0.2,0.1,0.4-0.1c0.5-0.2-0.2,0.1,0.3-0.1"/>
+ <path fill="none" stroke="#000000" d="M370.1,249.1c-0.6-0.8,0.2,0.3-0.4-0.5c-0.5-0.7,0.2,0.2-0.4-0.5c-0.5-0.7,0.2,0.2-0.3-0.5
+ s0.1,0.2-0.3-0.4c-0.4-0.7,0.1,0.2-0.3-0.4c-0.4-0.7,0.1,0.2-0.3-0.4c-0.4-0.7,0.1,0.2-0.2-0.4c-0.3-0.7,0.1,0.2-0.2-0.5
+ c-0.3-0.7,0.1,0.2-0.2-0.5c-0.3-0.8,0.1,0.3-0.2-0.5"/>
+ <path fill="none" stroke="#000000" d="M364.3,250.8c0.5-0.3-0.1,0.1,0.3-0.2c0.4-0.4-0.1,0.1,0.3-0.2c0.3-0.4-0.1,0.1,0.2-0.3
+ c0.2-0.5-0.1,0.2,0.2-0.3c0.2-0.5,0,0.2,0.1-0.3c0.1-0.5,0,0.2,0-0.3s0,0.2,0-0.3c-0.1-0.5,0.1,0.2-0.1-0.3s0.1,0.2-0.2-0.3
+ c-0.3-0.4,0.1,0.1-0.2-0.3c-0.4-0.4,0.1,0.1-0.3-0.2c-0.4-0.3,0.2,0.1-0.3-0.2c-0.5-0.2,0.2,0.1-0.3-0.1c-0.5-0.1,0.2,0-0.4-0.1
+ c-0.5-0.1,0.2,0-0.4,0c-0.5,0,0.2,0-0.4,0c-0.5,0.1,0.2-0.1-0.3,0.1s0.2-0.1-0.3,0.1"/>
+ <path fill="none" stroke="#000000" d="M363.6,253.6c0.1,0,0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M363.8,253.6L363.8,253.6"/>
+ <path fill="none" stroke="#000000" d="M363.8,253.6C363.9,253.7,363.8,253.6,363.8,253.6c0.2,0,0,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M364,253.7L364,253.7"/>
+ <path fill="none" stroke="#000000" d="M364.1,253.7c0.1,0,0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M481.6,340.2c0.3-1-0.1,0.3,0.2-0.6c0.3-0.8-0.1,0.3,0.2-0.6c0.2-0.5-0.1,0.2,0.2-0.3"/>
+ <path fill="none" stroke="#000000" d="M485.1,344.8c0,1.2,0-0.4,0,0.8c-0.1,1.2,0-0.4-0.1,0.8c-0.1,1.1,0.1-0.4-0.1,0.8
+ c-0.2,1.1,0.1-0.4-0.1,0.7c-0.3,0.9,0.1-0.3-0.2,0.6c-0.3,0.8,0.1-0.3-0.2,0.5c-0.3,0.7,0.1-0.2-0.2,0.4c-0.4,0.5,0.1-0.1-0.2,0.3
+ l0,0"/>
+ <path fill="none" stroke="#000000" d="M491.9,337.6c0,0.1,0.1,0.2,0.1,0.3"/>
+ <path fill="none" stroke="#000000" d="M495.4,338.4c0.6,0.2-0.2-0.1,0.4,0.1c0.6,0.3-0.2-0.1,0.4,0.2c0.5,0.5-0.2-0.2,0.3,0.3
+ c0.5,0.6-0.1-0.2,0.3,0.4c0.5,0.8-0.1-0.3,0.3,0.6c0.4,1-0.1-0.3,0.2,0.7c0.3,1.1-0.1-0.4,0.2,0.7c0.2,1.2-0.1-0.4,0.1,0.8
+ c0.2,1.2,0-0.4,0.1,0.8c0.1,1.3,0-0.4,0.1,0.8c0,1.3,0-0.4,0,0.9"/>
+ <path fill="none" stroke="#000000" d="M497.9,344.8c0,1.3,0-0.4,0,0.9c-0.1,1.3,0-0.4-0.1,0.8c-0.1,1.2,0.1-0.4-0.1,0.8
+ c-0.2,1.2,0.1-0.4-0.2,0.8c-0.3,1.1,0.1-0.4-0.2,0.7c-0.4,1,0.1-0.3-0.3,0.7c-0.4,0.8,0.2-0.3-0.3,0.6c-0.5,0.6,0.2-0.2-0.3,0.4
+ c-0.5,0.5,0.2-0.1-0.3,0.3c-0.5,0.4,0.2-0.1-0.4,0.2c-0.6,0.2,0.2,0-0.4,0.1"/>
+ <path fill="none" stroke="#000000" d="M483.9,339.8L483.9,339.8c0.4,0.5-0.1-0.2,0.3,0.3c0.4,0.6-0.1-0.2,0.2,0.4
+ c0.3,0.8-0.1-0.3,0.2,0.5c0.3,0.9-0.1-0.3,0.2,0.6c0.2,1.1-0.1-0.4,0.1,0.7c0.2,1.1,0-0.4,0.1,0.8c0.1,1.2,0-0.4,0.1,0.8
+ c0,1.2,0-0.4,0,0.8"/>
+ <path fill="none" stroke="#000000" d="M482.7,352c0-0.1-0.1-0.2-0.1-0.3"/>
+ <path fill="none" stroke="#000000" d="M482.1,351c-0.3-0.5,0.1,0.2-0.2-0.3c-0.3-0.8,0.1,0.3-0.2-0.6c-0.3-1,0.1,0.3-0.2-0.6"/>
+ <path fill="none" stroke="#000000" d="M482.5,337.9c0-0.1,0.1-0.2,0.1-0.3"/>
+ <path fill="none" stroke="#000000" d="M492.1,351.7c0,0.1-0.1,0.2-0.1,0.3"/>
+ <path fill="none" stroke="#000000" d="M493.4,342.2c0,0.9,0-0.3,0,0.6c0,0.9,0-0.3,0,0.6c-0.1,1,0-0.3-0.1,0.6
+ c-0.1,1,0.1-0.3-0.1,0.7"/>
+ <path fill="none" stroke="#000000" d="M483.9,349.8c-0.4,0.3,0.1-0.1-0.3,0.2c-0.4,0.1,0.1,0-0.3,0.1c-0.4-0.1,0.1,0.1-0.3-0.1
+ c-0.4-0.3,0.1,0.1-0.3-0.2c-0.4-0.5,0.1,0.2-0.2-0.3c-0.4-0.6,0.1,0.2-0.2-0.4c0-0.1,0,0,0,0"/>
+ <path fill="none" stroke="#000000" d="M495.4,338.4C495.5,338.4,495.4,338.4,495.4,338.4c0.5,0.2-0.1-0.1,0.3,0.1
+ c0.5,0.4-0.1-0.2,0.3,0.3c0.4,0.6-0.1-0.2,0.3,0.4c0.4,0.8-0.1-0.3,0.3,0.5c0.4,1-0.1-0.3,0.2,0.7c0.3,1.1-0.1-0.4,0.2,0.7
+ c0.2,1.2-0.1-0.4,0.2,0.8c0.2,1.3,0-0.4,0.1,0.9c0.1,1.4,0-0.5,0.1,0.9c0,1.4,0-0.5,0,1"/>
+ <path fill="none" stroke="#000000" d="M485.6,342.2c0.3,0.9-0.1-0.3,0.2,0.6c0.4,0.9-0.1-0.3,0.3,0.6c0.4,1-0.2-0.3,0.3,0.6
+ c0.5,1-0.2-0.3,0.3,0.7"/>
+ <path fill="none" stroke="#000000" d="M485.4,337.6c-0.1,1,0-0.3-0.1,0.7c-0.1,1,0-0.3-0.1,0.6c0,0.9,0-0.3,0,0.6
+ c0,0.9,0-0.3,0,0.6"/>
+ <path fill="none" stroke="#000000" d="M485.2,349.4c-0.3,1,0.1-0.3-0.2,0.6c-0.3,0.8,0.1-0.3-0.2,0.6c-0.3,0.7,0.1-0.2-0.2,0.5
+ c-0.4,0.6,0.1-0.2-0.3,0.4c-0.4,0.5,0.1-0.1-0.3,0.3c-0.4,0.3,0.2-0.1-0.3,0.2"/>
+ <path fill="none" stroke="#000000" d="M493.3,344.8c0.1,1,0-0.3,0.1,0.7s0-0.3,0.1,0.6c0,0.9,0-0.3,0,0.6c0,0.9,0-0.3,0,0.6"/>
+ <path fill="none" stroke="#000000" d="M493.4,347.4c0.3,0.5-0.1-0.2,0.2,0.3c0.2,0.4,0-0.2,0.1,0.3c0,0.4,0-0.1,0,0.3
+ c-0.1,0.4,0-0.1-0.1,0.3c-0.2,0.4,0.1-0.1-0.1,0.3c-0.3,0.5,0.1-0.1-0.2,0.3c-0.4,0.5,0.2-0.1-0.3,0.3"/>
+ <path fill="none" stroke="#000000" d="M493,349.4c-0.3,0.9,0.1-0.3-0.2,0.6c-0.4,0.9,0.1-0.3-0.3,0.6c-0.4,1,0.2-0.3-0.3,0.6
+ c-0.3,0.6,0.1-0.2-0.2,0.4"/>
+ <path fill="none" stroke="#000000" d="M483.8,337.6c0.4,0.3-0.1-0.1,0.3,0.2c0.4,0.4-0.1-0.2,0.3,0.3c0.4,0.6-0.1-0.2,0.3,0.4
+ c0.4,0.7-0.1-0.2,0.2,0.5c0.3,0.8-0.1-0.3,0.2,0.6c0.3,1-0.1-0.3,0.2,0.6"/>
+ <path fill="none" stroke="#000000" d="M485.2,349.4c0,0.9,0-0.3,0,0.6c0,0.9,0-0.3,0,0.6c0.1,1,0-0.3,0.1,0.6
+ c0.1,1-0.1-0.3,0.1,0.7"/>
+ <path fill="none" stroke="#000000" d="M486.7,344.8c-0.5,1,0.2-0.3-0.3,0.7s0.1-0.3-0.3,0.6s0.1-0.3-0.3,0.6
+ c-0.3,0.9,0.1-0.3-0.2,0.6"/>
+ <path fill="none" stroke="#000000" d="M493,340.2c-0.3-1.1,0.1,0.4-0.2-0.8c-0.4-1,0.1,0.3-0.3-0.6c-0.1-0.2,0,0.1-0.1-0.1"/>
+ <path fill="none" stroke="#000000" d="M493,349.4c-0.3,1.1,0.1-0.4-0.2,0.8c-0.4,1,0.1-0.3-0.3,0.6c-0.1,0.2,0-0.1-0.1,0.1"/>
+ <path fill="none" stroke="#000000" d="M493.6,344.8c0-1.3,0,0.4,0-0.9c-0.1-1.3,0,0.4-0.1-0.9c-0.1-1.2,0,0.4-0.1-0.8"/>
+ <path fill="none" stroke="#000000" d="M493.6,344.8c0,1.3,0-0.4,0,0.9c-0.1,1.3,0-0.4-0.1,0.9c-0.1,1.2,0-0.4-0.1,0.8"/>
+ <path fill="none" stroke="#000000" d="M482.4,340.6C482.4,340.5,482.4,340.6,482.4,340.6c0.3-0.7-0.1,0.2,0.2-0.5
+ c0.4-0.5-0.1,0.1,0.2-0.3c0.4-0.3-0.1,0.1,0.3-0.2c0.4-0.1-0.1,0,0.3-0.1c0.4,0.1-0.1-0.1,0.3,0.1c0.4,0.3-0.1-0.1,0.3,0.2"/>
+ <path fill="none" stroke="#000000" d="M485.6,347.4c0.2-1.5,0,0.5,0.1-1c0.1-1.5,0,0.5,0-1c0-1.6,0,0.5,0-1c-0.1-1.5,0,0.5,0-1
+ c-0.1-1.5,0.1,0.5-0.1-1"/>
+ <path fill="none" stroke="#000000" d="M482.1,338.6c0.1-0.2,0,0.1,0.1-0.1c0.4-0.6-0.1,0.2,0.3-0.4c0.4-0.5-0.1,0.1,0.3-0.3
+ c0.4-0.3-0.2,0.1,0.3-0.2"/>
+ <path fill="none" stroke="#000000" d="M483,352c-0.4-0.3,0.1,0.1-0.3-0.2c-0.4-0.4,0.1,0.2-0.3-0.3c-0.4-0.6,0.1,0.2-0.3-0.4
+ c-0.1-0.2,0,0.1-0.1-0.1"/>
+ <path fill="none" stroke="#000000" d="M492.1,337.9c0.3,0.6-0.1-0.2,0.2,0.4c0.4,1-0.1-0.3,0.3,0.6c0.4,0.9-0.1-0.3,0.3,0.6
+ c0.3,0.9-0.1-0.3,0.2,0.6"/>
+ <path fill="none" stroke="#000000" d="M493,340.2c0.5,0.5-0.1-0.2,0.3,0.3c0.3,0.4-0.1-0.2,0.2,0.3c0.2,0.4,0-0.1,0.1,0.3
+ c0.1,0.4,0-0.1,0.1,0.3c0,0.4,0-0.1,0,0.3c-0.1,0.5,0.1-0.1-0.1,0.3c-0.3,0.5,0.1-0.1-0.2,0.3"/>
+ <path fill="none" stroke="#000000" d="M497.4,344.8c0,1.4,0-0.5,0,1c-0.1,1.4,0-0.5-0.1,0.9c-0.2,1.3,0.1-0.4-0.1,0.9
+ c-0.2,1.2,0.1-0.4-0.2,0.8c-0.3,1.1,0.1-0.4-0.2,0.7c-0.3,1,0.1-0.3-0.2,0.7c-0.4,0.8,0.1-0.3-0.3,0.5c-0.4,0.6,0.2-0.2-0.3,0.4
+ c-0.4,0.4,0.2-0.1-0.3,0.3c-0.4,0.2,0.2,0-0.3,0.1l0,0"/>
+ <path fill="none" stroke="#000000" d="M308.4,339.7c-0.5,0.6,0.2-0.2-0.4,0.4c-0.5,0.7,0.2-0.2-0.3,0.5c-0.4,0.8,0.1-0.3-0.3,0.5
+ c-0.4,0.8,0.1-0.3-0.3,0.6c-0.3,0.9,0.1-0.3-0.2,0.6c-0.3,1,0.1-0.3-0.2,0.6c-0.2,1,0.1-0.3-0.1,0.7c-0.1,1,0-0.3-0.1,0.7
+ c0,1,0-0.3,0,0.7"/>
+ <path fill="none" stroke="#000000" d="M312.5,341.7L312.5,341.7"/>
+ <path fill="none" stroke="#000000" d="M312.5,341.7c-0.5-0.6,0.2,0.2-0.3-0.4c-0.6-0.5,0.2,0.2-0.4-0.3c-0.6-0.4,0.2,0.1-0.4-0.2
+ c-0.7-0.2,0.2,0-0.4-0.1c-0.3,0,0.1,0-0.2,0"/>
+ <path fill="none" stroke="#000000" d="M312.5,348L312.5,348"/>
+ <path fill="none" stroke="#000000" d="M312.5,348c-0.5,0.6,0.2-0.2-0.3,0.4c-0.6,0.5,0.2-0.2-0.4,0.3c-0.6,0.4,0.2-0.1-0.4,0.2
+ c-0.7,0.2,0.2,0-0.4,0.1c-0.3,0,0.1,0-0.2,0"/>
+ <path fill="none" stroke="#000000" d="M308.4,350.1c-0.5-0.6,0.2,0.2-0.4-0.4c-0.5-0.7,0.2,0.2-0.3-0.5c-0.4-0.8,0.1,0.3-0.3-0.5
+ c-0.4-0.8,0.1,0.3-0.3-0.6c-0.3-0.9,0.1,0.3-0.2-0.6c-0.3-1,0.1,0.3-0.2-0.6c-0.2-1,0.1,0.3-0.1-0.7c-0.1-1,0,0.3-0.1-0.7
+ c0-1,0,0.3,0-0.7"/>
+ <path fill="none" stroke="#000000" d="M313.3,344.9c0,1.1,0-0.4,0,0.7c-0.2,1.1,0.1-0.4-0.1,0.7c-0.3,1,0.1-0.3-0.2,0.7
+ c-0.4,0.9,0.1-0.3-0.3,0.6c-0.3,0.6,0.1-0.2-0.2,0.4"/>
+ <path fill="none" stroke="#000000" d="M312.5,348L312.5,348"/>
+ <path fill="none" stroke="#000000" d="M313.3,344.9c0-1.1,0,0.4,0-0.7c-0.2-1.1,0.1,0.4-0.1-0.7c-0.3-1,0.1,0.3-0.2-0.7
+ c-0.4-0.9,0.1,0.3-0.3-0.6c-0.3-0.6,0.1,0.2-0.2-0.4"/>
+ <path fill="none" stroke="#000000" d="M312.5,341.8C312.5,341.7,312.5,341.7,312.5,341.8"/>
+ <path fill="none" stroke="#000000" d="M312.2,350.1c0.6,0.6-0.2-0.2,0.4,0.4c0.7,0.4-0.2-0.1,0.5,0.3c0.7,0.3-0.2-0.1,0.5,0.2
+ c0.7,0.2-0.3,0,0.5,0.1c0.4,0-0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M314.4,338.7c-0.4,0,0.1,0-0.2,0c-0.7,0.1,0.2-0.1-0.5,0.1c-0.7,0.3,0.2-0.1-0.5,0.2
+ c-0.7,0.4,0.2-0.2-0.5,0.3c-0.7,0.5,0.2-0.2-0.4,0.4"/>
+ <path fill="none" stroke="#000000" d="M312.5,341.7C312.4,341.5,312.5,341.7,312.5,341.7c-0.6-0.8,0.1,0.1-0.4-0.5
+ c-0.6-0.5,0.2,0.2-0.4-0.3c-0.7-0.4,0.2,0.1-0.4-0.2c-0.7-0.2,0.2,0-0.5-0.1c-0.7,0,0.2,0-0.5,0c-0.7,0.2,0.2-0.1-0.5,0.1
+ c-0.7,0.3,0.2-0.1-0.4,0.2c-0.6,0.5,0.2-0.2-0.4,0.3c-0.6,0.7,0.2-0.2-0.4,0.5c-0.5,0.8,0.1-0.3-0.3,0.5c-0.4,0.9,0.1-0.3-0.3,0.6
+ c-0.3,1,0.1-0.3-0.2,0.7c-0.2,1.1,0-0.4-0.1,0.7c-0.1,1.1,0-0.4,0,0.7"/>
+ <path fill="none" stroke="#000000" d="M310.7,349.1c-0.3,0,0.1,0-0.2,0c-0.7-0.2,0.2,0.1-0.4-0.1c-0.7-0.3,0.2,0.1-0.4-0.2
+ c-0.6-0.5,0.2,0.2-0.4-0.3c-0.5-0.6,0.2,0.2-0.4-0.4c-0.5-0.8,0.1,0.3-0.3-0.5c-0.4-0.9,0.1,0.3-0.2-0.6c-0.3-1,0.1,0.3-0.2-0.6
+ c-0.2-1,0,0.3-0.1-0.7c-0.1-1.1,0,0.3,0-0.7"/>
+ <path fill="none" stroke="#000000" d="M312.5,348C312.4,348.2,312.5,348,312.5,348c-0.6,0.8,0.1-0.1-0.4,0.5
+ c-0.6,0.5,0.2-0.2-0.4,0.3c-0.7,0.4,0.2-0.1-0.4,0.2c-0.7,0.2,0.2,0-0.5,0.1c-0.7,0,0.2,0-0.5,0c-0.7-0.2,0.2,0.1-0.5-0.1
+ c-0.7-0.3,0.2,0.1-0.4-0.2c-0.6-0.5,0.2,0.2-0.4-0.3c-0.6-0.7,0.2,0.2-0.4-0.5c-0.5-0.8,0.1,0.3-0.3-0.5c-0.4-0.9,0.1,0.3-0.3-0.6
+ c-0.3-1,0.1,0.3-0.2-0.7c-0.2-1.1,0,0.4-0.1-0.7c-0.1-1.1,0,0.4,0-0.7"/>
+ <path fill="none" stroke="#000000" d="M314.4,344.9c0-1,0,0.3,0-0.7c-0.1-1,0,0.3-0.1-0.7c-0.2-1,0.1,0.3-0.1-0.7
+ c-0.2-1,0.1,0.3-0.2-0.6c-0.3-0.9,0.1,0.3-0.2-0.6c-0.4-0.8,0.1,0.3-0.3-0.6c-0.4-0.8,0.2,0.3-0.3-0.5c-0.5-0.7,0.2,0.2-0.3-0.5
+ c-0.5-0.6,0.2,0.2-0.4-0.4"/>
+ <path fill="none" stroke="#000000" d="M316.5,339.7c-0.6-0.6,0.2,0.2-0.4-0.4c-0.7-0.4,0.2,0.1-0.5-0.3c-0.7-0.3,0.2,0.1-0.5-0.2
+ c-0.7-0.2,0.3,0-0.5-0.1c-0.4,0,0.1,0-0.2,0"/>
+ <path fill="none" stroke="#000000" d="M314.4,344.9c0,1,0-0.3,0,0.7c-0.1,1,0-0.3-0.1,0.7c-0.2,1,0.1-0.3-0.1,0.7
+ c-0.2,1,0.1-0.3-0.2,0.6s0.1-0.3-0.2,0.6c-0.4,0.8,0.1-0.3-0.3,0.6c-0.4,0.8,0.2-0.3-0.3,0.5c-0.5,0.7,0.2-0.2-0.3,0.5
+ c-0.5,0.6,0.2-0.2-0.4,0.4"/>
+ <path fill="none" stroke="#000000" d="M314.4,351c0.4,0-0.1,0,0.2,0c0.7-0.1-0.2,0.1,0.5-0.1c0.7-0.3-0.2,0.1,0.5-0.2
+ c0.7-0.4-0.2,0.2,0.5-0.3s-0.2,0.2,0.4-0.4"/>
+ <path fill="none" stroke="#000000" d="M310.7,340.6c-0.3,0,0.1,0-0.2,0c-0.7,0.2,0.2-0.1-0.4,0.1c-0.7,0.3,0.2-0.1-0.4,0.2
+ c-0.6,0.5,0.2-0.2-0.4,0.3c-0.5,0.6,0.2-0.2-0.4,0.4c-0.5,0.8,0.1-0.3-0.3,0.5c-0.4,0.9,0.1-0.3-0.2,0.6c-0.3,1,0.1-0.3-0.2,0.6
+ c-0.2,1,0-0.3-0.1,0.7c-0.1,1,0-0.3,0,0.7"/>
+ <path fill="none" stroke="#000000" d="M306.5,216c0,1,0-0.3,0,0.7c0.1,1,0-0.3,0.1,0.7c0.2,1-0.1-0.3,0.1,0.7
+ c0.2,1-0.1-0.3,0.2,0.6c0.3,0.9-0.1-0.3,0.2,0.6c0.4,0.8-0.1-0.3,0.3,0.6c0.4,0.8-0.2-0.3,0.3,0.5c0.5,0.7-0.2-0.2,0.3,0.5
+ c0.5,0.6-0.2-0.2,0.4,0.4"/>
+ <path fill="none" stroke="#000000" d="M311.9,218.4C312,218.4,312,218.3,311.9,218.4"/>
+ <path fill="none" stroke="#000000" d="M312,218.3c0.1-0.2,0,0.1,0.1-0.2c0.3-0.7-0.1,0.2,0.2-0.5c0.3-0.8-0.1,0.3,0.2-0.5
+ c0.2-0.9,0,0.3,0.1-0.6c0.1-0.9,0,0.3,0-0.6"/>
+ <path fill="none" stroke="#000000" d="M311.9,213.5C312,213.6,312,213.6,311.9,213.5"/>
+ <path fill="none" stroke="#000000" d="M312,213.6c0.1,0.2,0-0.1,0.1,0.2c0.3,0.7-0.1-0.2,0.2,0.5c0.3,0.8-0.1-0.3,0.2,0.5
+ c0.2,0.9,0-0.3,0.1,0.6c0.1,0.9,0-0.3,0,0.6"/>
+ <path fill="none" stroke="#000000" d="M310.6,212.8c0.3,0-0.1,0,0.2,0c0.6,0.1-0.2-0.1,0.4,0.1c0.5,0.3-0.2-0.1,0.4,0.2
+ c0.5,0.5-0.1-0.2,0.3,0.3c0.1,0.2,0-0.1,0.1,0.1"/>
+ <path fill="none" stroke="#000000" d="M306.5,216c0-1,0,0.3,0-0.7c0.1-1,0,0.3,0.1-0.7c0.2-1-0.1,0.3,0.1-0.7
+ c0.2-1-0.1,0.3,0.2-0.6c0.3-0.9-0.1,0.3,0.2-0.6c0.4-0.8-0.1,0.3,0.3-0.6c0.4-0.8-0.2,0.3,0.3-0.5c0.5-0.7-0.2,0.2,0.3-0.5
+ c0.5-0.6-0.2,0.2,0.4-0.4"/>
+ <path fill="none" stroke="#000000" d="M314.3,209.8c-0.4,0,0.1,0-0.2,0c-0.7,0.1,0.2-0.1-0.5,0.1c-0.7,0.3,0.2-0.1-0.5,0.2
+ c-0.7,0.4,0.2-0.2-0.5,0.3s0.2-0.2-0.4,0.4"/>
+ <path fill="none" stroke="#000000" d="M312.2,221.2c0.6,0.6-0.2-0.2,0.4,0.4c0.7,0.4-0.2-0.1,0.5,0.3c0.7,0.3-0.3-0.1,0.5,0.2
+ c0.7,0.2-0.3,0,0.5,0.1c0.4,0-0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M310.6,219.2c0.3,0-0.1,0,0.2,0c0.6-0.1-0.2,0.1,0.4-0.1c0.5-0.3-0.2,0.1,0.4-0.2
+ c0.5-0.5-0.1,0.2,0.3-0.3c0.1-0.2,0,0.1,0.1-0.1"/>
+ <path fill="none" stroke="#000000" d="M308.3,216c0-0.9,0,0.3,0-0.6c0.1-0.9-0.1,0.3,0.1-0.6c0.2-0.8-0.1,0.3,0.2-0.5
+ c0.3-0.7-0.1,0.2,0.2-0.5c0.4-0.6-0.1,0.2,0.3-0.4c0.4-0.5-0.2,0.2,0.3-0.3c0.5-0.4-0.2,0.1,0.3-0.3c0.5-0.2-0.2,0.1,0.4-0.2
+ c0.6-0.1-0.2,0,0.4-0.1c0.6,0.1-0.2,0,0.4,0.1c0.6,0.2-0.2-0.1,0.4,0.2c0.5,0.4-0.2-0.1,0.3,0.3c0.5,0.5-0.1-0.2,0.3,0.3
+ c0.2,0.3-0.1-0.1,0.1,0.2"/>
+ <path fill="none" stroke="#000000" d="M308.6,216c0-0.9,0,0.3,0-0.6c0.1-0.9-0.1,0.3,0.1-0.6c0.2-0.8-0.1,0.3,0.2-0.5
+ c0.3-0.7-0.1,0.2,0.2-0.5c0.4-0.6-0.2,0.2,0.3-0.4c0.5-0.5-0.2,0.1,0.3-0.3c0.5-0.3-0.2,0.1,0.4-0.2c0.5-0.2-0.2,0,0.4-0.1
+ c0.3,0-0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M308.3,216c0,0.9,0-0.3,0,0.6c0.1,0.9-0.1-0.3,0.1,0.6c0.2,0.8-0.1-0.3,0.2,0.5
+ c0.3,0.7-0.1-0.2,0.2,0.5c0.4,0.6-0.1-0.2,0.3,0.4c0.4,0.5-0.2-0.2,0.3,0.3c0.5,0.4-0.2-0.1,0.3,0.3c0.5,0.2-0.2-0.1,0.4,0.2
+ c0.6,0.1-0.2,0,0.4,0.1c0.6-0.1-0.2,0,0.4-0.1c0.6-0.2-0.2,0.1,0.4-0.2c0.5-0.4-0.2,0.1,0.3-0.3c0.5-0.5-0.1,0.2,0.3-0.3
+ c0.2-0.3-0.1,0.1,0.1-0.2"/>
+ <path fill="none" stroke="#000000" d="M308.6,216c0,0.9,0-0.3,0,0.6c0.1,0.9-0.1-0.3,0.1,0.6c0.2,0.8-0.1-0.3,0.2,0.5
+ c0.3,0.7-0.1-0.2,0.2,0.5c0.4,0.6-0.2-0.2,0.3,0.4c0.5,0.5-0.2-0.1,0.3,0.3c0.5,0.3-0.2-0.1,0.4,0.2c0.5,0.2-0.2,0,0.4,0.1
+ c0.3,0-0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M316.4,210.8c-0.6-0.6,0.2,0.2-0.4-0.4c-0.7-0.4,0.2,0.1-0.5-0.3c-0.7-0.3,0.3,0.1-0.5-0.2
+ c-0.7-0.2,0.3,0-0.5-0.1c-0.4,0,0.1,0-0.2,0"/>
+ <path fill="none" stroke="#000000" d="M312.5,210.8c0.6,0.6-0.2-0.2,0.4,0.4c0.5,0.7-0.2-0.2,0.3,0.5c0.5,0.8-0.1-0.3,0.3,0.5
+ c0.4,0.8-0.1-0.3,0.3,0.6c0.3,0.9-0.1-0.3,0.2,0.6c0.3,1-0.1-0.3,0.2,0.6c0.2,1-0.1-0.3,0.1,0.7c0.1,1,0-0.3,0.1,0.7
+ c0,1,0-0.3,0,0.7"/>
+ <path fill="none" stroke="#000000" d="M312.5,221.2c0.6-0.6-0.2,0.2,0.4-0.4c0.5-0.7-0.2,0.2,0.3-0.5c0.5-0.8-0.1,0.3,0.3-0.5
+ c0.4-0.8-0.1,0.3,0.3-0.6c0.3-0.9-0.1,0.3,0.2-0.6c0.3-1-0.1,0.3,0.2-0.6c0.2-1-0.1,0.3,0.1-0.7c0.1-1,0,0.3,0.1-0.7
+ c0-1,0,0.3,0-0.7"/>
+ <path fill="none" stroke="#000000" d="M314.3,222.1c0.4,0-0.1,0,0.2,0c0.7-0.1-0.2,0.1,0.5-0.1c0.7-0.3-0.2,0.1,0.5-0.2
+ c0.7-0.4-0.2,0.2,0.5-0.3s-0.2,0.2,0.4-0.4"/>
+ <path fill="none" stroke="#000000" d="M479.9,339.5c0.5,0.1-0.1-0.1,0.3,0.1c0.5,0.3-0.1-0.1,0.3,0.2c0.4,0.6-0.1-0.2,0.3,0.4
+ c0.4,0.8-0.1-0.3,0.2,0.5c0.3,1-0.1-0.3,0.2,0.7c0.3,1.1-0.1-0.4,0.2,0.8c0.2,1.3-0.1-0.4,0.1,0.8c0.1,1.3,0-0.4,0.1,0.9
+ c0.1,1.4,0-0.5,0,0.9"/>
+ <path fill="none" stroke="#000000" d="M479.9,350.1c0.5-0.1-0.1,0.1,0.3-0.1c0.5-0.3-0.1,0.1,0.3-0.2c0.4-0.6-0.1,0.2,0.3-0.4
+ c0.4-0.8-0.1,0.3,0.2-0.5c0.3-1-0.1,0.3,0.2-0.7c0.3-1.1-0.1,0.4,0.2-0.8c0.2-1.3-0.1,0.4,0.1-0.8c0.1-1.3,0,0.4,0.1-0.9
+ c0.1-1.4,0,0.5,0-0.9"/>
+ <path fill="none" stroke="#000000" d="M484,349c0.2,0-0.1,0,0.1,0c0.4-0.2-0.1,0.1,0.2-0.1c0.4-0.4-0.1,0.2,0.2-0.3
+ c0.1-0.1,0,0,0-0.1"/>
+ <path fill="none" stroke="#000000" d="M483.5,340.6c0.3-0.3-0.1,0.1,0.2-0.2c0.4-0.1-0.1,0,0.3-0.1c0.4,0.1-0.1-0.1,0.3,0.1
+ c0.3,0.2-0.1-0.1,0.2,0.2"/>
+ <path fill="none" stroke="#000000" d="M483.5,349c0.3,0.3-0.1-0.1,0.2,0.2c0.4,0.1-0.1,0,0.3,0.1c0.4-0.1-0.1,0.1,0.3-0.1
+ c0.3-0.2-0.1,0.1,0.2-0.2"/>
+ <path fill="none" stroke="#000000" d="M484,340.6c0.2,0-0.1,0,0.1,0c0.4,0.2-0.1-0.1,0.2,0.1c0.4,0.4-0.1-0.2,0.2,0.3
+ c0.1,0.1,0,0,0,0.1"/>
+ <path fill="none" stroke="#000000" d="M379.9,378.1c0.1,0.6,0-0.2,0.1,0.4c0.1,0.6,0-0.2,0.1,0.4c0.1,0.5,0-0.2,0.1,0.3
+ c0.1,0.4,0-0.1,0.1,0.2c0.1,0.2-0.1-0.1,0.1,0.2c0.2,0.1-0.1,0,0.1,0.1"/>
+ <path fill="none" stroke="#000000" d="M318.6,344.9c-0.1-1.5,0,0.5-0.1-1c-0.2-1.4,0.1,0.5-0.1-1c-0.3-1.4,0.1,0.5-0.2-0.9
+ c-0.5-1.3,0.2,0.4-0.3-0.8c-0.4-0.8,0.1,0.2-0.3-0.5"/>
+ <path fill="none" stroke="#000000" d="M317.5,340.6c-0.2-0.4,0.1,0.1-0.2-0.2c-0.7-1,0.3,0.3-0.5-0.6c-0.8-0.8,0.3,0.2-0.5-0.5
+ c-0.9-0.6,0.3,0.2-0.6-0.4c-0.9-0.4,0.3,0.1-0.6-0.2c-0.9-0.1,0.3,0-0.6-0.1"/>
+ <path fill="none" stroke="#000000" d="M311.9,335.4c-1.1,1.6,0.3-0.6-0.7,1.1c-0.9,1.6,0.3-0.5-0.6,1.1c-0.8,1.5,0.3-0.5-0.5,1
+ c-0.7,1.5,0.2-0.5-0.5,1l0,0"/>
+ <path fill="none" stroke="#000000" d="M314.5,351.2c1-0.1-0.3,0.1,0.6-0.1c0.9-0.3-0.3,0.1,0.6-0.2c0.9-0.5-0.3,0.2,0.6-0.4
+ c0.8-0.8-0.3,0.3,0.5-0.5c0.7-1-0.2,0.3,0.5-0.6c0.2-0.4-0.1,0.1,0.2-0.2"/>
+ <path fill="none" stroke="#000000" d="M317.5,349.1c0.4-0.8-0.1,0.3,0.3-0.5c0.5-1.3-0.1,0.4,0.3-0.8c0.4-1.4-0.1,0.5,0.2-0.9
+ c0.2-1.4-0.1,0.5,0.1-1c0.1-1.5,0,0.5,0.1-1"/>
+ <path fill="none" stroke="#000000" d="M328.2,344.9c-0.1-1.6,0.1,0.5-0.1-1.1c-0.2-1.6,0.1,0.5-0.2-1.1c-0.3-1.6,0.1,0.5-0.2-1
+ c-0.4-1.6,0.2,0.5-0.3-1c-0.6-1.6,0.2,0.5-0.4-1c-0.7-1.6,0.2,0.5-0.5-1c-0.8-1.6,0.3,0.5-0.5-1c-0.9-1.6,0.3,0.5-0.6-1.1
+ c-1.1-1.6,0.4,0.5-0.7-1.1"/>
+ <path fill="none" stroke="#000000" d="M324.7,354.3c1.1-1.6-0.3,0.6,0.7-1.1c0.9-1.6-0.3,0.5,0.6-1.1c0.8-1.5-0.3,0.5,0.5-1
+ c0.7-1.5-0.2,0.5,0.5-1c0.6-1.5-0.2,0.5,0.4-1c0.5-1.5-0.1,0.5,0.3-1c0.4-1.6-0.1,0.5,0.2-1c0.3-1.6-0.1,0.5,0.2-1.1
+ c0.2-1.6,0,0.5,0.1-1.1"/>
+ <path fill="none" stroke="#000000" d="M309.6,350.1C309.6,350.1,309.5,350.1,309.6,350.1c0.7,1.6-0.2-0.5,0.5,1.1
+ c0.8,1.6-0.3-0.5,0.5,1c0.9,1.6-0.3-0.5,0.6,1.1c1.1,1.6-0.4-0.5,0.7,1.1"/>
+ <path fill="none" stroke="#000000" d="M320.5,344.9c-0.1-1.9,0,0.6-0.1-1.3c-0.2-1.9,0.1,0.6-0.2-1.2c-0.4-1.8,0.2,0.6-0.3-1.2
+ c-0.5-1.7,0.2,0.6-0.4-1.1c-0.7-1.6,0.3,0.5-0.5-1c-0.8-1.4,0.3,0.5-0.6-0.9c-0.9-1.2,0.3,0.4-0.6-0.8c-1-1,0.4,0.3-0.7-0.7
+ c-1.1-0.8,0.4,0.2-0.7-0.5c-1.2-0.5,0.4,0.1-0.8-0.3c-1.2-0.3,0.4,0.1-0.8-0.2c-1.2,0,0.4,0-0.8,0c-1.2,0.2,0.4-0.1-0.8,0.2
+ c-1.2,0.5,0.4-0.2-0.8,0.3c-1.1,0.7,0.4-0.3-0.7,0.5c-1.1,1,0.3-0.3-0.7,0.7c-1,1.2,0.3-0.4-0.6,0.8c-0.9,1.4,0.3-0.5-0.6,0.9
+ c-0.5,1,0.1-0.3-0.3,0.6"/>
+ <path fill="none" stroke="#000000" d="M312.2,350.1c0.7,0.6-0.2-0.2,0.4,0.4c0.9,0.6-0.3-0.2,0.6,0.4c0.9,0.4-0.3-0.1,0.6,0.2
+ c0.9,0.1-0.3,0,0.6,0.1"/>
+ <path fill="none" stroke="#000000" d="M322.4,344.9c-1.1-1.6,0.3,0.6-0.7-1.1c-0.9-1.6,0.3,0.5-0.6-1.1c-0.8-1.5,0.3,0.5-0.5-1
+ c-0.7-1.5,0.2,0.5-0.5-1c-0.6-1.5,0.2,0.5-0.4-1c-0.5-1.5,0.1,0.5-0.3-1c-0.4-1.6,0.1,0.5-0.2-1c-0.3-1.6,0.1,0.5-0.2-1.1
+ c-0.2-1.6,0,0.5-0.1-1.1"/>
+ <path fill="none" stroke="#000000" d="M309.6,350.1c0.5,1-0.2-0.3,0.3,0.6c0.8,1.4-0.3-0.5,0.6,0.9c0.9,1.2-0.3-0.4,0.6,0.8
+ c1,1-0.4-0.3,0.7,0.7c1.1,0.8-0.4-0.2,0.7,0.5c1.2,0.5-0.4-0.1,0.8,0.3c1.2,0.3-0.4-0.1,0.8,0.2c1.2,0-0.4,0,0.8,0
+ c1.2-0.2-0.4,0.1,0.8-0.2c1.2-0.5-0.4,0.2,0.8-0.3c1.1-0.7-0.4,0.3,0.7-0.5c1.1-1-0.3,0.3,0.7-0.7c1-1.2-0.3,0.4,0.6-0.8
+ c0.9-1.4-0.3,0.5,0.6-0.9c0.7-1.5-0.2,0.5,0.5-1c0.6-1.7-0.2,0.6,0.4-1.1c0.4-1.8-0.1,0.6,0.3-1.2c0.3-1.9-0.1,0.6,0.2-1.2
+ c0.1-1.9,0,0.6,0.1-1.3"/>
+ <path fill="none" stroke="#000000" d="M314.5,338.5c-1,0.1,0.3-0.1-0.6,0.1c-0.9,0.3,0.3-0.1-0.6,0.2c-0.9,0.5,0.3-0.2-0.6,0.4
+ c-0.7,0.6,0.2-0.2-0.4,0.4"/>
+ <path fill="none" stroke="#000000" d="M318.9,354.3c0.1-1.6-0.1,0.5,0.1-1.1c0.2-1.6-0.1,0.5,0.2-1.1c0.3-1.6-0.1,0.5,0.2-1
+ c0.4-1.6-0.2,0.5,0.3-1c0.6-1.6-0.2,0.5,0.4-1c0.7-1.6-0.2,0.5,0.5-1c0.8-1.6-0.3,0.5,0.5-1c0.9-1.6-0.3,0.5,0.6-1.1
+ c1.1-1.6-0.4,0.5,0.7-1.1"/>
+ <path fill="none" stroke="#000000" d="M318.5,216c-0.1-1.5,0,0.5-0.1-1c-0.2-1.4,0.1,0.5-0.1-1c-0.3-1.4,0.1,0.5-0.2-0.9
+ c-0.5-1.3,0.2,0.4-0.3-0.8c-0.6-1.1,0.2,0.4-0.4-0.8c-0.7-1,0.3,0.3-0.5-0.6c-0.8-0.8,0.3,0.2-0.5-0.5c-0.9-0.6,0.3,0.2-0.6-0.4
+ c-0.9-0.4,0.3,0.1-0.6-0.2c-0.9-0.1,0.3,0-0.6-0.1"/>
+ <path fill="none" stroke="#000000" d="M311.8,206.5c-1.1,1.6,0.3-0.6-0.7,1.1c-0.9,1.6,0.3-0.5-0.6,1.1c-0.8,1.5,0.3-0.5-0.5,1
+ c-0.7,1.5,0.2-0.5-0.5,1l0,0"/>
+ <path fill="none" stroke="#000000" d="M314.5,222.3c1-0.1-0.3,0.1,0.6-0.1c0.9-0.3-0.3,0.1,0.6-0.2c0.9-0.5-0.3,0.2,0.6-0.4
+ c0.8-0.8-0.2,0.3,0.5-0.5c0.7-1-0.2,0.3,0.5-0.6c0.6-1.1-0.2,0.4,0.4-0.8c0.5-1.3-0.1,0.4,0.3-0.8c0.4-1.4-0.1,0.5,0.2-0.9
+ c0.2-1.4-0.1,0.5,0.1-1c0.1-1.5,0,0.5,0.1-1"/>
+ <path fill="none" stroke="#000000" d="M328.1,216c-0.1-1.6,0.1,0.5-0.1-1.1c-0.2-1.6,0.1,0.5-0.2-1.1s0.1,0.5-0.2-1
+ c-0.4-1.6,0.2,0.5-0.3-1c-0.6-1.6,0.2,0.5-0.4-1c-0.7-1.6,0.2,0.5-0.5-1c-0.8-1.6,0.3,0.5-0.5-1c-0.9-1.6,0.3,0.5-0.6-1.1
+ c-1.1-1.6,0.4,0.5-0.7-1.1"/>
+ <path fill="none" stroke="#000000" d="M324.6,225.4c1.1-1.6-0.3,0.6,0.7-1.1c0.9-1.6-0.3,0.5,0.6-1.1c0.8-1.5-0.3,0.5,0.5-1
+ c0.7-1.5-0.2,0.5,0.5-1c0.6-1.5-0.2,0.5,0.4-1c0.5-1.5-0.1,0.5,0.3-1c0.4-1.6-0.1,0.5,0.2-1c0.3-1.6-0.1,0.5,0.2-1.1
+ c0.2-1.6,0,0.5,0.1-1.1"/>
+ <path fill="none" stroke="#000000" d="M309.5,221.2L309.5,221.2c0.7,1.6-0.2-0.5,0.5,1.1c0.8,1.6-0.3-0.5,0.5,1
+ c0.9,1.6-0.3-0.5,0.6,1.1c1.1,1.6-0.4-0.5,0.7,1.1"/>
+ <path fill="none" stroke="#000000" d="M320.4,216c-0.1-1.9,0.1,0.6-0.1-1.3c-0.2-1.9,0.1,0.6-0.2-1.2c-0.4-1.8,0.2,0.6-0.3-1.2
+ c-0.5-1.7,0.2,0.6-0.4-1.1c-0.7-1.6,0.3,0.5-0.5-1c-0.8-1.4,0.3,0.5-0.6-0.9c-0.6-0.8,0.2,0.3-0.4-0.5"/>
+ <path fill="none" stroke="#000000" d="M318.1,208.7c-0.4-0.4,0.1,0.1-0.2-0.3c-1-1,0.4,0.3-0.7-0.7c-1.1-0.8,0.4,0.2-0.7-0.5
+ c-1.2-0.5,0.4,0.1-0.8-0.3c-1.2-0.3,0.4,0.1-0.8-0.2c-1.2,0,0.4,0-0.8,0c-1.2,0.2,0.4-0.1-0.8,0.2c-1.2,0.5,0.4-0.2-0.8,0.3
+ c-1.1,0.7,0.4-0.3-0.7,0.5c-1.1,1,0.3-0.3-0.7,0.7c-1,1.2,0.3-0.4-0.6,0.8c-0.9,1.4,0.3-0.5-0.6,0.9c-0.5,1,0.1-0.3-0.3,0.6"/>
+ <path fill="none" stroke="#000000" d="M312.2,221.2c0.7,0.6-0.2-0.2,0.4,0.4c0.9,0.6-0.3-0.2,0.6,0.4c0.9,0.4-0.3-0.1,0.6,0.2
+ c0.9,0.1-0.3,0,0.6,0.1"/>
+ <path fill="none" stroke="#000000" d="M322.3,216c-1.1-1.6,0.3,0.6-0.7-1.1c-0.9-1.6,0.3,0.5-0.6-1.1c-0.8-1.5,0.3,0.5-0.5-1
+ c-0.7-1.5,0.2,0.5-0.5-1c-0.6-1.5,0.2,0.5-0.4-1c-0.5-1.5,0.1,0.5-0.3-1c-0.4-1.6,0.1,0.5-0.2-1c-0.3-1.6,0.1,0.5-0.2-1.1
+ c-0.2-1.6,0,0.5-0.1-1.1"/>
+ <path fill="none" stroke="#000000" d="M309.5,221.2c0.5,1-0.2-0.3,0.3,0.6c0.8,1.4-0.3-0.5,0.6,0.9c0.9,1.2-0.3-0.4,0.6,0.8
+ c1,1-0.4-0.3,0.7,0.7c1.1,0.8-0.4-0.2,0.7,0.5c1.2,0.5-0.4-0.1,0.8,0.3c1.2,0.3-0.4-0.1,0.8,0.2c1.2,0-0.4,0,0.8,0
+ c1.2-0.2-0.4,0.1,0.8-0.2c1.2-0.5-0.4,0.2,0.8-0.3c1.1-0.7-0.3,0.3,0.7-0.5c1.1-1-0.3,0.3,0.7-0.7c0.4-0.4-0.1,0.1,0.2-0.3"/>
+ <path fill="none" stroke="#000000" d="M318.1,223.3c0.6-0.8-0.2,0.3,0.4-0.5c0.9-1.4-0.3,0.5,0.6-0.9c0.7-1.5-0.2,0.5,0.5-1
+ c0.6-1.7-0.2,0.6,0.4-1.1c0.4-1.8-0.1,0.6,0.3-1.2c0.3-1.9-0.1,0.6,0.2-1.2c0.1-1.9,0,0.6,0.1-1.3"/>
+ <path fill="none" stroke="#000000" d="M314.5,209.6c-1,0.1,0.3-0.1-0.6,0.1c-0.9,0.3,0.3-0.1-0.6,0.2c-0.9,0.5,0.3-0.2-0.6,0.4
+ c-0.7,0.6,0.2-0.2-0.4,0.4"/>
+ <path fill="none" stroke="#000000" d="M318.8,225.4c0.1-1.6-0.1,0.5,0.1-1.1c0.2-1.6-0.1,0.5,0.2-1.1c0.3-1.6-0.1,0.5,0.2-1
+ c0.4-1.6-0.2,0.5,0.3-1c0.6-1.6-0.2,0.5,0.4-1c0.7-1.6-0.2,0.5,0.5-1c0.8-1.6-0.3,0.5,0.5-1c0.9-1.6-0.3,0.5,0.6-1.1
+ c1.1-1.6-0.4,0.5,0.7-1.1"/>
+ <path fill="none" stroke="#000000" d="M328.6,207.6c1.1,0.1-0.3-0.1,0.7,0.1c1,0.3-0.3-0.1,0.7,0.2c1,0.5-0.3-0.2,0.7,0.4
+ c1,0.7-0.3-0.3,0.6,0.5c0.9,0.9-0.3-0.3,0.6,0.6c0.8,1.1-0.2-0.4,0.5,0.7c0.7,1.2-0.2-0.4,0.5,0.8c0.6,1.4-0.2-0.5,0.4,0.9
+ c0.5,1.5-0.1-0.5,0.3,1c0.2,0.7-0.1-0.2,0.1,0.5"/>
+ <path fill="none" stroke="#000000" d="M333.7,213.2c0.2,0.8,0-0.3,0.1,0.5c0.2,1.6,0-0.5,0.1,1.1c0.1,1.6,0-0.5,0,1.1
+ c0,1.6,0-0.5,0,1.1c-0.2,1.6,0.1-0.5-0.1,1.1c-0.2,0.8,0.1-0.3-0.1,0.5"/>
+ <path fill="none" stroke="#000000" d="M333.7,218.7c-0.2,0.7,0.1-0.2-0.1,0.5c-0.4,1.5,0.2-0.5-0.3,1c-0.6,1.4,0.2-0.4-0.4,0.9
+ c-0.7,1.2,0.3-0.4-0.5,0.8c-0.8,1.1,0.3-0.4-0.5,0.7c-0.9,0.9,0.3-0.3-0.6,0.6c-0.9,0.7,0.3-0.2-0.6,0.5c-1,0.6,0.3-0.2-0.7,0.4
+ c-1,0.3,0.4-0.1-0.7,0.2c-1,0.1,0.4,0-0.7,0.1"/>
+ <path fill="none" stroke="#000000" d="M326.5,209.7c0.8,0.8-0.2-0.3,0.5,0.6c0.7,1-0.2-0.4,0.5,0.7c0.6,1.2-0.2-0.4,0.4,0.8
+ c0.5,1.3-0.1-0.4,0.3,0.9c0.4,1.4-0.1-0.5,0.3,0.9c0.3,1.4-0.1-0.5,0.2,1c0.2,1.5,0-0.5,0.1,1c0,1.5,0-0.5,0,1
+ c-0.1,1.5,0.1-0.5-0.1,1c-0.2,1.5,0.1-0.5-0.2,1c-0.4,1.4,0.1-0.5-0.3,0.9c-0.5,1.3,0.2-0.4-0.3,0.9c-0.6,1.2,0.2-0.4-0.4,0.8
+ c-0.7,1,0.3-0.3-0.5,0.7c-0.7,0.8,0.3-0.3-0.5,0.6"/>
+ <path fill="none" stroke="#000000" d="M325.5,207.9c0.9,0.4-0.3-0.2,0.6,0.3c1,0.7-0.3-0.3,0.6,0.5c0.9,0.9-0.3-0.3,0.6,0.6
+ c0.8,1.1-0.2-0.4,0.5,0.7c0.7,1.2-0.2-0.4,0.5,0.8c0.6,1.4-0.2-0.5,0.4,0.9c0.5,1.5-0.1-0.5,0.3,1c0.4,1.6-0.1-0.5,0.2,1
+ c0.2,1.6,0-0.5,0.1,1.1s0-0.5,0,1.1c0,1.6,0-0.5,0,1.1c-0.2,1.6,0.1-0.5-0.1,1.1c-0.3,1.6,0.1-0.5-0.2,1c-0.4,1.5,0.2-0.5-0.3,1
+ c-0.6,1.4,0.2-0.4-0.4,0.9c-0.7,1.2,0.3-0.4-0.5,0.8c-0.8,1.1,0.3-0.4-0.5,0.7c-0.9,0.9,0.3-0.3-0.6,0.6c-0.9,0.7,0.3-0.2-0.6,0.5
+ c-0.8,0.5,0.3-0.1-0.6,0.3"/>
+ <path fill="none" stroke="#000000" d="M470,184c-0.1-0.7,0.1,0.2-0.1-0.5c-0.3-0.6,0.1,0.2-0.2-0.4c-0.4-0.5,0.2,0.1-0.3-0.3
+ c-0.4-0.3,0.2,0.1-0.3-0.2"/>
+ <path fill="none" stroke="#000000" d="M469.8,183.4c-0.5,0.2,0.2-0.1-0.3,0.1c-0.7,0.4,0.2-0.2-0.5,0.3c-0.7,0.6,0.2-0.2-0.5,0.4
+ c-0.7,0.7,0.2-0.3-0.4,0.5"/>
+ <path fill="none" stroke="#000000" d="M469.7,188.5c0.4-0.7-0.1,0.2,0.2-0.5c0.5-1.2-0.1,0.4,0.3-0.8"/>
+ <path fill="none" stroke="#000000" d="M469.1,182.7C469,182.6,469.2,182.7,469.1,182.7c-0.7-0.1,0.1,0-0.5-0.1
+ c-0.7,0.1,0.2-0.1-0.4,0.1c-0.7,0.3,0.2-0.1-0.5,0.2c-0.7,0.4,0.2-0.2-0.5,0.3c-0.7,0.6,0.2-0.2-0.5,0.4c-0.7,0.7,0.2-0.3-0.4,0.5"
+ />
+ <path fill="none" stroke="#000000" d="M327.5,339.8c-0.8-1.1,0.3,0.4-0.5-0.7c-0.6-0.7,0.2,0.2-0.4-0.4"/>
+ <path fill="none" stroke="#000000" d="M328,339.1c-0.8-1.2,0.3,0.4-0.6-0.8c-0.9-1,0.3,0.3-0.6-0.7c-1-0.8,0.4,0.2-0.7-0.5
+ c-0.9-0.5,0.3,0.1-0.6-0.3"/>
+ <path fill="none" stroke="#000000" d="M327.5,339.8c0.7,1.3-0.2-0.4,0.4,0.8c0.6,1.4-0.2-0.5,0.4,0.9c0.4,1.5-0.1-0.5,0.3,1
+ c0.3,1.6-0.1-0.5,0.2,1.1c0.1,1.6,0-0.5,0.1,1.1c0,1.6,0-0.5,0,1.1c-0.2,1.6,0.1-0.5-0.1,1.1c-0.3,1.5,0.1-0.5-0.2,1
+ c-0.5,1.4,0.2-0.5-0.3,1c-0.6,1.3,0.2-0.4-0.4,0.9c-0.7,1.2,0.3-0.4-0.5,0.8c-0.8,0.9,0.3-0.3-0.5,0.6"/>
+ <path fill="none" stroke="#000000" d="M328,339.1c0.8,1.4-0.2-0.5,0.5,0.9c0.6,1.5-0.2-0.5,0.4,1c0.5,1.6-0.1-0.6,0.3,1.1
+ c0.3,1.7-0.1-0.6,0.2,1.2c0.2,1.8,0-0.6,0.1,1.2c0,1.8,0-0.6,0,1.2c-0.2,1.8,0.1-0.6-0.1,1.2c-0.3,1.7,0.1-0.6-0.2,1.1
+ c-0.5,1.6,0.2-0.5-0.3,1.1c-0.6,1.5,0.2-0.5-0.4,1c-0.7,1.3,0.3-0.4-0.5,0.9c-0.9,1.2,0.3-0.4-0.6,0.8c-1,1,0.4-0.3-0.7,0.6
+ c-1,0.7,0.4-0.2-0.7,0.5c-0.6,0.3,0.2-0.1-0.4,0.2"/>
+ <path fill="none" stroke="#000000" d="M465.5,366.7C465.4,366.6,465.5,366.7,465.5,366.7c-1-0.5,0.3,0.1-0.7-0.4
+ c-1-0.3,0.4,0.1-0.7-0.2"/>
+ <path fill="none" stroke="#000000" d="M464.1,366.1c-0.2,0-0.5-0.1-0.7-0.1"/>
+ <path fill="none" stroke="#000000" d="M487.4,377c-1.5-0.1,0.5,0.1-1-0.1c-1.3-0.3,0.4,0.1-0.9-0.2c-1.1-0.5,0.3,0.2-0.7-0.3
+ c-0.9-0.6,0.3,0.2-0.6-0.4c-0.7-0.7,0.2,0.3-0.4-0.5c-0.5-0.8,0.1,0.3-0.3-0.5c-0.3-0.8,0.1,0.3-0.2-0.6c-0.1-0.8,0,0.3-0.1-0.5"/>
+ <path fill="none" stroke="#000000" d="M483.3,369.2c-0.1-1.1,0.1,0.4-0.1-0.7c-0.3-1.2,0.1,0.4-0.2-0.8c-0.4-1.1,0.2,0.4-0.3-0.7
+ c-0.6-1,0.2,0.3-0.4-0.7c-0.7-0.9,0.2,0.3-0.5-0.6c-0.8-0.8,0.3,0.3-0.5-0.5c-0.9-0.8,0.3,0.2-0.6-0.5c-1-0.7,0.4,0.2-0.7-0.4
+ c-1.1-0.5,0.4,0.2-0.7-0.3c-1.2-0.4,0.4,0.1-0.8-0.3c-1.3-0.3,0.4,0.1-0.9-0.2c-1.5-0.1,0.5,0-1-0.1"/>
+ <path fill="none" stroke="#000000" d="M476.6,366.1c1.1,0.1-0.4-0.1,0.7,0.1c1.1,0.3-0.3-0.1,0.7,0.2c0.9,0.5-0.3-0.2,0.6,0.3
+ c0.8,0.6-0.2-0.2,0.5,0.4c0.7,0.7-0.2-0.3,0.4,0.5c0.5,0.8-0.1-0.3,0.3,0.5c0.3,0.8-0.1-0.3,0.2,0.6c0.1,0.8,0-0.3,0.1,0.6"/>
+ <path fill="none" stroke="#000000" d="M480.1,373.9c0.1,1.2-0.1-0.4,0.1,0.8c0.3,1.2-0.1-0.4,0.2,0.8c0.4,1.1-0.2-0.4,0.3,0.7
+ c0.6,1-0.2-0.3,0.4,0.7c0.7,0.9-0.3-0.3,0.5,0.6c0.9,0.8-0.3-0.3,0.6,0.6c1,0.8-0.4-0.2,0.7,0.5c1.1,0.6-0.4-0.2,0.8,0.4
+ c1.2,0.5-0.4-0.1,0.8,0.3c1.3,0.4-0.4-0.1,0.9,0.2c1.5,0.3-0.5-0.1,1,0.2c1.7,0.1-0.6,0,1.1,0.1"/>
+ <path fill="none" stroke="#000000" d="M449.7,367c1.9-0.1-0.6,0.1,1.3-0.1c1.8-0.4-0.6,0.2,1.2-0.3c1.8-0.7-0.6,0.3,1.2-0.5
+ c1.7-1-0.5,0.4,1.1-0.7c1.5-1.3-0.5,0.5,1-0.9c1.4-1.5-0.4,0.5,0.9-1c1.2-1.7-0.3,0.6,0.8-1.2c0.9-1.9-0.3,0.7,0.6-1.3
+ c0.7-2-0.2,0.7,0.4-1.4c0.4-2.1-0.1,0.7,0.3-1.4c0.2-2.2,0,0.7,0.1-1.5c-0.1-2.2,0.1,0.7-0.1-1.5c-0.4-2.2,0.2,0.7-0.3-1.4
+ c-0.6-2.1,0.3,0.7-0.4-1.4c-0.9-1.9,0.3,0.6-0.6-1.3c-1.1-1.8,0.4,0.6-0.8-1.2c-1.3-1.6,0.5,0.5-0.9-1c-1.5-1.3,0.5,0.4-1-0.9
+ c-1.6-1.1,0.6,0.3-1.1-0.7c-1.7-0.8,0.6,0.2-1.2-0.5c-1.8-0.5,0.6,0.1-1.2-0.3c-1.9-0.2,0.6,0-1.3-0.1"/>
+ <path fill="none" stroke="#000000" d="M448.7,367c-1.9-0.1,0.6,0.1-1.2-0.1c-1.8-0.4,0.6,0.2-1.2-0.3c-1.8-0.7,0.6,0.3-1.2-0.5
+ c-1.7-1,0.5,0.4-1.1-0.7c-1.5-1.3,0.5,0.5-1-0.9c-1.4-1.5,0.4,0.5-0.9-1c-1.2-1.7,0.3,0.6-0.7-1.2c-0.9-1.9,0.3,0.7-0.6-1.3
+ c-0.7-2,0.2,0.7-0.4-1.4c-0.4-2.1,0.1,0.7-0.3-1.4c-0.2-2.2,0,0.7-0.1-1.5c0.1-2.2-0.1,0.7,0.1-1.5c0.4-2.2-0.2,0.7,0.3-1.4
+ c0.6-2.1-0.3,0.7,0.4-1.4c0.9-1.9-0.3,0.6,0.6-1.3c1.1-1.8-0.4,0.6,0.7-1.2c1.3-1.6-0.5,0.5,0.9-1c1.5-1.3-0.5,0.4,1-0.9
+ c1.6-1.1-0.6,0.3,1.1-0.7c1.7-0.8-0.6,0.2,1.2-0.5c1.8-0.5-0.6,0.1,1.2-0.3c1.9-0.2-0.6,0,1.2-0.1"/>
+ <path fill="none" stroke="#000000" d="M448.7,363.4c-1.4-0.1,0.4,0.1-0.9-0.1c-1.3-0.4,0.4,0.2-0.9-0.3c-1.2-0.6,0.4,0.3-0.8-0.4
+ c-1.1-0.9,0.3,0.3-0.7-0.6c-1-1.1,0.3,0.4-0.6-0.7c-0.8-1.3,0.2,0.4-0.5-0.9c-0.7-1.4,0.2,0.5-0.4-1c-0.5-1.5,0.1,0.5-0.3-1
+ c-0.3-1.6,0,0.5-0.2-1.1c0-1.6,0,0.5,0-1.1c0.2-1.6-0.1,0.5,0.1-1.1c0.4-1.6-0.2,0.5,0.3-1c0.6-1.5-0.2,0.5,0.4-1
+ c0.8-1.3-0.3,0.4,0.5-0.9c0.9-1.1-0.3,0.4,0.6-0.7c1.1-0.9-0.4,0.3,0.7-0.6c1.2-0.7-0.4,0.2,0.8-0.5c1.3-0.5-0.4,0.1,0.9-0.3
+ c1.3-0.2-0.5,0,0.9-0.1"/>
+ <path fill="none" stroke="#000000" d="M448.7,363.4c1.4-0.1-0.5,0.1,0.9-0.1c1.4-0.4-0.4,0.2,0.9-0.3c1.3-0.6-0.4,0.3,0.9-0.4
+ c1.2-0.9-0.4,0.3,0.8-0.6c1.1-1.1-0.3,0.4,0.7-0.7c0.9-1.3-0.3,0.5,0.6-0.9c0.7-1.4-0.2,0.5,0.4-1c0.5-1.5-0.1,0.5,0.3-1
+ c0.3-1.6,0,0.5,0.2-1.1c0-0.5,0,0.2,0-0.4"/>
+ <path fill="none" stroke="#000000" d="M454.4,356.9c0-0.1,0-0.2,0-0.4"/>
+ <path fill="none" stroke="#000000" d="M454.4,356.5c0-0.5,0,0.2,0-0.4c-0.2-1.6,0.1,0.5-0.2-1.1c-0.4-1.6,0.2,0.5-0.3-1
+ c-0.6-1.5,0.3,0.5-0.4-1c-0.8-1.3,0.3,0.4-0.6-0.9c-1-1.1,0.4,0.4-0.7-0.7c-1.2-0.9,0.4,0.3-0.8-0.6c-1.3-0.7,0.4,0.2-0.9-0.4
+ c-1.4-0.4,0.5,0.1-0.9-0.3c-1.4-0.2,0.5,0-0.9-0.1"/>
+ <path fill="none" stroke="#000000" d="M449.7,367c-0.3,0-0.6,0-0.9-0.1"/>
+ <path fill="none" stroke="#000000" d="M448.7,366.9c-0.5-0.1,0.2,0-0.3,0c-1.8-0.4,0.6,0.2-1.2-0.3c-1.8-0.7,0.6,0.3-1.2-0.5
+ c-1.7-1,0.5,0.4-1.1-0.7c-1.5-1.3,0.5,0.5-1-0.9c-1.4-1.5,0.4,0.5-0.9-1c-1.2-1.7,0.3,0.6-0.7-1.2c-0.9-1.9,0.3,0.7-0.6-1.3
+ c-0.7-2,0.2,0.7-0.4-1.4c-0.4-2.1,0.1,0.7-0.3-1.4c-0.2-2.2,0,0.7-0.1-1.5c0.1-2.2-0.1,0.7,0.1-1.5c0.4-2.2-0.2,0.7,0.3-1.4
+ c0.6-2.1-0.3,0.7,0.4-1.4c0.9-1.9-0.3,0.6,0.6-1.3c1.1-1.8-0.4,0.6,0.7-1.2c1.3-1.6-0.5,0.5,0.9-1c1.5-1.3-0.5,0.4,1-0.9
+ c1.6-1.1-0.6,0.3,1.1-0.7c1.7-0.8-0.6,0.2,1.2-0.5c1.8-0.5-0.6,0.1,1.2-0.3c0.5-0.1-0.2,0,0.3,0"/>
+ <path fill="none" stroke="#000000" d="M448.7,346.5c0.3,0,0.6-0.1,0.9-0.1"/>
+ <path fill="none" stroke="#000000" d="M449.7,364.7c-1.6-0.1,0.5,0.1-1.1-0.1c-1.6-0.4,0.5,0.2-1-0.3c-1.5-0.7,0.5,0.3-1-0.5
+ c-1.4-1,0.4,0.4-0.9-0.7c-1.3-1.2,0.4,0.4-0.8-0.8c-1.1-1.4,0.3,0.5-0.7-1c-0.9-1.6,0.2,0.5-0.6-1.1c-0.6-1.7,0.2,0.6-0.4-1.2
+ c-0.4-1.8,0.1,0.6-0.3-1.2c-0.2-1.9,0,0.6-0.1-1.2c0.1-1.9-0.1,0.6,0.1-1.2c0.3-1.8-0.2,0.6,0.3-1.2c0.6-1.7-0.2,0.6,0.4-1.2
+ c0.8-1.6-0.3,0.5,0.6-1.1c1-1.4-0.4,0.5,0.7-1c1.2-1.2-0.4,0.4,0.8-0.8c1.3-1-0.5,0.3,0.9-0.7c1.5-0.8-0.5,0.2,1-0.5
+ c1.5-0.5-0.5,0.1,1-0.3c1.6-0.2-0.5,0,1.1-0.1"/>
+ <path fill="none" stroke="#000000" d="M449.7,364.7c1.6-0.1-0.5,0.1,1.1-0.1c1.6-0.4-0.5,0.2,1-0.3c1.5-0.7-0.5,0.3,1-0.5
+ c1.4-1-0.4,0.4,0.9-0.7c1.3-1.2-0.4,0.4,0.8-0.8c1.1-1.4-0.3,0.5,0.7-1c0.9-1.6-0.2,0.5,0.6-1.1c0.6-1.7-0.2,0.6,0.4-1.2
+ c0.4-1.8-0.1,0.6,0.2-1.2c0.2-1.9,0,0.6,0.1-1.2c-0.1-1.9,0.1,0.6-0.1-1.2c-0.3-1.8,0.2,0.6-0.2-1.2c-0.6-1.7,0.2,0.6-0.4-1.2
+ c-0.8-1.6,0.3,0.5-0.6-1.1c-1-1.4,0.4,0.5-0.7-1c-1.2-1.2,0.4,0.4-0.8-0.8c-1.3-1,0.5,0.3-0.9-0.7c-1.5-0.8,0.5,0.2-1-0.5
+ c-1.5-0.5,0.5,0.1-1-0.3c-1.6-0.2,0.5,0-1.1-0.1"/>
+ <path fill="none" stroke="#000000" d="M361.2,379.7c1.1-0.1-0.4,0.1,0.7-0.1c0.9-0.2-0.3,0.1,0.6-0.2c0.8-0.3-0.3,0.1,0.5-0.2
+ c0.7-0.5-0.2,0.2,0.5-0.3c0.7-0.6-0.2,0.2,0.5-0.4c0.6-0.7-0.2,0.3,0.4-0.5c0.6-0.8-0.2,0.3,0.4-0.6c0.5-0.9-0.1,0.3,0.3-0.6
+ c0.4-1-0.1,0.3,0.2-0.7c0.3-1.1-0.1,0.4,0.2-0.7c0.2-1.2,0,0.4,0.1-0.8c0.1-1.2,0,0.4,0-0.8"/>
+ <path fill="none" stroke="#000000" d="M341.8,369.2c0-1.1,0,0.4,0-0.7c0.2-1.2-0.1,0.4,0.1-0.8c0.3-1.1-0.1,0.4,0.2-0.7
+ c0.3-1-0.1,0.3,0.2-0.7c0.4-0.9-0.2,0.3,0.3-0.6c0.5-0.8-0.2,0.3,0.3-0.5c0.6-0.7-0.2,0.2,0.4-0.5s-0.2,0.2,0.4-0.4
+ c0.7-0.5-0.2,0.2,0.4-0.3c0.7-0.4-0.3,0.1,0.5-0.3c0.8-0.3-0.3,0.1,0.5-0.2c0.9-0.1-0.3,0,0.6-0.1"/>
+ <path fill="none" stroke="#000000" d="M341.7,374.7c0.1-0.4,0,0.1,0-0.2c0.1-0.8,0,0.3,0-0.5"/>
+ <path fill="none" stroke="#000000" d="M365.7,369.2c0-0.8,0,0.3,0-0.6c0.1-0.9-0.1,0.3,0.1-0.6c0.3-0.8-0.1,0.3,0.2-0.5
+ c0.4-0.7-0.1,0.2,0.3-0.5c0.4-0.6-0.2,0.2,0.3-0.4"/>
+ <path fill="none" stroke="#000000" d="M366.3,363.9C366.1,364,366.3,363.9,366.3,363.9c-0.8,0.6,0.1-0.1-0.5,0.4
+ c-0.6,0.6,0.2-0.2-0.4,0.4c-0.6,0.7,0.2-0.3-0.4,0.5c-0.5,0.8,0.2-0.3-0.3,0.5c-0.4,0.9,0.1-0.3-0.3,0.6c-0.4,1,0.1-0.3-0.2,0.7
+ c-0.3,1.1,0.1-0.4-0.2,0.7c-0.2,1.2,0-0.4-0.1,0.8c-0.1,1.1,0-0.4,0,0.7"/>
+ <path fill="none" stroke="#000000" d="M363.7,373.9c0,0.8,0-0.3,0,0.5c-0.2,0.8,0.1-0.3-0.1,0.6c-0.3,0.8,0.1-0.3-0.2,0.5
+ c-0.4,0.7,0.2-0.2-0.3,0.5c-0.5,0.6,0.2-0.2-0.4,0.4c-0.6,0.5,0.2-0.2-0.4,0.3c-0.8,0.4,0.3-0.1-0.5,0.2c-0.9,0.2,0.3,0-0.6,0.1"/>
+ <path fill="none" stroke="#000000" d="M426.6,327.2c0-0.5,0,0.2,0-0.3c0-0.4,0,0.1,0-0.3s0,0.1,0-0.3c0-0.3,0,0.1,0-0.2
+ c0-0.2,0,0.1,0-0.1c0-0.1,0,0,0-0.1"/>
+ <path fill="none" stroke="#000000" d="M426.7,333.8C426.7,333.7,426.7,333.8,426.7,333.8c0-0.3,0,0,0-0.2c0-0.3,0,0.1,0-0.2
+ c0-0.4,0,0.1,0-0.3c0-0.4,0,0.1,0-0.3c0-0.5,0,0.2,0-0.3"/>
+ <path fill="none" stroke="#000000" d="M366.3,333.8C366.3,333.7,366.3,333.8,366.3,333.8c0-0.3,0,0,0-0.2c0-0.3,0,0.1,0-0.2
+ c0-0.4,0,0.1,0-0.3c0-0.4,0,0.1,0-0.3c0-0.5,0,0.2,0-0.3"/>
+ <path fill="none" stroke="#000000" d="M366.4,327.2c0-0.5,0,0.2,0-0.3c0-0.4,0,0.1,0-0.3s0,0.1,0-0.3c0-0.3,0,0.1,0-0.2
+ c0-0.2,0,0.1,0-0.1c0-0.1,0,0,0-0.1"/>
+ <path fill="none" stroke="#000000" d="M390,373.2c2.2-0.1-0.7,0,1.5,0c2.4-0.1-0.8,0,1.6,0c2.5,0-0.8,0,1.7,0c2.6,0-0.9,0,1.7,0
+ c2.6,0-0.9,0,1.7,0c2.5,0-0.8,0,1.7,0c2.4,0-0.8,0,1.6,0c2.2,0.1-0.7,0,1.5,0"/>
+ <path fill="none" stroke="#000000" d="M366.3,325.5c0,0.2,0-0.1,0,0.1s0-0.1,0,0.1c0,0.1,0,0,0,0.1c0,0.1,0,0,0,0.1l0,0"/>
+ <path fill="none" stroke="#000000" d="M366.3,333.8C366.3,333.9,366.3,333.8,366.3,333.8C366.3,333.9,366.3,333.8,366.3,333.8
+ c0,0.2,0,0.1,0,0.2c0,0.2,0-0.1,0,0.1s0-0.1,0,0.1"/>
+ <path fill="none" stroke="#000000" d="M426.7,325.9C426.7,325.8,426.7,325.9,426.7,325.9C426.7,325.8,426.7,325.9,426.7,325.9
+ c0-0.2,0-0.1,0-0.2c0-0.2,0,0.1,0-0.1s0,0.1,0-0.1"/>
+ <path fill="none" stroke="#000000" d="M426.7,334.2c0-0.2,0,0.1,0-0.1s0,0.1,0-0.1c0-0.1,0,0,0-0.1c0-0.1,0,0,0-0.1l0,0"/>
+ <path fill="none" stroke="#000000" d="M426.7,361.1c-0.1-2,0,0.7,0-1.3c-0.1-2.1,0,0.7,0-1.4c0-2.3,0,0.8,0-1.5s0,0.8,0-1.6
+ c0-2.3,0,0.8,0-1.6c0-2.3,0,0.8,0-1.5c0.1-2.1,0,0.7,0-1.4c0.1-2,0,0.7,0-1.3"/>
+ <path fill="none" stroke="#000000" d="M409,323.7c0-0.5,0,0.2,0-0.3c-0.1-0.5,0,0.2,0-0.3c-0.1-0.4,0,0.1,0-0.3"/>
+ <path fill="none" stroke="#000000" d="M384.1,323.7c0-0.5,0,0.2,0-0.3c0.1-0.5,0,0.2,0-0.3c0.1-0.4,0,0.1,0-0.3"/>
+ <path fill="none" stroke="#000000" d="M384.1,358c0,0.5,0-0.2,0,0.3c0.1,0.5,0-0.2,0,0.3c0.1,0.4,0-0.1,0,0.3"/>
+ <path fill="none" stroke="#000000" d="M409,358c0,0.5,0-0.2,0,0.3c-0.1,0.5,0-0.2,0,0.3c-0.1,0.4,0-0.1,0,0.3"/>
+ <path fill="none" stroke="#000000" d="M409,323.7c0.4,0.1-0.1,0,0.3,0c0.4,0.1-0.1,0,0.3,0.1c0.4,0.1-0.1,0,0.3,0.1"/>
+ <path fill="none" stroke="#000000" d="M409,358c0.4-0.1-0.1,0,0.3,0c0.4-0.1-0.1,0,0.3-0.1c0.4-0.1-0.1,0,0.3-0.1"/>
+ <path fill="none" stroke="#000000" d="M407.9,324.6c0.5-0.5-0.2,0.2,0.4-0.3c0.5-0.5-0.2,0.2,0.4-0.3c0.5-0.5-0.2,0.2,0.4-0.3"/>
+ <path fill="none" stroke="#000000" d="M384.1,323.7c0.5,0.5-0.2-0.2,0.4,0.3c0.5,0.5-0.2-0.2,0.4,0.3c0.5,0.5-0.2-0.2,0.4,0.3"/>
+ <path fill="none" stroke="#000000" d="M384.1,358c-0.4-0.1,0.1,0-0.3,0c-0.4-0.1,0.1,0-0.3-0.1c-0.4-0.1,0.1,0-0.3-0.1"/>
+ <path fill="none" stroke="#000000" d="M383.2,323.8c0.4-0.1-0.1,0,0.3-0.1c0.4-0.1-0.1,0,0.3-0.1c0.4-0.1-0.1,0,0.3,0"/>
+ <path fill="none" stroke="#000000" d="M407.9,357c0.5,0.5-0.2-0.2,0.4,0.3c0.5,0.5-0.2-0.2,0.4,0.3c0.5,0.5-0.2-0.2,0.4,0.3"/>
+ <path fill="none" stroke="#000000" d="M385.1,357c-0.5,0.5,0.2-0.2-0.4,0.3c-0.5,0.5,0.2-0.2-0.4,0.3c-0.5,0.5,0.2-0.2-0.4,0.3"/>
+ <path fill="none" stroke="#000000" d="M420.1,316.9c0.2-0.7,0,0.2,0.1-0.5c0-0.7,0,0.2,0-0.4c-0.1-0.6,0.1,0.2-0.1-0.4
+ c-0.3-0.5,0.1,0.2-0.2-0.3c-0.5-0.4,0.2,0.1-0.3-0.3c-0.6-0.3,0.2,0.1-0.4-0.2c-0.8-0.1,0.3,0-0.5-0.1c-0.9,0,0.3,0-0.6,0
+ c-1,0.1,0.3-0.1-0.7,0.1"/>
+ <path fill="none" stroke="#000000" d="M417.3,368.7c1.5-0.1-0.5,0.1,1-0.1c1.3-0.2-0.4,0.1,0.9-0.2c1.2-0.4-0.4,0.2,0.8-0.3
+ c1-0.6-0.3,0.2,0.6-0.4c0.8-0.7-0.2,0.3,0.5-0.5c0.6-0.8-0.2,0.3,0.4-0.5c0.4-0.9-0.1,0.3,0.3-0.6c0.3-1-0.1,0.3,0.2-0.7
+ c0.1-1.1,0,0.4,0.1-0.7"/>
+ <path fill="none" stroke="#000000" d="M417.3,366.8c1,0.2-0.4,0,0.7,0.1c0.9,0-0.3,0,0.6,0c0.8-0.1-0.3,0.1,0.5-0.1
+ c0.6-0.3-0.2,0.1,0.4-0.2c0.5-0.4-0.1,0.1,0.3-0.3c0.3-0.5-0.1,0.2,0.2-0.3c0.2-0.6,0,0.2,0.1-0.4c0-0.6,0,0.2,0-0.4
+ c-0.1-0.7,0.1,0.2-0.1-0.5"/>
+ <path fill="none" stroke="#000000" d="M371,364.8c0.1,1.1-0.1-0.4,0.1,0.7c0.2,1-0.1-0.3,0.2,0.7c0.4,0.9-0.2-0.3,0.3,0.6
+ c0.6,0.8-0.2-0.3,0.4,0.5c0.8,0.7-0.3-0.2,0.5,0.5c1,0.6-0.3-0.2,0.7,0.4c1.1,0.4-0.4-0.1,0.8,0.3c1.3,0.3-0.4-0.1,0.9,0.2
+ c1.4,0.1-0.5,0,0.9,0.1"/>
+ <path fill="none" stroke="#000000" d="M372.9,364.8c-0.2,0.7,0-0.2-0.1,0.5c0,0.7,0-0.2,0,0.4c0.1,0.6-0.1-0.2,0.1,0.4
+ c0.3,0.5-0.1-0.2,0.2,0.3c0.5,0.4-0.2-0.1,0.3,0.3c0.6,0.3-0.2-0.1,0.4,0.2c0.8,0.1-0.3,0,0.5,0.1c0.9,0-0.3,0,0.6,0
+ c1-0.1-0.3,0.1,0.7-0.1"/>
+ <path fill="none" stroke="#000000" d="M375.7,313c-1.5,0.1,0.5-0.1-1,0.1c-1.3,0.2,0.4-0.1-0.9,0.2c-1.2,0.4,0.4-0.2-0.8,0.3
+ c-1,0.6,0.3-0.2-0.7,0.4c-0.8,0.7,0.2-0.3-0.5,0.5c-0.6,0.8,0.2-0.3-0.4,0.5c-0.4,0.9,0.1-0.3-0.3,0.6c-0.3,1,0.1-0.3-0.2,0.7
+ c-0.1,1.1,0-0.4-0.1,0.7"/>
+ <path fill="none" stroke="#000000" d="M375.7,314.9c-1-0.2,0.4,0-0.7-0.1c-0.9,0,0.3,0-0.6,0c-0.8,0.1,0.3-0.1-0.5,0.1
+ c-0.6,0.3,0.2-0.1-0.4,0.2c-0.5,0.4,0.1-0.1-0.3,0.3c-0.3,0.5,0.1-0.2-0.2,0.3c-0.2,0.6,0-0.2-0.1,0.4c0,0.7,0-0.2,0,0.4
+ c0.1,0.7-0.1-0.2,0.1,0.5"/>
+ <path fill="none" stroke="#000000" d="M422,316.9c-0.1-1.1,0.1,0.4-0.1-0.7c-0.2-1,0.1,0.3-0.2-0.7c-0.4-0.9,0.2,0.3-0.3-0.6
+ c-0.6-0.8,0.2,0.3-0.4-0.5c-0.8-0.7,0.3,0.2-0.5-0.5c-1-0.6,0.3,0.2-0.7-0.4c-1.1-0.4,0.4,0.1-0.8-0.3c-1.3-0.3,0.4,0.1-0.9-0.2
+ c-1.4-0.1,0.5,0-0.9-0.1"/>
+ <path fill="none" stroke="#000000" d="M334.8,344.9c-0.2-3.1,0.2,1-0.2-2c-0.7-2.9,0.3,0.9-0.5-1.9c-1.2-2.6,0.5,0.8-0.9-1.7
+ c-1.6-2.1,0.6,0.6-1.1-1.4c-1.8-1.5,0.7,0.4-1.3-1c-0.7-0.3,0.2,0.1-0.4-0.2"/>
+ <path fill="none" stroke="#000000" d="M330.4,336.6c-1.3-0.5,0.5,0.1-0.9-0.3c-1-0.1,0.3,0-0.7-0.1"/>
+ <path fill="none" stroke="#000000" d="M328.8,353.4c1-0.1-0.3,0.1,0.7-0.1c1.4-0.4-0.4,0.2,0.9-0.3"/>
+ <path fill="none" stroke="#000000" d="M330.4,353.1c0.7-0.3-0.2,0.1,0.4-0.2c1.9-1.4-0.6,0.5,1.3-1c1.7-2-0.5,0.7,1.1-1.4
+ c1.4-2.5-0.4,0.9,0.9-1.7c0.9-2.9-0.2,1,0.5-1.9c0.4-3.1,0,1,0.2-2"/>
+ <path fill="none" stroke="#000000" d="M329.7,336.4c-0.1,0-0.1,0-0.2,0.1"/>
+ <path fill="none" stroke="#000000" d="M321.4,362.4c0.7,0.3-0.2-0.1,0.5,0.2c1.1,0.5-0.4-0.1,0.7,0.3"/>
+ <path fill="none" stroke="#000000" d="M322.6,362.9c0.2,0.1,0.5,0.2,0.7,0.2"/>
+ <path fill="none" stroke="#000000" d="M323.4,363.2c0.1,0,0.2,0,0.3,0.1"/>
+ <path fill="none" stroke="#000000" d="M323.6,363.2c0.8,0.2-0.3,0,0.6,0.1c0.9,0.1-0.3,0,0.6,0"/>
+ <path fill="none" stroke="#000000" d="M316.2,357.7c0,0.1,0.1,0.2,0.1,0.2"/>
+ <path fill="none" stroke="#000000" d="M316.3,357.9c0.2,0.3-0.1-0.1,0.1,0.2c0.6,0.9-0.2-0.3,0.4,0.6c0.2,0.3-0.1-0.1,0.1,0.2"/>
+ <path fill="none" stroke="#000000" d="M317,358.9c0.5,0.6-0.2-0.2,0.3,0.4c0.7,0.8-0.3-0.3,0.5,0.5s-0.3-0.3,0.5,0.5
+ c0.9,0.8-0.3-0.2,0.6,0.5c0.9,0.7-0.3-0.2,0.6,0.5c1,0.7-0.3-0.2,0.7,0.5c1.1,0.7-0.4-0.2,0.7,0.4c0.6,0.3-0.2-0.1,0.4,0.2"/>
+ <path fill="none" stroke="#000000" d="M314.7,354.3c0.1,0.4,0-0.1,0.1,0.3c2,4.7-0.9-1.5,1.4,3.1"/>
+ <path fill="none" stroke="#000000" d="M326.3,363.4c0.4,0.4,0.7,0.7,1.1,1.1"/>
+ <path fill="none" stroke="#000000" d="M461.2,363.7c0.2-0.1-0.1,0,0.1-0.1c0.4-0.1-0.1,0,0.2-0.1c0.4-0.1-0.1,0,0.2-0.1
+ c0.2-0.1-0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M462,363.4C462.1,363.4,461.9,363.4,462,363.4c0.4-0.1,0,0,0.3,0c0.3,0-0.1,0,0.2,0
+ c0.3,0-0.1,0,0.2,0"/>
+ <path fill="none" stroke="#000000" d="M328.6,363.4c-0.1,0-0.2,0-0.3,0"/>
+ <path fill="none" stroke="#000000" d="M331.2,363.8c-0.3-0.1-0.6-0.1-1-0.2"/>
+ <path fill="none" stroke="#000000" d="M330.2,363.6c-0.6-0.1,0.2,0-0.4-0.1c-1.4-0.2,0.5,0.1-0.9-0.1c-0.4,0,0.1,0-0.3,0"/>
+ <path fill="none" stroke="#000000" d="M460.2,364.1c0.2-0.1,0.5-0.2,0.7-0.3"/>
+ <path fill="none" stroke="#000000" d="M460.9,363.8c0.1,0,0.2-0.1,0.3-0.1"/>
+ <path fill="none" stroke="#000000" d="M441.2,376.4c4.1-0.2-1.3,0.2,2.7-0.2c5.4-1-1.8,0.5,3.6-0.8c5.1-1.9-1.6,0.8,3.4-1.4
+ c4.7-2.8-1.5,1.1,3.1-2c4.2-3.7-1.3,1.4,2.7-2.5c3.5-4.5-1,1.6,2.3-3c2.5-4.7-0.7,1.6,1.6-3.1"/>
+ <path fill="none" stroke="#000000" d="M460.5,363.4c0-0.1,0.1-0.2,0.1-0.2"/>
+ <path fill="none" stroke="#000000" d="M327.4,364.4c2,1.5-0.7-0.5,1.4,1c3.6,1.9-1.3-0.5,2.5,1.2c3.9,1.1-1.4-0.2,2.6,0.6
+ c2.8,0.2-0.9,0,1.8,0.1"/>
+ <path fill="none" stroke="#000000" d="M329.5,353.3c0.1,0,0.1,0,0.2,0.1"/>
+ <path fill="none" stroke="#000000" d="M462.6,363.4c-0.9,0,0.3,0-0.6,0c-0.8,0.2,0.3-0.1-0.6,0.1c-0.5,0.2,0.2-0.1-0.4,0.1"/>
+ <path fill="none" stroke="#000000" d="M461.1,363.7c-0.1,0-0.1,0.1-0.2,0.1"/>
+ <path fill="none" stroke="#000000" d="M426.7,364.9c0.3-0.1-0.1,0,0.2,0c2.4-0.6-0.8,0.3,1.6-0.5c2.3-1-0.7,0.4,1.5-0.7
+ c2-1.1-0.7,0.4,1.3-0.8c1.8-1.2-0.6,0.4,1.2-0.8c1.6-1.2-0.5,0.4,1-0.8c1.4-1.1-0.5,0.4,0.9-0.8c1.2-1.1-0.4,0.4,0.8-0.7
+ c1.1-1-0.4,0.3,0.7-0.7c1-1-0.3,0.3,0.7-0.6c0.9-0.9-0.3,0.3,0.6-0.6"/>
+ <path fill="none" stroke="#000000" d="M426.7,362.8c0.2-0.1-0.1,0,0.2,0c2.7-0.9-0.9,0.3,1.8-0.6c2.4-1-0.8,0.4,1.6-0.7
+ c2.1-1-0.7,0.4,1.4-0.7c1.9-1-0.6,0.4,1.2-0.7c1.7-1-0.5,0.3,1.1-0.7c1.5-0.9-0.5,0.3,1-0.6c1.3-0.8-0.4,0.3,0.9-0.6
+ c1.2-0.8-0.4,0.3,0.8-0.5c1.1-0.7-0.4,0.2,0.7-0.5"/>
+ <path fill="none" stroke="#000000" d="M416.3,376.4c-0.3,0-0.5,0-0.8,0"/>
+ <path fill="none" stroke="#000000" d="M415.5,376.4c-0.1,0-0.3,0-0.4,0"/>
+ <path fill="none" stroke="#000000" d="M415,376.4c-1.1,0,0.4,0-0.7,0c-1.4-0.1,0.5,0-1-0.1c-1.1-0.2,0.4,0.1-0.7-0.1
+ c-0.9-0.3,0.3,0.1-0.6-0.2c-0.7-0.4,0.2,0.2-0.4-0.3c-0.4-0.5,0.1,0.2-0.3-0.3c-0.2-0.6,0,0.2-0.1-0.4c0-0.8,0,0.3,0-0.5
+ c0.2-0.9-0.1,0.3,0.2-0.6c0.4-1-0.2,0.3,0.3-0.7"/>
+ <path fill="none" stroke="#000000" d="M460,357.2c0.7,0.8-0.2-0.3,0.5,0.6c0.7,0.9-0.2-0.3,0.5,0.6c0.6,1-0.2-0.3,0.4,0.7
+ c0.6,1.1-0.2-0.4,0.4,0.7c0.4,1.1-0.1-0.4,0.3,0.8c0.2,1.2,0-0.4,0.1,0.8c-0.1,1.1,0.1-0.4-0.1,0.8c-0.4,1,0.2-0.3-0.3,0.7
+ c-0.8,0.7,0.3-0.2-0.6,0.4c-0.8,0.2,0.3,0-0.5,0.1"/>
+ <path fill="none" stroke="#000000" d="M460.6,363.4L460.6,363.4"/>
+ <path fill="none" stroke="#000000" d="M460,358c0.5,1.1-0.1-0.4,0.3,0.7c0.4,1.1-0.1-0.4,0.3,0.8c0.3,1.2-0.1-0.4,0.2,0.8
+ c0.2,1.3,0-0.4,0.1,0.9c0,1.3,0-0.4,0,0.9c-0.2,1.3,0.1-0.4-0.2,0.9c-0.1,0.3,0-0.1-0.1,0.2"/>
+ <path fill="none" stroke="#000000" d="M415,376.4c-0.3,0,0.1,0-0.2,0c-1.3-0.1,0.4,0-0.8,0c-0.9-0.1,0.3,0.1-0.6-0.1
+ c-0.7-0.2,0.2,0.1-0.5-0.2c-0.5-0.3,0.1,0.1-0.3-0.2c-0.2-0.4,0,0.2-0.1-0.3c0-0.6,0,0.2,0-0.4c0.2-0.7-0.1,0.2,0.2-0.5
+ c0.5-0.8-0.2,0.3,0.3-0.6c0.7-0.9-0.2,0.3,0.4-0.6c0.3-0.4-0.1,0.1,0.2-0.3"/>
+ <path fill="none" stroke="#000000" d="M460.3,356.2c-0.1,0.8,0.1-0.3-0.1,0.5c-0.2,0.8,0.1-0.3-0.2,0.5"/>
+ <path fill="none" stroke="#000000" d="M459.8,356.2c-0.1,0.5,0-0.1-0.1,0.3c-0.2,0.4,0.1-0.1-0.2,0.3"/>
+ <path fill="none" stroke="#000000" d="M460,357.2c-0.1,0.2,0-0.1-0.1,0.1c0,0.3,0-0.1,0,0.2c0,0.3,0-0.1,0,0.2c0,0.4,0-0.1,0,0.2"
+ />
+ <path fill="none" stroke="#000000" d="M459.6,356.8c-0.2,0.3,0.1-0.1-0.1,0.2c-0.2,0.4,0-0.1-0.1,0.3c-0.1,0.4,0-0.1-0.1,0.3
+ c-0.1,0.5,0-0.2-0.1,0.3"/>
+ <path fill="none" stroke="#000000" d="M460,357.2c-0.2-0.2,0.1,0.1-0.1-0.2c-0.2-0.2,0.1,0.1-0.1-0.2c-0.2-0.2,0.1,0.1-0.2-0.2"/>
+ <path fill="none" stroke="#000000" d="M460,358c-0.1,1.2,0.1-0.4-0.1,0.8c-0.2,1.3,0.1-0.4-0.1,0.8c-0.3,1.4,0.1-0.4-0.2,0.9
+ c-0.4,1.5,0.1-0.5-0.3,1c-0.5,1.6,0.2-0.5-0.4,1.1c-0.7,1.7,0.3-0.6-0.5,1.1c-1,1.8,0.4-0.6-0.7,1.2c-1.3,1.9,0.5-0.6-0.9,1.2
+ c-1.6,1.9,0.6-0.6-1.1,1.3c-2.1,1.8,0.7-0.6-1.4,1.2c-2.6,1.6,0.9-0.5-1.7,1c-3,1.2,1.1-0.3-2,0.7c-3.3,0.5,1.1,0-2.2,0.3
+ c-3.3-0.3,1.1,0.2-2.2-0.3c-3.1-1,1,0.4-2-0.7c-2.6-1.5,0.8,0.6-1.7-1c-2.1-1.7,0.6,0.6-1.4-1.2c-1.6-1.8,0.5,0.7-1.1-1.2
+ c-1.2-1.9,0.4,0.6-0.8-1.3c-0.9-1.8,0.3,0.6-0.6-1.2c-0.7-1.7,0.2,0.6-0.5-1.1c-0.5-1.6,0.1,0.5-0.3-1.1c-0.4-1.5,0.1,0.5-0.2-1
+ c-0.3-1.4,0.1,0.5-0.2-0.9c-0.2-1.2,0.1,0.4-0.1-0.8c-0.1-1.2,0,0.4-0.1-0.8"/>
+ <path fill="none" stroke="#000000" d="M459.2,357.9c-0.2,1.1,0.1-0.4-0.1,0.7c-0.2,1.2,0.1-0.4-0.1,0.8c-0.3,1.2,0.1-0.4-0.2,0.8
+ c-0.4,1.3,0.1-0.4-0.3,0.9c-0.5,1.4,0.2-0.5-0.4,1c-0.7,1.5,0.3-0.5-0.5,1c-0.9,1.6,0.3-0.5-0.6,1.1c-1.2,1.6,0.4-0.5-0.8,1.1
+ c-1.5,1.6,0.5-0.5-1,1.1c-1.8,1.6,0.7-0.5-1.3,1c-2.3,1.4,0.8-0.4-1.5,0.9c-2.7,1,0.9-0.2-1.8,0.6c-2.9,0.4,1,0-2,0.2
+ c-2.9-0.2,1,0.2-2-0.2c-2.7-0.8,0.9,0.4-1.8-0.6c-2.4-1.3,0.7,0.5-1.5-0.9c-1.9-1.5,0.6,0.5-1.3-1c-1.5-1.6,0.5,0.6-1-1.1
+ c-1.2-1.6,0.4,0.6-0.8-1.1c-0.9-1.6,0.3,0.5-0.6-1.1c-0.7-1.5,0.2,0.5-0.5-1c-0.5-1.4,0.2,0.5-0.4-1c-0.4-1.3,0.1,0.4-0.3-0.9
+ c-0.3-1.2,0.1,0.4-0.2-0.8c-0.2-1.2,0.1,0.4-0.1-0.8c-0.2-1.1,0,0.4-0.1-0.7"/>
+ <path fill="none" stroke="#000000" d="M460,358c-0.3-0.1,0.1,0-0.2-0.1c-0.4-0.1,0.1,0-0.2-0.1c-0.4-0.1,0.1,0-0.3-0.1"/>
+ <path fill="none" stroke="#000000" d="M437.3,358c0.1-0.4,0,0.1,0.1-0.2s0,0.1,0-0.2s0,0.1,0-0.2c-0.1-0.2,0,0.1,0-0.1"/>
+ <path fill="none" stroke="#000000" d="M438.2,357.9c-0.1-0.5,0,0.2-0.1-0.3c-0.1-0.4,0,0.1-0.1-0.3c-0.1-0.4,0.1,0.1-0.1-0.3
+ c-0.2-0.4,0.1,0.1-0.1-0.2"/>
+ <path fill="none" stroke="#000000" d="M437.3,358c0.5-0.1-0.2,0,0.4-0.1c0.5-0.1-0.2,0,0.3-0.1c0.5-0.1-0.2,0,0.3-0.1"/>
+ <path fill="none" stroke="#000000" d="M437.3,357.2c-0.2-0.8,0.1,0.3-0.1-0.5c-0.1-0.8,0,0.3-0.1-0.5"/>
+ <path fill="none" stroke="#000000" d="M437.9,356.8c-0.3-0.4,0.1,0.2-0.2-0.3c-0.1-0.5,0,0.2-0.1-0.3"/>
+ <path fill="none" stroke="#000000" d="M437.3,357.2c0.3-0.2-0.1,0.1,0.2-0.2c0.3-0.2-0.1,0.1,0.2-0.2c0.3-0.2-0.1,0.1,0.2-0.2"/>
+ <path fill="none" stroke="#000000" d="M437.1,354c0.1-4.8-0.1,1.6,0.1-3.2c0.5-5.4-0.3,1.8,0.4-3.6c1.3-5.3-0.6,1.7,0.9-3.5
+ c2-4.5-0.8,1.5,1.4-3c2.4-3.6-0.9,1.1,1.7-2.4c2.8-2.8-1,0.8,1.9-1.8c2.9-2-1.1,0.6,2-1.3c3-1.2-1.1,0.3,2-0.7c3-0.5-1,0,2-0.2
+ c3,0.3-1-0.2,2,0.2c2.9,1-0.9-0.5,1.9,0.7c2.7,1.8-0.8-0.7,1.8,1.3c2.5,2.7-0.7-1,1.6,1.8c2.1,3.5-0.6-1.2,1.4,2.4
+ c1.7,4.5-0.4-1.5,1.1,3c1.2,5.2-0.3-1.8,0.7,3.5c0.5,5.4-0.1-1.8,0.3,3.6c0.1,4.8,0-1.6,0,3.2"/>
+ <path fill="none" stroke="#000000" d="M437.7,354c0.2-4.7-0.1,1.6,0.1-3.1c0.6-5.2-0.3,1.7,0.5-3.5c1.3-5.1-0.6,1.7,1-3.4
+ c1.9-4.3-0.8,1.4,1.4-2.8c2.3-3.4-0.9,1.1,1.6-2.2c2.6-2.6-1,0.8,1.8-1.7c2.7-1.9-1,0.5,1.9-1.2c2.8-1.1-1,0.3,1.9-0.7
+ c2.8-0.4-0.9,0,1.9-0.2c2.7,0.2-0.9-0.2,1.8,0.2c2.7,1-0.8-0.4,1.8,0.7c2.5,1.7-0.8-0.7,1.6,1.2c2.3,2.5-0.7-0.9,1.5,1.7
+ c2,3.3-0.6-1.2,1.3,2.3c1.7,4.2-0.4-1.4,1.1,2.8c1.2,5-0.3-1.7,0.7,3.4c0.6,5.2-0.1-1.7,0.4,3.5c0.2,4.7,0-1.6,0.1,3.1"/>
+ <path fill="none" stroke="#000000" d="M326.3,363.4c0.4,0.4,0.7,0.7,1.1,1.1"/>
+ <path fill="none" stroke="#000000" d="M396.5,307.3c3.4,0.7-1.1-0.2,2.3,0.4c3.4,0.7-1.1-0.2,2.3,0.4c2.1,0.4-0.7-0.1,1.4,0.3"/>
+ <path fill="none" stroke="#000000" d="M354,363.4c-0.2,0-0.3,0-0.5,0"/>
+ <path fill="none" stroke="#000000" d="M356,363.4c-0.2,0-0.3,0-0.5,0"/>
+ <path fill="none" stroke="#000000" d="M356,363.4c0.1,0,0.2,0,0.3,0"/>
+ <path fill="none" stroke="#000000" d="M346.8,363.4c0.1,0,0.3,0,0.4,0"/>
+ <path fill="none" stroke="#000000" d="M316.8,358.4c-0.2-0.3-0.3-0.5-0.5-0.8"/>
+ <path fill="none" stroke="#000000" d="M316.3,357.6c-0.1-0.1-0.1-0.2-0.2-0.3"/>
+ <path fill="none" stroke="#000000" d="M316.2,357.3c-1.7-3.5,0.4,1.2-1.1-2.4c-0.3-0.9,0.1,0.3-0.2-0.6"/>
+ <path fill="none" stroke="#000000" d="M321.4,362.4c-0.9-0.5,0.3,0.2-0.6-0.3c-0.9-0.6,0.3,0.2-0.6-0.4c-0.9-0.6,0.3,0.2-0.6-0.4
+ c-0.9-0.7,0.3,0.2-0.6-0.5c-0.9-0.8,0.3,0.3-0.6-0.5c-0.9-0.9,0.3,0.3-0.6-0.6c-0.8-0.9,0.2,0.3-0.5-0.6s0.2,0.3-0.5-0.6"/>
+ <path fill="none" stroke="#000000" d="M323.1,363c-0.2,0,0.1,0-0.1,0c-0.3-0.1,0.1,0-0.2,0c-0.4-0.1,0.1,0-0.3-0.1
+ c-0.5-0.2,0.2,0.1-0.3-0.1s0.2,0.1-0.4-0.2s0.2,0.1-0.4-0.2"/>
+ <path fill="none" stroke="#000000" d="M324.8,363.4c-0.1,0-0.1,0-0.2,0"/>
+ <path fill="none" stroke="#000000" d="M324.6,363.4c-0.6-0.1,0.2,0-0.4,0c-0.9-0.2,0.3,0.1-0.6-0.1c-0.8-0.3,0.3,0.1-0.5-0.2"/>
+ <path fill="none" stroke="#000000" d="M459.8,354c-0.9-3.7,0.4,1.2-0.7-2.5c-1.5-3.4,0.6,1.1-1.1-2.3c-2-3,0.8,0.9-1.4-2
+ c-2.5-2.5,0.9,0.7-1.7-1.6c-2.9-1.9,1,0.5-1.9-1.2c-3.1-1.2,1.1,0.3-2.1-0.7c-3.3-0.5,1.1,0-2.2-0.2c-3.3,0.3,1.1-0.2-2.2,0.2
+ c-3.2,1,1-0.5-2.1,0.7c-3,1.7,0.9-0.7-1.9,1.2c-2.6,2.4,0.8-0.9-1.7,1.6c-2.2,2.9,0.6-1-1.4,2c-1.7,3.3,0.4-1.2-1.1,2.3
+ c-1.1,3.7,0.2-1.2-0.7,2.5"/>
+ <path fill="none" stroke="#000000" d="M328.3,363.4c-0.9-0.1,0.3,0-0.6,0c-0.9-0.2,0.3,0.1-0.6-0.1c-0.8-0.3,0.3,0.1-0.5-0.2"/>
+ <path fill="none" stroke="#000000" d="M331.2,363.8c-0.2-0.1-0.5-0.1-0.7-0.2"/>
+ <path fill="none" stroke="#000000" d="M330.5,363.6c-0.2-0.1-0.4-0.1-0.6-0.1"/>
+ <path fill="none" stroke="#000000" d="M329.8,363.4c-0.9-0.2,0.3,0.1-0.6-0.1c-0.8-0.2,0.3,0.1-0.6-0.1"/>
+ <path fill="none" stroke="#000000" d="M328.7,363.2c-0.1,0-0.2,0-0.3-0.1"/>
+ <path fill="none" stroke="#000000" d="M328.3,363.1c-0.9-0.1,0.3,0-0.6-0.1c-1.7-0.2,0.6,0-1.1-0.1"/>
+ <path fill="none" stroke="#000000" d="M332.6,363c-1.2,0.1,0.4-0.1-0.8,0.1c-0.8,0.3,0.2-0.2-0.5,0.3c-0.3,0.7,0-0.3-0.2,0.5"/>
+ <path fill="none" stroke="#000000" d="M334.3,363.4c-2,0,0.6,0-1.3,0c-1.6,0.2,0.5-0.1-1.1,0.1c-1.2,0.3,0.4-0.2-0.8,0.2"/>
+ <path fill="none" stroke="#000000" d="M335.8,362.3c0.9,0.5-0.3-0.2,0.6,0.3c0.7,0.4-0.2-0.1,0.5,0.3c0.6,0.3-0.2-0.1,0.4,0.2
+ c0.4,0.2-0.1-0.1,0.3,0.1c0.3,0.1-0.1,0,0.2,0.1c0.1,0,0,0,0.1,0"/>
+ <path fill="none" stroke="#000000" d="M335.5,362.4c0.5,0.3-0.2-0.1,0.3,0.2c0.4,0.2-0.1-0.1,0.2,0.2c0.2,0.2-0.1-0.1,0.1,0.1
+ c0.1,0.1,0,0,0,0.1c-0.1,0.1,0,0-0.1,0c-0.2,0,0.1,0-0.1,0"/>
+ <path fill="none" stroke="#000000" d="M335.8,362.3c-0.2,0,0.1,0-0.1,0c-0.2,0,0.1,0-0.1,0s0,0-0.1,0"/>
+ <path fill="none" stroke="#000000" d="M328.5,356.2c1.4,1.5-0.5-0.5,0.9,1c1.4,1.4-0.5-0.5,0.9,0.9c1.4,1.3-0.5-0.4,1,0.9
+ c1.4,1.3-0.5-0.4,1,0.8c1.4,1.1-0.5-0.4,0.9,0.7c1.3,1-0.5-0.3,0.9,0.7c0.9,0.6-0.3-0.2,0.6,0.4"/>
+ <path fill="none" stroke="#000000" d="M334.7,361.6c0.4,0.3-0.1-0.1,0.3,0.2c1.2,0.8-0.4-0.3,0.8,0.5"/>
+ <path fill="none" stroke="#000000" d="M328.9,358.4c1.4,1-0.5-0.3,1,0.6c1.4,0.9-0.5-0.3,0.9,0.6s-0.5-0.3,0.9,0.6
+ c1.3,0.8-0.4-0.3,0.9,0.5c1.2,0.7-0.4-0.2,0.8,0.5c1.1,0.6-0.4-0.2,0.8,0.4c0.4,0.2-0.1-0.1,0.2,0.1"/>
+ <path fill="none" stroke="#000000" d="M334.4,361.8c0.7,0.4-0.2-0.1,0.5,0.2c0.9,0.5-0.3-0.2,0.6,0.3"/>
+ <path fill="none" stroke="#000000" d="M328.5,356.2c-0.2,1.2,0-0.4-0.1,0.8c0.2,1.2-0.1-0.4,0.1,0.8c0.5,1-0.2-0.3,0.4,0.6"/>
+ <path fill="none" stroke="#000000" d="M325,353.8c1.1,0.8,2.2,1.6,3.4,2.4"/>
+ <path fill="none" stroke="#000000" d="M323.8,354.3c1,0.9-0.3-0.3,0.7,0.6c6.5,5.3-2.3-1.6,4.4,3.5"/>
+ <path fill="none" stroke="#000000" d="M390.5,308.4c2.1-0.4-0.7,0.1,1.4-0.3c3.4-0.7-1.1,0.2,2.3-0.4c3.4-0.7-1.1,0.2,2.3-0.4"/>
+ <path fill="none" stroke="#000000" d="M461.2,363.7C461.1,363.7,461.2,363.7,461.2,363.7c-0.4,0.1,0.1,0-0.3,0.1"/>
+ <path fill="none" stroke="#000000" d="M328.2,363.4C328.3,363.5,328.2,363.3,328.2,363.4c0.1,0.2,0,0,0.1,0.2"/>
+ <path fill="none" stroke="#000000" d="M328.3,363.5C328.3,363.5,328.4,363.6,328.3,363.5"/>
+ <path fill="none" stroke="#000000" d="M328.4,363.6v0.1"/>
+ <path fill="none" stroke="#000000" d="M441.2,376.4c-2.3-0.1,0.8,0.1-1.5-0.1c-4.6-0.8,1.5,0.4-3-0.6c-4.5-1.6,1.4,0.7-2.9-1.2
+ c-4.2-2.5,1.3,0.9-2.8-1.7c-3.8-3.2,1.2,1.2-2.5-2.2c-3.3-3.9,1,1.4-2.2-2.6c-0.3-0.4,0.1,0.1-0.2-0.3"/>
+ <path fill="none" stroke="#000000" d="M328.4,363.7c-0.2-0.1-0.4-0.1-0.6-0.2"/>
+ <path fill="none" stroke="#000000" d="M327.8,363.5c-0.5-0.2,0.2,0.1-0.3-0.1c-0.2-0.1,0.1,0-0.2-0.1"/>
+ <path fill="none" stroke="#000000" d="M330.3,363.9c-0.1,0-0.3,0-0.4,0"/>
+ <path fill="none" stroke="#000000" d="M329.9,363.9c-0.1,0-0.2,0-0.3,0"/>
+ <path fill="none" stroke="#000000" d="M329.5,363.9c-0.4,0-0.7-0.1-1.1-0.1"/>
+ <path fill="none" stroke="#000000" d="M328.8,336.3c-1,0.1,0.3-0.1-0.7,0.1c-0.6,0.1,0.2-0.1-0.4,0.1"/>
+ <path fill="none" stroke="#000000" d="M327.8,353.3c0.5,0.1-0.2,0,0.4,0.1c1,0.1-0.3,0,0.7,0.1"/>
+ <path fill="none" stroke="#000000" d="M328.4,363.7c2.3,2.4-0.9-0.7,1.6,1.6c2.6,1.8-0.9-0.5,1.8,1.2c2.8,1.1-1-0.3,1.9,0.7
+ c2.9,0.4-1,0,2,0.2"/>
+ <path fill="none" stroke="#000000" d="M335.7,367.4L335.7,367.4"/>
+ <path fill="none" stroke="#000000" d="M460.3,364c0.2-0.1,0.4-0.2,0.6-0.3"/>
+ <path fill="none" stroke="#000000" d="M370.6,371.8c-2.7-0.1,0.9,0-1.8-0.1c-4.7-0.3,1.5,0.1-3.1-0.2"/>
+ <path fill="none" stroke="#000000" d="M334.3,363.4c-0.9-0.1,0.3,0-0.6,0c-0.9-0.2,0.3,0.1-0.6-0.1c-0.8-0.3,0.3,0.1-0.5-0.2"/>
+ <path fill="none" stroke="#000000" d="M372.2,372.6C372.2,372.6,372.3,372.6,372.2,372.6c-3.8-0.1,1.2,0.1-2.6-0.1
+ c-4.2-0.3,1.4,0.1-2.8-0.2c-1.8-0.2,0.6,0.1-1.2-0.1"/>
+ <path fill="none" stroke="#000000" d="M337.8,363.4c-0.9-0.1,0.3,0-0.6,0c-0.9-0.2,0.3,0.1-0.6-0.1c-0.8-0.3,0.3,0.1-0.5-0.2"/>
+ <path fill="none" stroke="#000000" d="M316.2,357.7C316.3,357.8,316.2,357.6,316.2,357.7c0.9,1.1-0.3-0.2,0.6,0.7"/>
+ <path fill="none" stroke="#000000" d="M370.6,246.1c0.2,0.2-0.1-0.1,0.2,0.1c1.2,1.2-0.3-0.5,0.8,0.8c0.8,1.5-0.2-0.5,0.5,1
+ c0.3,1.2,0-0.4,0.2,0.8"/>
+ <path fill="none" stroke="#000000" d="M333.7,213.2c0.3,1.2-0.1-0.4,0.2,0.8c0.3,2.8,0-0.9,0.2,1.9"/>
+ <path fill="none" stroke="#000000" d="M334,216c-0.2,2.8,0.2-0.9-0.2,1.9c-0.3,1.3,0.1-0.4-0.2,0.8"/>
+ <path fill="none" stroke="#000000" d="M372.2,249.3c-0.2,1.2,0.1-0.4-0.2,0.8c-0.7,1.5,0.3-0.5-0.5,1c-1.1,1.3,0.4-0.4-0.8,0.8
+ c-0.2,0.2,0.1-0.1-0.2,0.1"/>
+
+ <rect x="179.8" y="174.6" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="4.5" height="16.1"/>
+
+ <rect x="195.9" y="174.7" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="4.5" height="16.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="182" y1="172.2" x2="182" y2="382.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="198.1" y1="213.6" x2="198.1" y2="172.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="314.8" y1="382.2" x2="314.8" y2="268.7"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="382.2" x2="342.3" y2="366"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="275.8" y1="382.2" x2="275.8" y2="366"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="219.2" y1="382.2" x2="219.2" y2="366"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="182" y1="382.2" x2="342.3" y2="382.2"/>
+ <rect x="267.3" y="357.9" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="17" height="8.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="246.4" y1="284.1" x2="275.8" y2="284.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="246.4" y1="222.9" x2="246.4" y2="284.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="219" y1="222.9" x2="219" y2="266.5"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="219.2" y1="273.9" x2="217" y2="266.6"/>
+ <rect x="210.7" y="357.9" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="17" height="8.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="219.2" y1="357.9" x2="219.2" y2="305"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="219.2" y1="213.6" x2="219.2" y2="194.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="219" y1="222.9" x2="215.7" y2="211.8"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="246.5" y1="213.8" x2="246.5" y2="194.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="246.4" y1="222.9" x2="243.1" y2="211.8"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="275.8" y1="194.4" x2="275.8" y2="258.2"/>
+
+ <rect x="281.3" y="296.3" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="6.8" height="6.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="275.8" y1="305.2" x2="272.5" y2="294.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="275.8" y1="357.9" x2="275.8" y2="338.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="274.1" y1="299.3" x2="281.3" y2="299.3"/>
+ <rect x="333.8" y="357.9" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="17" height="8.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="275.8" y1="328.7" x2="275.8" y2="305.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="280.3" y1="268.7" x2="314.8" y2="268.7"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="271.3" y1="277.3" x2="280.3" y2="271.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="271.3" y1="271.4" x2="280.3" y2="277.3"/>
+ <rect x="271.3" y="258.2" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="9" height="19"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="271.3" y1="271.4" x2="280.3" y2="271.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="274.6" x2="342.3" y2="305.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="219.2" y1="305" x2="215.9" y2="294.2"/>
+
+ <rect x="224.7" y="296.3" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="6.8" height="6.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="217.5" y1="299.4" x2="224.7" y2="299.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="219.2" y1="273.9" x2="219.2" y2="295.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="198" y1="222.9" x2="194.7" y2="211.8"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="198" y1="222.9" x2="198" y2="238"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="198" y1="238" x2="219" y2="238"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="275.8" y1="338.4" x2="272.5" y2="327.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="275.8" y1="295.1" x2="275.8" y2="277.3"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="274.6" x2="345.6" y2="263.6"/>
+
+ <rect x="351.3" y="265.7" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="6.8" height="6.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="344" y1="268.7" x2="351.3" y2="268.7"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="264.6" x2="346.2" y2="264.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="247.3" y1="382.2" x2="247.3" y2="366"/>
+ <rect x="238.8" y="357.9" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="17" height="8.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="247.3" y1="357.9" x2="247.3" y2="348.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="247.3" y1="348.6" x2="275.8" y2="348.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="284.3" y1="362" x2="289.3" y2="362"/>
+ <polygon fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" points="289.3,362 285.9,354.1 293.2,354.1
+ "/>
+ <polygon fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" points="285.9,369.8 293.2,369.8 289.3,362
+ "/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="264.6" x2="342.3" y2="210.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="321.1" y1="218.6" x2="321.1" y2="210.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="321.1" y1="218.6" x2="342.3" y2="218.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="321.1" y1="203.4" x2="323.7" y2="203.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="321.1" y1="210.1" x2="323.3" y2="202.7"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="321.1" y1="194.4" x2="321.1" y2="203.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="210.1" x2="340.1" y2="202.7"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="202.7" x2="342.3" y2="194.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="194.4" x2="198.1" y2="194.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="305.2" x2="342.3" y2="328.9"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="328.9" x2="424.5" y2="328.9"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="338.9" x2="433.4" y2="338.9"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="194.4" x2="364.5" y2="194.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="364.5" y1="194.4" x2="364.5" y2="300.9"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="364.5" y1="314.3" x2="364.5" y2="382.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="364.5" y1="382.1" x2="342.3" y2="382.2"/>
+
+ <rect x="351.3" y="342.6" fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" width="6.8" height="6.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="351.6" x2="345.6" y2="340.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="344" y1="345.7" x2="351.3" y2="345.7"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="341.6" x2="346.2" y2="341.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="338.9" x2="342.3" y2="341.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="342.3" y1="351.6" x2="342.3" y2="357.9"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="405.2" y1="283.2" x2="405.2" y2="304.9"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="395.8" y1="283.2" x2="395.8" y2="309.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="433.6" y1="283.2" x2="433.8" y2="339"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="424.1" y1="329" x2="424.1" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="364.3" y1="301" x2="376.9" y2="301"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="376.9" y1="301" x2="376.9" y2="283.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="386.4" y1="283.2" x2="386.4" y2="314.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="386.4" y1="314.4" x2="364.3" y2="314.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="433.8" y1="287.6" x2="376.7" y2="287.6"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M371.5,282.9c0,2.6,2.4,4.7,5.3,4.7"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="371.5" y1="282.9" x2="371.5" y2="262"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="371.5" y1="271.5" x2="439.1" y2="271.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="379.4" y1="266.2" x2="371.5" y2="266.2"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M379.4,266.2c2.2,0,4-1.6,4-3.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="383.4" y1="262.6" x2="383.4" y2="257.3"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M379.2,264c1.4,0,2.5-1,2.5-2.2
+ s-1.1-2.2-2.5-2.2"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M375.7,259.5c-1.4,0-2.5,1-2.5,2.2
+ c0,1.2,1.1,2.2,2.5,2.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="433.8" y1="257.4" x2="376.7" y2="257.3"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M376.7,257.3c-2.9,0-5.3,2.1-5.3,4.7l0,0"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M439.1,262.1c0-2.6-2.4-4.7-5.3-4.7"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="391.8" y1="273" x2="399.8" y2="273"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="420.1" y1="273" x2="428.1" y2="273"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="429.6" y1="273" x2="437.6" y2="273"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="437.6" y1="273" x2="437.6" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="429.6" y1="273" x2="429.6" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="428.1" y1="273" x2="428.1" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="401.3" y1="273" x2="409.2" y2="273"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="420.1" y1="273" x2="420.1" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="418.7" y1="273" x2="418.7" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="410.7" y1="273" x2="410.7" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="409.2" y1="273" x2="409.2" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="410.7" y1="273" x2="418.7" y2="273"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="401.3" y1="273" x2="401.3" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="399.8" y1="273" x2="399.8" y2="283.2"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M434.8,264c1.4,0,2.5-1,2.5-2.2
+ s-1.1-2.2-2.5-2.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="439.1" y1="266.3" x2="431.1" y2="266.3"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M431.4,259.6c-1.4,0-2.5,1-2.5,2.2
+ s1.1,2.2,2.5,2.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="427.1" y1="262.7" x2="427.1" y2="257.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="434.8" y1="264" x2="431.4" y2="264"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M427.1,262.7c0,2,1.8,3.6,4,3.6l0,0"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="434.8" y1="259.6" x2="431.4" y2="259.6"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="372.9" y1="273" x2="380.9" y2="273"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="391.8" y1="273" x2="391.8" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="390.3" y1="273" x2="390.3" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="382.4" y1="273" x2="382.4" y2="283.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="380.9" y1="273" x2="380.9" y2="283.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="382.4" y1="273" x2="390.3" y2="273"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="372.9" y1="273" x2="372.9" y2="283.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="379.2" y1="259.5" x2="375.7" y2="259.5"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="379.2" y1="264" x2="375.7" y2="264"/>
+ <g>
+
+ <text transform="matrix(-6.123032e-017 -0.8959 1 -5.485570e-017 417.7395 281.4236)" fill="#231F20" font-family="'Myriad-Roman'" font-size="8.3017">12</text>
+ </g>
+ <g>
+
+ <text transform="matrix(-6.123032e-017 -0.8959 1 -5.485570e-017 426.9436 281.4236)" fill="#231F20" font-family="'Myriad-Roman'" font-size="8.3017">14</text>
+ </g>
+ <g>
+
+ <text transform="matrix(-6.123032e-017 -0.8959 1 -5.485570e-017 436.4045 280.9651)" fill="#231F20" font-family="'Myriad-Roman'" font-size="8.3017">11</text>
+ </g>
+ <g>
+
+ <text transform="matrix(-6.123032e-017 -0.8959 1 -5.485570e-017 389.6165 280.9651)" fill="#231F20" font-family="'Myriad-Roman'" font-size="8.3017">N</text>
+ </g>
+ <g>
+
+ <text transform="matrix(-6.123032e-017 -0.8959 1 -5.485570e-017 408.2805 280.7341)" fill="#231F20" font-family="'Myriad-Roman'" font-size="8.3017">2</text>
+ </g>
+ <g>
+
+ <text transform="matrix(-6.123032e-017 -0.8959 1 -5.485570e-017 399.0754 280.7341)" fill="#231F20" font-family="'Myriad-Roman'" font-size="8.3017">1</text>
+ </g>
+ <g>
+
+ <text transform="matrix(-6.123032e-017 -0.8959 1 -5.485570e-017 379.968 282.1638)" fill="#231F20" font-family="'Myriad-Roman'" font-size="8.3017">L1</text>
+ </g>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="372.9" y1="283.1" x2="380.9" y2="283.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="382.4" y1="283.1" x2="390.3" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="391.8" y1="283.2" x2="399.8" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="401.3" y1="283.2" x2="409.2" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="410.7" y1="283.2" x2="418.7" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="420.1" y1="283.2" x2="428.1" y2="283.2"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="429.6" y1="283.2" x2="437.6" y2="283.2"/>
+ <path fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" d="M433.8,287.6c2.9,0,5.3-2.1,5.3-4.7l0,0"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="439.1" y1="282.9" x2="439.1" y2="262.1"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="395.8" y1="309.4" x2="410.3" y2="309.4"/>
+ <line fill="none" stroke="#231F20" stroke-linecap="round" stroke-linejoin="round" x1="405.2" y1="304.9" x2="417.5" y2="304.9"/>
+</g>
+<rect x="0" y="0" fill="none" width="697.1" height="588.2"/>
+<g>
+ <circle fill="none" stroke="#E5E5E5" stroke-width="30" cx="366.1" cy="308.4" r="158.2"/>
+ <line fill="none" stroke="#E5E5E5" stroke-width="30" x1="248.4" y1="417.1" x2="475.4" y2="190.1"/>
+</g>
+</svg>